/* =====================================================
   RANGRAWALI WEBSITE
   GLOBAL STYLES
===================================================== */

:root {
    --rw-green: #064d43;
    --rw-dark-green: #033b34;
    --rw-maroon: #9b2945;
    --rw-gold: #c49a4a;
    --rw-cream: #fffaf4;
    --rw-text: #222222;
    --rw-muted: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--rw-text);
    background: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.rw-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
}

/* Section Common */
.rw-section {
    padding: 70px 0;
}

.rw-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.rw-section-title h2 {
    font-size: 34px;
    font-weight: 600;
}

.rw-section-title p {
    color: var(--rw-muted);
    font-size: 14px;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .rw-container {
        padding: 0 25px;
    }

    .rw-section {
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
    .rw-container {
        padding: 0 15px;
    }

    .rw-section {
        padding: 40px 0;
    }

    .rw-section-title h2 {
        font-size: 27px;
    }
}
/* =====================================================
   RANGRAWALI PREMIUM HEADER
===================================================== */

:root {
    --rw-green: #064d43;
    --rw-dark-green: #033b34;
    --rw-maroon: #9b2945;
    --rw-gold: #c49a4a;
    --rw-text: #222222;
}


/* ================= TOP BAR ================= */

.rw-topbar {
    background: var(--rw-green);
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.2px;
}

.rw-topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rw-shipping {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rw-shipping i {
    font-size: 11px;
    color: #e5c77b;
}

.rw-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rw-topbar-right span {
    margin-right: 3px;
}

.rw-topbar-right a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.rw-topbar-right a:hover {
    color: #e5c77b;
}


/* ================= MAIN NAVBAR ================= */

.rw-navbar {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 999;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.rw-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.35s ease;
}

.rw-header.is-hidden {
    transform: translateY(-100%);
}

.rw-header.is-scrolled .rw-navbar {
    box-shadow: 0 8px 24px rgba(41, 32, 29, 0.09);
}

.rw-navbar-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 25px;
}


/* ================= LOGO ================= */

.rw-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.rw-logo img {
    width: 155px;
    height: auto;
    display: block;
    object-fit: contain;
}


/* ================= NAVIGATION ================= */

.rw-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-left: auto;
}

.rw-nav a {
    position: relative;
    color: var(--rw-text);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 31px 0;
    transition: 0.3s ease;
    white-space: nowrap;
}

.rw-nav a:hover,
.rw-nav a.active {
    color: var(--rw-maroon);
}


/* Active Underline */

.rw-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 23px;
    width: 0;
    height: 2px;
    background: var(--rw-maroon);
    transition: 0.3s ease;
}

.rw-nav a:hover::after,
.rw-nav a.active::after {
    width: 100%;
}


/* ================= HEADER ACTIONS ================= */

.rw-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 15px;
}

.rw-action {
    position: relative;
    width: 24px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222222;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s;
}

.rw-action:hover {
    color: var(--rw-maroon);
    transform: translateY(-1px);
}

.rw-action:focus-visible,
.rw-menu-btn:focus-visible,
.rw-nav a:focus-visible {
    outline: 2px solid var(--rw-gold);
    outline-offset: 4px;
}


/* Cart Count */

.rw-cart-count {
    position: absolute;
    top: 2px;
    right: -9px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 50%;
    background: var(--rw-maroon);
    color: #ffffff;
    font-size: 9px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ================= MOBILE MENU ================= */

.rw-menu-btn {
    display: none;
    border: none;
    background: transparent;
    color: var(--rw-green);
    font-size: 23px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.rw-menu-btn:hover {
    color: var(--rw-maroon);
    transform: rotate(4deg);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {

    .rw-container {
        padding: 0 25px;
    }

    .rw-nav {
        gap: 18px;
    }

    .rw-nav a {
        font-size: 13px;
    }

    .rw-logo img {
        width: 140px;
    }

    .rw-actions {
        gap: 14px;
    }

}


@media (max-width: 991px) {

    .rw-navbar-inner {
        min-height: 75px;
    }

    .rw-menu-btn {
        display: block;
        order: 3;
    }

    .rw-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 1px solid #eeeeee;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        padding: 15px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0;
    }

    .rw-nav.show {
        display: flex;
    }

    .rw-nav a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid #f2f2f2;
    }

    .rw-nav a::after {
        display: none;
    }

    .rw-actions {
        margin-left: auto;
    }

}


@media (max-width: 575px) {

    .rw-container {
        padding: 0 15px;
    }

    .rw-topbar {
        font-size: 10px;
    }

    .rw-topbar-inner {
        min-height: 30px;
    }

    .rw-topbar-right span {
        display: none;
    }

    .rw-topbar-right {
        gap: 10px;
    }

    .rw-navbar-inner {
        min-height: 68px;
        gap: 10px;
    }

    .rw-logo img {
        width: 125px;
    }

    .rw-actions {
        gap: 10px;
        margin-left: auto;
    }

    .rw-action {
        font-size: 15px;
        width: 21px;
    }

    .rw-menu-btn {
        font-size: 21px;
        padding: 5px;
    }

}


/* =====================================================
   RANGRAWALI HERO SLIDER
===================================================== */

.rw-hero-slider {
    width: 100%;
    background: #f8eee4;
    overflow: hidden;
}

.rw-slide {
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    background: #f8eee4;
}


/* Background Image */

.rw-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}


/* Left Content */

.rw-slide-content {
    position: absolute;
    z-index: 2;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 330px;
}

.rw-hero-small-title {
    display: block;
    font-size: 11px;
    letter-spacing: 2.5px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 18px;
}

.rw-slide-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.05;
    font-weight: 500;
    color: #252525;
    margin: 0 0 22px;
}

.rw-slide-content h1 span {
    color: #020202;
    font-style: italic;
}

.rw-slide-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #030303;
    max-width: 280px;
    margin-bottom: 28px;
}

.rw-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #9b2945;
    color: #fff;
    padding: 14px 25px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.rw-hero-btn:hover {
    background: #064d43;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(6, 77, 67, 0.2);
}

.rw-hero-btn i,
.rw-view-all-btn i,
.rw-promo-btn i {
    transition: transform 0.3s ease;
}

.rw-hero-btn:hover i,
.rw-view-all-btn:hover i,
.rw-promo-btn:hover i {
    transform: translateX(4px);
}


/* Right Content */

.rw-slide-right {
    position: absolute;
    z-index: 2;
    right: 5%;
    top: 22%;
    width: 150px;
    text-align: center;
    color: #9b2945;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    line-height: 1.2;
    transform: rotate(4deg);
}

.rw-slide-right span,
.rw-slide-right strong {
    display: block;
}

.rw-slide-right strong {
    font-size: 32px;
    font-style: italic;
    font-weight: 500;
}

.rw-slide-right i {
    display: block;
    margin-top: 12px;
    font-size: 15px;
}


/* Service Highlights */

.rw-slide-services {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 18px 8%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255,255,255,0.8);
}

.rw-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.rw-service-icon {
    width: 36px;
    height: 36px;
    border: 1px solid #d6b98b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9b2945;
    font-size: 14px;
    flex-shrink: 0;
}

.rw-service-item strong {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.rw-service-item span {
    display: block;
    font-size: 9px;
    color: #888;
}


/* Slider Controls */

.rw-hero-slider .carousel-control-prev,
.rw-hero-slider .carousel-control-next {
    width: 42px;
    height: 42px;
    top: 45%;
    bottom: auto;
    background: rgba(255,255,255,0.75);
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s;
}

.rw-hero-slider:hover .carousel-control-prev,
.rw-hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.rw-hero-slider .carousel-control-prev {
    left: 20px;
}

.rw-hero-slider .carousel-control-next {
    right: 20px;
}

.rw-hero-slider .carousel-control-prev-icon,
.rw-hero-slider .carousel-control-next-icon {
    filter: invert(1);
    width: 18px;
    height: 18px;
}


/* Slider Dots */

.rw-hero-slider .carousel-indicators {
    bottom: 100px;
    z-index: 5;
}

.rw-hero-slider .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #9b2945;
    opacity: 0.4;
}

.rw-hero-slider .carousel-indicators button.active {
    opacity: 1;
}


/* Tablet */

@media (max-width: 1199px) {

    .rw-slide {
        min-height: 460px;
    }

    .rw-slide-content {
        left: 6%;
        width: 290px;
    }

    .rw-slide-content h1 {
        font-size: 48px;
    }

    .rw-slide-right {
        right: 3%;
        width: 120px;
        font-size: 17px;
    }

    .rw-slide-right strong {
        font-size: 27px;
    }

    .rw-slide-services {
        padding: 16px 5%;
    }

}


/* Mobile */

@media (max-width: 767px) {

    .rw-slide {
        min-height: 620px;
    }

    .rw-slide-bg {
        object-position: 62% center;
    }

    .rw-slide-content {
        left: 0;
        top: 35px;
        transform: none;
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .rw-hero-small-title {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .rw-slide-content h1 {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .rw-slide-content p {
        font-size: 12px;
        max-width: 250px;
        margin: 0 auto 22px;
    }

    .rw-hero-btn {
        padding: 12px 20px;
    }

    .rw-slide-right {
        display: none;
    }

    .rw-slide-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 8px;
        padding: 15px 12px;
    }

    .rw-service-item {
        justify-content: flex-start;
        gap: 8px;
    }

    .rw-service-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .rw-service-item strong {
        font-size: 10px;
    }

    .rw-service-item span {
        font-size: 8px;
    }

    .rw-hero-slider .carousel-control-prev,
    .rw-hero-slider .carousel-control-next {
        opacity: 1;
        width: 32px;
        height: 32px;
    }

    .rw-hero-slider .carousel-control-prev {
        left: 10px;
    }

    .rw-hero-slider .carousel-control-next {
        right: 10px;
    }

    .rw-hero-slider .carousel-indicators {
        bottom: 110px;
    }

}
/* =====================================================
   RANGRAWALI CATEGORY SECTION
   DESKTOP: 6 CARDS
   TABLET: 3 CARDS
   MOBILE: 2 CARDS
===================================================== */

.rw-category-section {
    position: relative;
    width: 100%;
    padding: 72px 0 82px;
    background:
        radial-gradient(
            circle at 5% 15%,
            rgba(122, 35, 69, 0.06),
            transparent 28%
        ),
        radial-gradient(
            circle at 95% 85%,
            rgba(27, 92, 76, 0.07),
            transparent 30%
        ),
        #fffaf6;
    overflow: hidden;
}

/* Decorative background circles */
.rw-category-section::before,
.rw-category-section::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(122, 35, 69, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.rw-category-section::before {
    top: -95px;
    left: -95px;
}

.rw-category-section::after {
    right: -95px;
    bottom: -95px;
    border-color: rgba(27, 92, 76, 0.13);
}

/* =====================================================
   CONTAINER
===================================================== */

.rw-category-section .rw-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
}

/* =====================================================
   SECTION HEADING
===================================================== */

.rw-category-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 44px;
    text-align: center;
}

.rw-heading-content {
    min-width: 280px;
}

.rw-heading-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #7a2345;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.4;
    text-transform: uppercase;
}

.rw-heading-content h2 {
    position: relative;
    margin: 0;
    color: #174f43;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 3vw, 46px);
    font-weight: 600;
    line-height: 1.15;
}

.rw-heading-content h2::after {
    content: "";
    display: block;
    width: 58px;
    height: 2px;
    margin: 15px auto 13px;
    background: #b88a45;
}

.rw-heading-content p {
    margin: 0;
    color: #856d62;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

/* =====================================================
   HEADING DECORATIONS
===================================================== */

.rw-heading-decoration {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 145px;
}

.rw-heading-decoration span {
    display: block;
    height: 1px;
    flex: 1;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(122, 35, 69, 0.7)
    );
}

.rw-heading-decoration i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border: 1px solid rgba(184, 138, 69, 0.55);
    border-radius: 50%;
    color: #b88a45;
    font-size: 13px;
    font-style: normal;
}

.rw-heading-decoration-right span {
    background: linear-gradient(
        90deg,
        rgba(27, 92, 76, 0.7),
        transparent
    );
}

/* =====================================================
   CATEGORY GRID
===================================================== */

.rw-category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: start;
    gap: 24px;
    width: 100%;
}

/* =====================================================
   CATEGORY CARD
===================================================== */

.rw-category-card {
    display: block;
    min-width: 0;
    padding: 0;
    color: #174f43;
    text-align: center;
    text-decoration: none;
    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

.rw-category-card:hover {
    color: #7a2345;
    text-decoration: none;
    transform: translateY(-6px);
}

/* =====================================================
   SQUARE IMAGE WRAPPER
===================================================== */

.rw-category-image {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    margin: 0 auto;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(122, 35, 69, 0.2);
    border-radius: 14px;
    background: #f1e5db;
    box-shadow: 0 8px 22px rgba(84, 47, 34, 0.08);
    isolation: isolate;
    box-sizing: border-box;
}

/* =====================================================
   BOTH IMAGES
===================================================== */

.rw-category-image img {
    position: absolute !important;
    inset: 0 !important;

    display: block !important;
    width: 100% !important;
    height: 100% !important;

    max-width: none !important;
    min-width: 0 !important;
    max-height: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    object-fit: cover !important;
    object-position: center center !important;

    transition:
        opacity 0.45s ease,
        transform 0.65s ease;
}

/* Main image visible */
.rw-category-img-main {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

/* Hover image hidden initially */
.rw-category-img-hover {
    z-index: 2;
    opacity: 0;
    transform: scale(1);
}

/* Hover par image swap */
.rw-category-card:hover .rw-category-img-main {
    opacity: 0;
}

.rw-category-card:hover .rw-category-img-hover {
    opacity: 1;
    transform: scale(1);
}

/* =====================================================
   IMAGE HOVER OVERLAY
===================================================== */

.rw-category-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        to top,
        rgba(23, 79, 67, 0.18),
        transparent 55%
    );
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.rw-category-card:hover .rw-category-image::after {
    opacity: 1;
}

/* =====================================================
   EXPLORE COLLECTION LABEL
===================================================== */

.rw-category-view {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 9px 6px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.93);
    color: #7a2345;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;

    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.rw-category-view b {
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
}

.rw-category-card:hover .rw-category-view {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   CATEGORY TITLE
===================================================== */

.rw-category-card h3 {
    width: 100%;
    margin: 15px 0 5px;
    color: #174f43;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    transition: color 0.3s ease;
}

.rw-category-card:hover h3 {
    color: #7a2345;
}

/* =====================================================
   CATEGORY SUBTITLE
===================================================== */

.rw-category-card p {
    margin: 0;
    color: #927b70;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45;
}

/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1199px) {

    .rw-category-section {
        padding: 62px 0 72px;
    }

    .rw-category-section .rw-container {
        padding: 0 22px;
    }

    .rw-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px 22px;
    }

    .rw-category-card h3 {
        font-size: 18px;
    }

    .rw-category-card p {
        font-size: 12px;
    }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .rw-category-heading {
        gap: 18px;
        margin-bottom: 36px;
    }

    .rw-heading-decoration {
        width: 100px;
    }

    .rw-heading-content h2 {
        font-size: 36px;
    }

    .rw-heading-content p {
        font-size: 14px;
    }

    .rw-category-grid {
        gap: 25px 18px;
    }

    .rw-category-image {
        border-radius: 12px;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .rw-category-section {
        padding: 46px 0 55px;
    }

    .rw-category-section .rw-container {
        padding: 0 15px;
    }

    .rw-category-heading {
        display: block;
        margin-bottom: 30px;
    }

    .rw-heading-decoration {
        display: none;
    }

    .rw-heading-content {
        width: 100%;
        min-width: 0;
    }

    .rw-heading-kicker {
        margin-bottom: 8px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .rw-heading-content h2 {
        font-size: 31px;
    }

    .rw-heading-content h2::after {
        width: 45px;
        margin: 12px auto 10px;
    }

    .rw-heading-content p {
        padding: 0 10px;
        font-size: 13px;
        line-height: 1.6;
    }

    /* Mobile: exactly 2 cards per row */
    .rw-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px 14px;
    }

    .rw-category-card {
        width: 100%;
        min-width: 0;
    }

    .rw-category-image {
        width: 100%;
        aspect-ratio: 2 / 3;
        border-radius: 11px;
    }

    .rw-category-card h3 {
        margin-top: 12px;
        font-size: 15px;
        line-height: 1.3;
    }

    .rw-category-card p {
        font-size: 10px;
        line-height: 1.4;
    }

    /* Mobile hover/tap image zoom */
    .rw-category-card:hover .rw-category-img-hover {
        transform: scale(1);
    }

    .rw-category-view {
        right: 7px;
        bottom: 7px;
        left: 7px;
        padding: 7px 4px;
        font-size: 9px;
    }

    .rw-category-view b {
        font-size: 13px;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .rw-category-section {
        padding: 40px 0 48px;
    }

    .rw-category-section .rw-container {
        padding: 0 12px;
    }

    .rw-heading-content h2 {
        font-size: 28px;
    }

    .rw-heading-content p {
        font-size: 12px;
    }

    .rw-category-grid {
        gap: 22px 11px;
    }

    .rw-category-image {
        border-radius: 10px;
    }

    .rw-category-card h3 {
        margin-top: 10px;
        font-size: 14px;
    }

    .rw-category-card p {
        font-size: 9px;
    }
}

/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 360px) {

    .rw-category-section .rw-container {
        padding: 0 10px;
    }

    .rw-category-grid {
        gap: 20px 8px;
    }

    .rw-category-card h3 {
        font-size: 13px;
    }

    .rw-category-card p {
        font-size: 9px;
    }

    .rw-category-view {
        font-size: 8px;
    }
}
/* =========================================
   RANGRAWALI ABOUT SECTION
========================================= */

.rw-about-section {
    position: relative;
    padding: 90px 0;
    background: #fffaf7;
    overflow: hidden;
}

.rw-about-image {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    padding-right: 35px;
    padding-bottom: 35px;
}

.rw-about-image::before {
    content: "";
    position: absolute;
    width: 82%;
    height: 82%;
    right: 0;
    bottom: 0;
    border: 2px solid #e8a37d;
    border-radius: 24px;
    z-index: 0;
}

.rw-about-image img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(80, 42, 24, 0.12);
}

.rw-about-badge {
    position: absolute;
    z-index: 2;
    left: -18px;
    bottom: 8px;
    width: 145px;
    height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    background: #9b2945;
    color: #fff;
    border: 8px solid #fffaf7;
    box-shadow: 0 12px 30px rgba(80, 42, 24, 0.18);
}

.rw-badge-number {
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

.rw-badge-text {
    margin-top: 7px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.rw-section-subtitle {
    display: inline-block;
    margin-bottom: 14px;
    color: #9b2945;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rw-about-content h2 {
    margin-bottom: 22px;
    color: #29201d;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 800;
}

.rw-about-content h2 span {
    color: #9b2945;
}

.rw-about-content > p {
    max-width: 570px;
    margin-bottom: 14px;
    color: #9b2945;
    font-size: 16px;
    line-height: 1.8;
}

.rw-about-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 28px 0;
}

.rw-about-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rw-point-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f6dfd2;
    color: #9b2945;
    font-size: 18px;
}

.rw-about-point h5 {
    margin: 0 0 5px;
    color: #29201d;
    font-size: 16px;
    font-weight: 700;
}

.rw-about-point p {
    margin: 0;
    color: #81756f;
    font-size: 13px;
    line-height: 1.6;
}

.rw-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    border-radius: 5px;
    background: #9b2945;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rw-primary-btn:hover {
    background: #29201d;
    transform: translateY(-3px);
}

.rw-primary-btn i {
    transition: transform 0.3s ease;
}

.rw-primary-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .rw-about-section {
        padding: 70px 0;
    }

    .rw-about-image {
        max-width: 600px;
        margin-bottom: 25px;
    }

    .rw-about-content {
        text-align: center;
    }

    .rw-about-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .rw-about-points {
        text-align: left;
    }

    .rw-primary-btn {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .rw-about-section {
        padding: 55px 0;
    }

    .rw-about-image {
        padding-right: 20px;
        padding-bottom: 25px;
    }

    .rw-about-image img {
        height: 380px;
        border-radius: 18px;
    }

    .rw-about-image::before {
        border-radius: 18px;
    }

    .rw-about-badge {
        left: -5px;
        bottom: 0;
        width: 112px;
        height: 112px;
        border-width: 6px;
    }

    .rw-badge-number {
        font-size: 23px;
    }

    .rw-badge-text {
        font-size: 10px;
    }

    .rw-about-content h2 {
        font-size: 32px;
    }

    .rw-about-content > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .rw-about-points {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .rw-about-point {
        justify-content: flex-start;
    }
}


/* =========================================
   NEW ARRIVALS SECTION
========================================= */

.rw-new-arrivals-section {
    position: relative;
    padding: 75px 0;
    background: #fffaf7;
    overflow: hidden;
    --rw-arrival-maroon: #9b2945;
    --rw-arrival-green: #064d43;
}

.rw-new-arrivals-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(155, 41, 69, 0.06);
    pointer-events: none;
}

.rw-new-arrivals-section .container {
    position: relative;
    z-index: 1;
}

/* =========================================
   SECTION HEADING
========================================= */

.rw-product-heading {
    display: grid;
    grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr);
    align-items: center;
    gap: 25px;
    margin-bottom: 38px;
}

.rw-heading-center {
    grid-column: 2;
    text-align: center;
}

.rw-product-heading-decoration {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
}

.rw-product-heading-decoration span {
    display: block;
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(155, 41, 69, 0.65));
}

.rw-product-heading-decoration i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border: 1px solid rgba(184, 138, 69, 0.55);
    border-radius: 50%;
    color: #b88a45;
    font-size: 13px;
    font-style: normal;
}

.rw-product-heading-decoration-right {
    grid-column: 3;
}

.rw-product-heading-decoration-right span {
    background: linear-gradient(90deg, rgba(155, 41, 69, 0.65), transparent);
}

.rw-product-heading .rw-view-all-btn {
    grid-column: 3;
    justify-self: end;
    grid-row: 2;
}

.rw-small-title {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--rw-arrival-maroon);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rw-heading-center h2 {
    margin: 0;
    color: #29201e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.1;
}

.rw-heading-center h2 span {
    color: var(--rw-arrival-maroon);
    font-style: italic;
}

.rw-heading-center p {
    margin: 12px 0 0;
    color: #8d817d;
    font-size: 14px;
    line-height: 1.7;
}

.rw-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 21px;
    border: 1px solid #d8aaa0;
    border-radius: 4px;
    color: var(--rw-arrival-maroon);
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.rw-view-all-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.rw-view-all-btn:hover {
    color: #fff;
    background: var(--rw-arrival-green);
    border-color: var(--rw-arrival-green);
}

.rw-view-all-btn:hover i {
    transform: translateX(4px);
}

/* =========================================
   PRODUCT CARD
========================================= */

.rw-product-card {
    height: 100%;
    background: #fff;
    border: 1px solid #f0e5e1;
    border-radius: 7px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.rw-product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 35px rgba(83, 48, 39, 0.12);
}

/* =========================================
   PRODUCT IMAGE
========================================= */

.rw-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    height: auto;
    overflow: hidden;
    background: #f8f1ed;
}

.rw-product-image > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/*
   contain use kiya gaya hai taaki product ki
   poori image visible rahe aur crop na ho.
*/
.rw-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    padding: 0;
    transition: transform 0.5s ease;
}

.rw-product-card:hover .rw-product-image img {
    transform: scale(1.04);
}

/* =========================================
   PRODUCT BADGE
========================================= */

.rw-product-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 3;
    padding: 6px 10px;
    border-radius: 3px;
    color: #fff;
    background: var(--rw-arrival-maroon);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================
   WISHLIST BUTTON
========================================= */

.rw-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #6e5a54;
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(50, 30, 25, 0.08);
    transition: all 0.3s ease;
}

.rw-wishlist-btn:hover {
    color: #fff;
    background: var(--rw-arrival-green);
    transform: scale(1.08);
}

/* =========================================
   QUICK VIEW
========================================= */

.rw-product-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 12px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.35s ease;
}

.rw-product-card:hover .rw-product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.rw-quick-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 12px;
    border-radius: 4px;
    color: #fff;
    background: rgba(155, 41, 69, 0.95);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.rw-quick-view:hover {
    color: #fff;
    background: var(--rw-arrival-green);
}

/* =========================================
   PRODUCT INFO
========================================= */

.rw-product-info {
    display: flex;
    flex-direction: column;
    min-height: 145px;
    padding: 17px 16px 16px;
}

.rw-product-category {
    display: block;
    margin-bottom: 7px;
    color: #b38b7e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rw-product-title {
    display: -webkit-box;
    min-height: 40px;
    overflow: hidden;
    color: #332825;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color 0.3s ease;
}

.rw-product-title:hover {
    color: var(--rw-arrival-maroon);
}

/* =========================================
   PRICE + CART
========================================= */

.rw-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
}

.rw-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.rw-price strong {
    color: var(--rw-arrival-maroon);
    font-size: 16px;
    font-weight: 700;
}

.rw-price del {
    color: #aaa09c;
    font-size: 11px;
}

.rw-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    padding: 0;
    border: 1px solid #e5c7bf;
    border-radius: 50%;
    color: var(--rw-arrival-maroon);
    background: #fff8f5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rw-cart-btn:hover {
    color: #fff;
    background: var(--rw-arrival-green);
    border-color: var(--rw-arrival-green);
    transform: rotate(-8deg);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {
    .rw-heading-center h2 {
        font-size: 36px;
    }

    .rw-product-info {
        padding: 15px 13px;
    }

    .rw-product-title {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .rw-new-arrivals-section {
        padding: 50px 0;
    }

    .rw-product-heading {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 25px;
    }

    .rw-heading-center,
    .rw-product-heading .rw-view-all-btn {
        grid-column: auto;
        grid-row: auto;
    }

    .rw-product-heading-decoration {
        display: none;
    }

    .rw-small-title {
        font-size: 9px;
        letter-spacing: 1.3px;
    }

    .rw-heading-center h2 {
        font-size: 29px;
    }

    .rw-heading-center p {
        max-width: 220px;
        margin-top: 8px;
        font-size: 12px;
    }

    .rw-view-all-btn {
        padding: 10px 12px;
        font-size: 9px;
        gap: 7px;
    }

    .rw-product-image {
        aspect-ratio: 2 / 3;
    }

    .rw-product-image img {
        padding: 0;
    }

    .rw-product-info {
        min-height: 135px;
        padding: 13px 11px;
    }

    .rw-product-category {
        font-size: 8px;
        letter-spacing: 0.7px;
    }

    .rw-product-title {
        min-height: 37px;
        font-size: 12px;
    }

    .rw-price strong {
        font-size: 14px;
    }

    .rw-price del {
        display: none;
    }

    .rw-cart-btn {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        font-size: 12px;
    }

    .rw-wishlist-btn {
        width: 30px;
        height: 30px;
        top: 9px;
        right: 9px;
        font-size: 12px;
    }

    .rw-product-badge {
        top: 10px;
        left: 10px;
        padding: 5px 7px;
        font-size: 8px;
    }

    .rw-product-overlay {
        display: none;
    }
}

@media (max-width: 420px) {
    .rw-product-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .rw-heading-center p {
        max-width: 100%;
    }

    .rw-view-all-btn {
        align-self: flex-start;
    }

    .rw-product-image {
        aspect-ratio: 2 / 3;
    }

    .rw-product-info {
        min-height: 130px;
    }
}

/* =========================================
   PROMOTIONAL CATEGORY BANNERS
========================================= */

.rw-promo-section {
    width: 100%;
    padding: 0 0 60px;
    background: #ffffff;
}

.rw-promo-section .row {
    align-items: stretch;
}

.rw-promo-card {
    position: relative;
    width: 100%;
    min-height: 285px;
    overflow: hidden;
    border-radius: 6px;
    background: #ead8cc;
}

.rw-promo-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.rw-promo-card:hover img {
    transform: scale(1.05);
}

/* Light overlay for button visibility */
.rw-promo-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        transparent 45%,
        rgba(40, 25, 20, 0.12) 100%
    );
    pointer-events: none;
}

/* Button container at bottom-right */
.rw-promo-content {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    min-height: auto;
    padding: 18px 18px 18px 18px;
    pointer-events: none;
}

/* Actual clickable button */
.rw-promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 17px;
    border: 0;
    border-radius: 4px;
    background: #6e1733;
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.rw-promo-btn:hover {
    background: #ffffff;
    color: #6e1733 !important;
    transform: translateY(-2px);
}

.rw-promo-btn i {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.rw-promo-btn:hover i {
    transform: translateX(4px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .rw-promo-section {
        padding-bottom: 45px;
    }

    .rw-promo-card {
        min-height: 245px;
    }

    .rw-promo-content {
        padding: 14px;
    }

    .rw-promo-btn {
        padding: 9px 13px;
        font-size: 9px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .rw-promo-section {
        padding-bottom: 40px;
    }

    .rw-promo-card {
        min-height: 250px;
        border-radius: 6px;
    }

    .rw-promo-content {
        padding: 14px;
    }

    .rw-promo-btn {
        padding: 10px 15px;
        font-size: 10px;
    }
}

@media (max-width: 575px) {
    .rw-promo-card {
        min-height: 230px;
    }

    .rw-promo-card img {
        object-position: center;
    }

    .rw-promo-content {
        padding: 12px;
    }

    .rw-promo-btn {
        padding: 9px 13px;
        gap: 6px;
        font-size: 9px;
    }

    .rw-promo-btn i {
        font-size: 8px;
    }
}


/* ================================
   Shop By Occasion Section
================================ */

.rw-premium-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 36px;
    text-align: center;
}

.rw-premium-heading .rw-heading-center {
    min-width: 280px;
    grid-column: auto;
}

.rw-premium-heading .rw-product-heading-decoration {
    width: 145px;
}

.rw-premium-heading .rw-heading-center > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #9b2945;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.rw-premium-heading .rw-heading-center h2 {
    position: relative;
    margin: 0;
    color: #064d43;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.15;
}

.rw-premium-heading .rw-heading-center h2::after {
    content: "";
    display: block;
    width: 58px;
    height: 2px;
    margin: 14px auto 0;
    background: #c49a4a;
}

.rw-premium-heading .rw-heading-center p {
    margin: 12px 0 0;
    color: #856d62;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .rw-premium-heading {
        display: block;
        margin-bottom: 30px;
    }

    .rw-premium-heading .rw-product-heading-decoration {
        display: none;
    }

    .rw-premium-heading .rw-heading-center {
        min-width: 0;
    }
}

.rw-occasion-section {
    padding: 72px 0 78px;
    background: #fffaf6;
}

.rw-occasion-heading {
    margin-bottom: 40px;
}

/* Card */
.rw-occasion-card {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid #eaded7;
    border-radius: 12px;
    background: #fffaf7;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Image wrapper */
.rw-occasion-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #f8f4f1;
}

/* Main image fix */
.rw-occasion-image img {
    display: block;
    width: 100%;
    height: auto !important;
    max-width: 100%;
    object-fit: contain !important;
    object-position: center center;
    transition: transform 0.4s ease;
}

/* Card title */
.rw-occasion-card h4 {
    margin: 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    color: #171717;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
    text-align: center;
}

/* Hover effect */
.rw-occasion-card:hover {
    border-color: #9b2945;
    box-shadow: 0 14px 30px rgba(80, 45, 30, 0.12);
    transform: translateY(-6px);
}

.rw-occasion-card:hover .rw-occasion-image img {
    transform: scale(1.03);
}

.rw-occasion-card:hover h4 {
    color: #9b2945;
}

/* Tablet */
@media (max-width: 991px) {
    .rw-occasion-section {
        padding: 45px 0;
    }

    .rw-occasion-heading h2 {
        font-size: 25px;
    }

    .rw-occasion-card h4 {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .rw-occasion-section {
        padding: 35px 0;
    }

    .rw-occasion-heading {
        margin-bottom: 22px;
    }

    .rw-occasion-heading h2 {
        font-size: 23px;
    }

    .rw-occasion-heading span {
        font-size: 11px;
    }

    .rw-occasion-card h4 {
        min-height: 38px;
        padding: 9px 2px;
        font-size: 12px;
    }
}


/* =====================================================
   FEATURED COLLECTIONS SECTION
===================================================== */

.rw-featured-section {
    padding: 72px 0 78px;
    background: #fffaf6;
    overflow: hidden;
}

.rw-featured-section .rw-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
}

/* =====================================================
   SECTION HEADING
===================================================== */

.rw-featured-heading {
    margin-bottom: 40px;
}

/* =====================================================
   FEATURED GRID
===================================================== */

.rw-featured-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 15px;
    align-items: start;
}

/* =====================================================
   FEATURED CARD
===================================================== */

.rw-featured-card {
    display: block;
    min-width: 0;
    color: #222222;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease;
}

.rw-featured-card:hover {
    color: #a52e4c;
    transform: translateY(-4px);
}

/* =====================================================
   FEATURED IMAGE
===================================================== */

.rw-featured-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 4.8;
    overflow: hidden;
    border: 1px solid #eaded7;
    border-radius: 5px;
    background: #f6f0eb;
}

.rw-featured-image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center;
    transition: transform 0.5s ease;
}

.rw-featured-card:hover .rw-featured-image img {
    transform: scale(1.07);
}

/* =====================================================
   HOVER OVERLAY
===================================================== */

.rw-featured-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 7px;
    background: rgba(65, 28, 30, 0.82);
    color: #ffffff;
    font-size: 10px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(100%);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.rw-featured-overlay i {
    font-size: 9px;
}

.rw-featured-card:hover .rw-featured-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   CARD TITLE
===================================================== */

.rw-featured-card h3 {
    margin: 11px 0 0;
    color: #252525;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.rw-featured-card:hover h3 {
    color: #a52e4c;
}

/* =====================================================
   VIEW ALL BUTTON
===================================================== */

.rw-featured-action {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.rw-featured-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 20px;
    border-radius: 25px;
    background: #12645e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rw-featured-view-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.rw-featured-view-btn:hover {
    background: #a52e4c;
    color: #ffffff;
}

.rw-featured-view-btn:hover i {
    transform: translateX(4px);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199px) {

    .rw-featured-section .rw-container {
        padding: 0 20px;
    }

    .rw-featured-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px 18px;
    }

    .rw-featured-image {
        aspect-ratio: 4 / 4.6;
    }
}

@media (max-width: 991px) {

    .rw-featured-section {
        padding: 42px 0 50px;
    }

    .rw-featured-heading h2 {
        font-size: 28px;
    }

    .rw-featured-grid {
        gap: 20px 15px;
    }

    .rw-featured-card h3 {
        font-size: 11px;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .rw-featured-section {
        padding: 38px 0 45px;
    }

    .rw-featured-section .rw-container {
        padding: 0 15px;
    }

    .rw-featured-heading {
        margin-bottom: 25px;
    }

    .rw-featured-heading span {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .rw-featured-heading h2 {
        font-size: 26px;
    }

    .rw-featured-heading p {
        font-size: 11px;
    }

    .rw-featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 12px;
    }

    .rw-featured-image {
        aspect-ratio: 4 / 4.8;
    }

    .rw-featured-overlay {
        padding: 9px 5px;
        font-size: 9px;
    }

    .rw-featured-card h3 {
        margin-top: 9px;
        font-size: 11px;
    }

    .rw-featured-action {
        margin-top: 25px;
    }

    .rw-featured-view-btn {
        padding: 10px 17px;
        font-size: 10px;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .rw-featured-section {
        padding: 32px 0 40px;
    }

    .rw-featured-heading h2 {
        font-size: 24px;
    }

    .rw-featured-grid {
        gap: 20px 10px;
    }

    .rw-featured-card h3 {
        font-size: 10px;
    }
}

.complete-look-section {
    width: 100%;
    overflow: hidden;
}

.complete-look-section picture,
.complete-look-section img {
    display: block;
    width: 100%;
}

.complete-look-section img {
    height: auto;
}

/* Mobile safety */
@media (max-width: 767px) {
    .complete-look-section img {
        width: 100%;
        height: auto;
    }
}


.testimonials-section {
    width: 100%;
    padding: 80px 0;
    background: #fffaf6;
    overflow: hidden;
}

.testimonials-container {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;
}

/* Heading */
.testimonials-heading {
    text-align: center;
    margin-bottom: 42px;
}

.testimonial-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    color: #a77b35;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.testimonials-heading h2 {
    margin: 0;
    color: #164f4c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.15;
}

.testimonials-heading p {
    max-width: 500px;
    margin: 15px auto 0;
    color: #77736d;
    font-size: 14px;
    line-height: 1.7;
}

.testimonials-heading .rw-heading-center h2 {
    color: #064d43;
}

.testimonials-heading .rw-heading-center p {
    color: #856d62;
}

/* Cards Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Individual Card */
.testimonial-card {
    position: relative;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e9e1d4;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(52, 43, 29, 0.06);
    transition: all 0.35s ease;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    width: 55px;
    height: 3px;
    background: #c39a52;
    border-radius: 0 0 5px 5px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(52, 43, 29, 0.12);
}

/* User Details */
.testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #e6d4b4;
    color: #164f4c;
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 600;
}

.testimonial-user h3 {
    margin: 0 0 5px;
    color: #273d3a;
    font-size: 15px;
    font-weight: 700;
}

.testimonial-user span {
    color: #9a948b;
    font-size: 11px;
}

.testimonial-stars {
    color: #c7953e;
    font-size: 13px;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Review Text */
.testimonial-text {
    min-height: 105px;
    margin: 0;
    color: #66615a;
    font-size: 14px;
    line-height: 1.9;
    font-style: italic;
}

/* Bottom */
.testimonial-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
    padding-top: 17px;
    border-top: 1px solid #eee8de;
}

.testimonial-bottom span {
    color: #a18b6c;
    font-size: 11px;
    font-weight: 600;
}

.testimonial-bottom i {
    color: #d9c5a2;
    font-family: Georgia, serif;
    font-size: 35px;
    font-style: normal;
    line-height: 20px;
}

/* Trust Line */
.testimonial-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 38px;
    color: #807a70;
    font-size: 12px;
    font-weight: 600;
}

.trust-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #164f4c;
    color: #ffffff;
    font-size: 12px;
}

.trust-divider {
    width: 1px;
    height: 15px;
    background: #d4cabb;
}

/* Tablet */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 65px 0;
    }

    .testimonials-grid {
        gap: 16px;
    }

    .testimonial-card {
        padding: 22px;
    }

    .testimonial-top {
        display: block;
    }

    .testimonial-stars {
        margin-top: 14px;
    }

    .testimonial-text {
        min-height: 145px;
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-container {
        width: 90%;
    }

    .testimonials-heading {
        margin-bottom: 28px;
    }

    .testimonials-heading h2 {
        font-size: 31px;
    }

    .testimonials-heading p {
        font-size: 13px;
    }

    .testimonials-grid {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        padding: 5px 3px 18px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        min-width: 88%;
        scroll-snap-align: center;
        padding: 23px;
    }

    .testimonial-text {
        min-height: auto;
        font-size: 13px;
        line-height: 1.8;
    }

    .testimonial-trust {
        flex-wrap: wrap;
        gap: 9px;
        font-size: 11px;
        text-align: center;
    }

    .trust-divider {
        display: none;
    }
}



.rangrawali-footer {
    width: 100%;
    color: #ffffff;
    background: #034f4c;
    overflow: hidden;
}

/* =========================
   FEATURES BAR
========================= */

.footer-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    background: #f8f2e9;
    border-bottom: 1px solid #e6ddd0;
}

.footer-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 76px;
    padding: 12px 15px;
    border-right: 1px solid #e3d9ca;
    color: #294d48;
    transition: background 0.3s ease;
}

.footer-feature:last-child {
    border-right: 0;
}

.footer-feature:hover {
    background: #efe5d6;
}

.footer-feature .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid #c6a15b;
    border-radius: 50%;
    color: #a27b38;
    font-size: 20px;
}

.footer-feature strong {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
}

.footer-feature small {
    display: block;
    color: #8a8379;
    font-size: 10px;
}

/* =========================
   MAIN FOOTER
========================= */

.footer-main {
    position: relative;
    isolation: isolate;
    padding: 65px 0 55px;
    background:
        linear-gradient(
            rgba(3, 79, 76, 0.72),
            rgba(3, 79, 76, 0.72)
        ),
        url("../images/footer-pattern.png") center center / cover no-repeat;
}

.footer-main::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        90deg,
        rgba(3, 79, 76, 0.35),
        transparent 50%,
        rgba(3, 79, 76, 0.35)
    );
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 1.25fr 0.95fr;
    gap: 55px;
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
}

/* =========================
   FOOTER BRAND
========================= */

.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo img {
    display: block;
    width: 175px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
    /* filter: brightness(0) invert(1); */
    transition: transform 0.35s ease, filter 0.35s ease;
}

/* .footer-logo:hover img {
    transform: translateY(-3px) scale(1.03);
    filter: brightness(0) saturate(100%)
            invert(79%) sepia(35%) saturate(700%)
            hue-rotate(355deg) brightness(95%);
} */

.footer-brand p {
    max-width: 320px;
    margin: 0 0 23px;
    color: #d0e0d9;
    font-size: 12px;
    line-height: 1.9;
}

/* Explore Button */
.footer-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 11px 18px;
    border: 1px solid #d4ad5d;
    border-radius: 30px;
    background: transparent;
    color: #f0d18a;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-shop-btn span {
    font-size: 17px;
    line-height: 10px;
    transition: transform 0.3s ease;
}

.footer-shop-btn:hover {
    background: #d4ad5d;
    color: #174e4b;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.footer-shop-btn:hover span {
    transform: translateX(5px);
}

/* =========================
   FOOTER HEADINGS
========================= */

.footer-column h3 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 13px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 2px;
    border-radius: 10px;
    background: #d8b362;
}

/* =========================
   QUICK LINKS
========================= */

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    position: relative;
    display: inline-block;
    color: #d2dfda;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: -18px;
    opacity: 0;
    color: #e0bd6b;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    padding-left: 18px;
    color: #e4c477;
}

.footer-links a:hover::before {
    left: 0;
    opacity: 1;
}

/* =========================
   CONTACT
========================= */

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 17px;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    min-width: 20px;
    height: 20px;
    color: #e1bd68;
    font-size: 16px;
}

.footer-contact p {
    margin: 0;
    color: #d2dfda;
    font-size: 12px;
    line-height: 1.8;
}

.footer-contact a {
    color: #d2dfda;
    font-size: 12px;
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #e5c477;
}

/* =========================
   SOCIAL MEDIA
========================= */

.social-text {
    max-width: 220px;
    margin: -3px 0 20px;
    color: #cbdcd5;
    font-size: 12px;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    border-color: #e1bd68;
    background: #e1bd68;
    color: #174e4b;
    transform: translateY(-6px) rotate(5deg);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.18);
}

.footer-newsletter-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 27px;
    color: #d9bd7c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    font-style: italic;
}

.footer-newsletter-note span {
    color: #e6c879;
    font-size: 18px;
}

/* =========================
   BOTTOM FOOTER
========================= */

.footer-bottom {
    background: #034744;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 92%;
    max-width: 1280px;
    min-height: 58px;
    margin: 0 auto;
}

.footer-bottom p {
    margin: 0;
    color: #bcd1c9;
    font-size: 11px;
}

.footer-heart {
    color: #ec6868;
    font-size: 15px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 35px;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .footer-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-feature {
        justify-content: flex-start;
        min-height: 70px;
        padding: 12px 15px;
        gap: 10px;
    }

    .footer-feature:nth-child(2) {
        border-right: 0;
    }

    .footer-feature:nth-child(-n + 2) {
        border-bottom: 1px solid #e3d9ca;
    }

    .footer-feature .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 17px;
    }

    .footer-feature strong {
        font-size: 10px;
    }

    .footer-feature small {
        font-size: 9px;
    }

    .footer-main {
        padding: 45px 0 35px;
        background:
            linear-gradient(
                rgba(3, 79, 76, 0.66),
                rgba(3, 79, 76, 0.66)
            ),
            url("../images/footer.png") center center / cover no-repeat;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        width: 88%;
    }

    .footer-logo img {
        width: 155px;
    }

    .footer-brand p {
        max-width: 100%;
        font-size: 12px;
    }

    .footer-column h3 {
        margin-bottom: 19px;
        font-size: 14px;
    }

    .footer-links li {
        margin-bottom: 11px;
    }

    .footer-bottom-container {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        width: 88%;
        min-height: auto;
        padding: 17px 0;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 10px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px) {
    .footer-feature {
        padding: 10px;
        gap: 7px;
    }

    .footer-feature strong {
        font-size: 9px;
    }

    .footer-feature small {
        font-size: 8px;
    }

    .footer-feature .feature-icon {
        width: 26px;
        height: 26px;
        font-size: 15px;
    }
}


.footer-credit {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.footer-credit a {
    position: relative;
    display: inline-block;
    color: #e2bd69;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-credit a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-credit a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-credit a:hover::after {
    width: 100%;
}

/* =====================================================
   INNER PAGES AND FOOTER REFINEMENT
===================================================== */

.rw-inner-page {
    background: #fffaf6;
}

.rw-page-hero {
    position: relative;
    padding: 88px 0 78px;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at 12% 35%, rgba(155, 41, 69, 0.10), transparent 28%),
        radial-gradient(circle at 88% 65%, rgba(6, 77, 67, 0.09), transparent 28%),
        #fffaf6;
}

.rw-page-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(196, 154, 74, 0.25);
    border-radius: 50%;
}

.rw-page-hero .rw-container {
    position: relative;
    z-index: 1;
}

.rw-page-hero span,
.rw-page-kicker {
    display: inline-block;
    color: #9b2945;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.rw-page-hero h1 {
    max-width: 780px;
    margin: 12px auto 0;
    color: #064d43;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
}

.rw-page-hero p {
    max-width: 560px;
    margin: 16px auto 0;
    color: #856d62;
    font-size: 15px;
    line-height: 1.8;
}

.rw-about-story,
.rw-contact-section,
.rw-shop-section {
    padding: 82px 0 96px;
}

.rw-about-story-grid,
.rw-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 76px;
}

.rw-about-story-image {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

.rw-about-story-image img {
    width: 100%;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 18px 18px 0 #f1dfd2;
}

.rw-about-story-image span {
    position: absolute;
    right: -20px;
    bottom: 24px;
    padding: 12px 18px;
    color: #fff;
    background: #9b2945;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.rw-about-story-content h2,
.rw-contact-details h2 {
    margin: 12px 0 20px;
    color: #064d43;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.15;
}

.rw-about-story-content h2 em {
    color: #9b2945;
    font-style: normal;
}

.rw-about-story-content > p,
.rw-contact-details > p {
    max-width: 570px;
    margin: 0 0 15px;
    color: #756a65;
    font-size: 15px;
    line-height: 1.85;
}

.rw-about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.rw-about-values div {
    padding-top: 14px;
    border-top: 2px solid #c49a4a;
}

.rw-about-values strong {
    color: #9b2945;
    font-size: 12px;
}

.rw-about-values h3 {
    margin: 8px 0 5px;
    color: #2c2422;
    font-size: 16px;
}

.rw-about-values p {
    color: #8c817b;
    font-size: 12px;
    line-height: 1.5;
}

.rw-contact-details {
    padding: 35px;
    border: 1px solid #eaded7;
    border-radius: 14px;
    background: #fff;
}

.rw-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 26px;
}

.rw-contact-detail > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    color: #9b2945;
    background: #f8e8e5;
}

.rw-contact-detail strong,
.rw-contact-detail span,
.rw-contact-detail a {
    display: block;
    color: #493b36;
    font-size: 14px;
    line-height: 1.7;
}

.rw-contact-detail strong {
    margin-bottom: 3px;
    color: #064d43;
    font-weight: 700;
}

.rw-contact-form {
    padding: 35px;
    border-radius: 14px;
    background: #064d43;
    box-shadow: 14px 14px 0 #ead8cc;
}

.rw-contact-form label {
    display: block;
    margin: 0 0 7px;
    color: #f4e4c2;
    font-size: 12px;
    font-weight: 600;
}

.rw-contact-form input,
.rw-contact-form textarea {
    width: 100%;
    margin-bottom: 18px;
    padding: 12px 13px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;
    outline: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    font: inherit;
}

.rw-contact-form input:focus,
.rw-contact-form textarea:focus {
    border-color: #c49a4a;
}

.rw-contact-form button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 19px;
    border: 0;
    border-radius: 4px;
    color: #064d43;
    background: #f4e4c2;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.rw-form-success {
    margin-bottom: 18px;
    padding: 11px;
    color: #064d43;
    background: #f4e4c2;
    font-size: 12px;
}

.rw-shop-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.rw-shop-toolbar h2 {
    margin: 8px 0 0;
    color: #064d43;
    font-size: 36px;
}

.rw-shop-toolbar > span {
    color: #9b2945;
    font-size: 13px;
    font-weight: 700;
}

.rw-shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 30px;
}

.rw-shop-filters a {
    padding: 9px 15px;
    border: 1px solid #ead4cc;
    border-radius: 30px;
    color: #765f57;
    background: #fff;
    font-size: 12px;
}

.rw-shop-filters a:hover,
.rw-shop-filters a.active {
    border-color: #9b2945;
    color: #fff;
    background: #9b2945;
}

.rw-shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.rw-shop-card {
    overflow: hidden;
    border: 1px solid #eaded7;
    border-radius: 10px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rw-shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(80, 45, 30, 0.12);
}

.rw-shop-card-image {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #f8f1ed;
}

.rw-shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rw-shop-card-image > span,
.rw-shop-card-image > button {
    position: absolute;
    top: 12px;
}

.rw-shop-card-image > span {
    left: 12px;
    padding: 5px 8px;
    color: #fff;
    background: #9b2945;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.rw-shop-card-image > button {
    right: 12px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    color: #9b2945;
    background: #fff;
}

.rw-shop-card-content {
    padding: 16px;
}

.rw-shop-card-content small {
    color: #b38b7e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rw-shop-card-content h3 {
    min-height: 44px;
    margin: 8px 0 15px;
    color: #332825;
    font-size: 16px;
    line-height: 1.4;
}

.rw-shop-card-content > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rw-shop-card-content strong {
    color: #9b2945;
    font-size: 16px;
}

.rw-shop-card-content button {
    width: 34px;
    height: 34px;
    border: 1px solid #ead4cc;
    border-radius: 50%;
    color: #9b2945;
    background: #fff8f5;
}

.footer-main {
    padding: 78px 0 66px;
}

.footer-container {
    gap: 62px;
}

.footer-brand p,
.footer-links a,
.footer-contact p,
.footer-contact a,
.social-text {
    font-size: 13px;
}

.footer-column h3 {
    font-size: 17px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-bottom p {
    font-size: 12px;
}

@media (max-width: 991px) {
    .rw-about-story-grid,
    .rw-contact-grid {
        gap: 45px;
    }

    .rw-shop-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .rw-page-hero {
        padding: 62px 0 55px;
    }

    .rw-about-story,
    .rw-contact-section,
    .rw-shop-section {
        padding: 55px 0 65px;
    }

    .rw-about-story-grid,
    .rw-contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .rw-about-story-image span {
        right: 10px;
    }

    .rw-about-values {
        grid-template-columns: 1fr;
    }

    .rw-contact-details,
    .rw-contact-form {
        padding: 25px;
    }

    .rw-shop-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .rw-shop-toolbar h2 {
        font-size: 30px;
    }

    .rw-shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .rw-shop-card-content {
        padding: 12px;
    }

    .rw-shop-card-content h3 {
        min-height: 54px;
        font-size: 13px;
    }

    .footer-main {
        padding: 55px 0 42px;
    }

    .footer-container {
        gap: 38px;
    }
}