/* ==============================================
   1. WASHABLE RUG
   ============================================== */
.washable {
    display: flex;
    background-color: #ebe7e0;
    color: #111e19;
}
.washable__content {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.washable__heading {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.washable__sub {
    font-family: var(--font-sans);
    font-size: 1rem;
    margin-bottom: 3rem;
}
.washable__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.washable__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
}
.washable__icon {
    width: 2.5rem;
    height: 2.5rem;
}
.washable__btn {
    display: inline-block;
    background-color: #9c5c46;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    align-self: flex-start;
    transition: background 0.3s;
}
.washable__btn:hover {
    background-color: #7a4635;
}
.washable__image-wrap {
    flex: 1;
}
.washable__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==============================================
   2. SHOWROOM LOCATOR
   ============================================== */
.showroom-section {
    display: flex;
    background-color: #fff;
    color: #111e19;
}
.showroom__image-wrap {
    flex: 1;
    background: #ebe7e0;
    padding: 4rem;
}
.showroom__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.showroom__content {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.showroom__label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.showroom__heading {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.showroom__desc {
    font-size: 1rem;
    max-width: 25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}
.showroom__btn {
    background-color: #555;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    transition: background 0.3s;
}
.showroom__btn:hover {
    background-color: #333;
}

/* ==============================================
   3. WOVEN STORIES
   ============================================== */
.stories {
    background: #fff;
    color: #111;
    padding: 6rem 2.5rem;
}
.stories__header {
    text-align: center;
    margin-bottom: 4rem;
}
.stories__heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.stories__sub {
    font-size: 1rem;
    max-width: 50rem;
    margin: 0 auto;
}
.stories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}
.stories__img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 1rem;
}
.stories__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.stories__card:hover .stories__img {
    transform: scale(1.05);
}
.stories__title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.stories__link {
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom: 1px solid #111;
    padding-bottom: 0.2rem;
}

/* ==============================================
   4. TOP REVIEWS
   ============================================== */
.reviews {
    background: #62506e;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}
.reviews__label {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: #e0d5db;
}
.reviews__heading {
    font-size: 3rem;
    margin-bottom: 3rem;
}
.reviews__carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
    max-width: 100%;
}
.reviews__track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
    scrollbar-width: none;
    max-width: 75rem;
}
.reviews__track::-webkit-scrollbar {
    display: none;
}
.review-card {
    position: relative;
    width: 22rem;
    height: 35rem;
    flex-shrink: 0;
    scroll-snap-align: center;
    background: #fff;
    overflow: hidden;
    color: #111;
}
.review-card__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.review-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
}
.review-card__tag {
    background: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
}
.review-card__box {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    text-align: center;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.review-card__stars {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.reviews__arrow {
    width: 3rem;
    height: 3rem;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    z-index: 10;
    position: absolute;
}
.reviews__arrow--prev {
    left: 2rem;
}
.reviews__arrow--next {
    right: 2rem;
}

/* ==============================================
   5. INSPIRATION GRID
   ============================================== */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 25vw;
}
.social-grid__item {
    width: 100%;
    height: 100%;
}
.social-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
