* {
    box-sizing: border-box;
}
body {
    color : #4f3017
}

:root {
    --maroon: #611310;
    --beige: #e5e0d5;
    --dark-green: #273720;
    --text-gold: #c5a880;
    /* Approximated from visual */
}

/* === FONTS SECTION ========== */
@font-face {
    font-family: 'Amoresa';
    src: url('../assets/fonts/Amoresa/AmoresaRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Luxes';
    src: url('../assets/fonts/LaLuxes.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oaken';
    src: url('fonts/Oaken.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


:root {
    /* Fonts */
    --font-script: "Amoresa", cursive;
    /* Formal Elegant Cursive */
    --font-marker: "Reenie Beanie", cursive;
    /* Messy Handwritten Marker */
    --font-serif: "Luxes", serif;
    /* Bold Premium Serif */

    /* Colors */
    --text-gold: #c5a880;
    --text-white: #f5f5f5;
}

/* --- Font Classes --- */

/* 1. Formal Cursive */
.italic-text {
    font-family: var(--font-script)  !important;
    font-size: 3.2rem;
    color: var(--text-white);
    line-height: 1.1;
    /* Collapse avoid karne ke liye safe height */
    text-transform: none;
    font-weight: 400;
    display: inline-block;
}

/* 2. Bold High-Impact (e.g., "SUSTAINABILITY", "10% OFF") */
.bold-text {
    font-family: var(--font-serif);
    font-weight: 100;
    font-size: 4.5rem;
    /* letter-spacing: 2px; */
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
}

/* 3. Messy Handwritten (e.g., "The finer details") */
.comic-text {
    font-family: var(--font-marker)  !important;
    font-size: 2.8rem;
    letter-spacing: 1px;
    text-transform: none;
    font-weight: 400;
    color: var(--text-white);
    display: inline-block;
}

/* Overlap Utility (Optional: Text ko upar chadhane ke liye) */
.mt-negative {
    margin-top: -20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bold-text {
        font-size: 2.5rem;
    }

    .italic-text {
        font-size: 2.2rem;
    }

    .comic-text {
        font-size: 1.5rem;
    }
}

/* === FONTS SECTION ========== */
html {
    scroll-behavior: smooth;

}

html::selection {
    color: #4f3017;
    background-color: var(--maroon);
}

body {
    font-family: Helvetica;
    background-color: var(--beige);
    color: #4f3017;
    overflow-x: hidden;
}


img {
    width: 100%;
    object-fit: cover;
}

.sec-padding {
    padding: 60px 0;
}

.bg-texture {
    background-image: url(images/rent-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-brown {
    background-color: #332219;
}

/* ============ REFINED RHODE-STYLE MEGA MENU & HEADER ============ */
a.login-btn {
    padding: 10px 16px;
    background-color: #f0ede9;
    border-radius: 20px;
    color: #701c1c;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all .5s ease-in;
}

a.login-btn:hover {
    font-weight: 600;
    transform: scale(1.05);
}
a.rent-btn {
    padding: 10px 16px;
    color: #f0ede9;
    border-radius: 20px;
    background-color: #701c1c;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all .5s ease-in;
}
a.rent-btn:hover {
    font-weight: 600;
    transform: scale(1.05);
}

#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    background: #701c1c;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.16);
}

.header-hidden {
    transform: translateY(-100%); 
}

.notif-banner {
    background-color: ##5e1212;
   ; color: #f5f5f5;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- Navigation Links --- */
#main-header .nav-link {
    color: #ffffff;
    font-family: 'Helvetica', sans-serif;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding: 0.8rem 1.2rem  !important;
    transition: all .5s ease;
}

@media (min-width: 992px) {
    #main-header .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1.5px;
        bottom: 5px;
        left: 50%;
        background-color: #701c1c;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    #main-header .nav-link:hover::after {
        width: 40%;
    }

    #main-header .nav-link:hover {
        color: #701c1c important;
        transform: scale(1.05);
    }
}

/* --- Full Width Mega Dropdown --- */
.dropdown-mega .mega-menu-content {
    width: 100vw  !important;
    left: 0  !important;
    right: 0  !important;
    margin-top: 0;
    border: none;
    border-radius: 0;
    background: #FAF9F6  !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06)  !important;
}

@media (min-width: 992px) {
    .navbar-brand-centered {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1001;
    }

    .header-left,
    .header-right {
        width: 42%;
    }

    .dropdown-mega:hover .mega-menu-content {
        display: block  !important;
        opacity: 1;
        visibility: visible;
        animation: fadeIn 0.4s ease forwards;
    }
}

/* --- Rhode Tab Navigation --- */
#rentTab {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 10px;
}

#rentTab::-webkit-scrollbar {
    display: none;
}

#rentTab .nav-link {
    border: none  !important;
    color: #ababab  !important;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 28px  !important;
    letter-spacing: 0.5px;
    background: transparent  !important;
    transition: color 0.3s ease;
}

#rentTab .nav-link.active {
    color: #000  !important;
    border-bottom: 2px solid #000  !important;
}

/* --- THE SCROLLER FIX (PC & MOBILE) --- */
.custom-scroll {
    display: flex  !important;
    flex-direction: row  !important;
    flex-wrap: nowrap  !important;
    /* Force items in one line */
    overflow-x: auto  !important;
    gap: 20px;
    padding: 10px 0 30px 0;
    scrollbar-width: none;
}

.custom-scroll::-webkit-scrollbar {
    display: none;
}

/* --- PREMIUM CARD UI --- */
.rhode-card-item {
    flex: 0 0 auto  !important;
    /* PC pe squeeze hone se rokega */
    width: 280px;
    /* Desktop width */
    background: transparent;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.rhode-img-box {
    background: #fff;
    border-radius: 16px;
    /* Smooth rounded corners */
    position: relative;
    aspect-ratio: 1 / 1.3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.3s ease;
}

.rhode-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover look for premium feel */
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rhode-card-item:hover {
    transform: translateY(-5px);
}

.rhode-card-item:hover .rhode-img-box {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rhode-card-item:hover img {
    transform: scale(1.08);
}

.rhode-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: #4f3017;
    font-size: 9px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 1px;
}

.rhode-details {
    margin-top: 18px;
    text-align: left;
    /* Rhode style alignment */
    padding-left: 5px;
}

.rhode-details .title {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rhode-details .subtitle {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

/* --- PREMIUM SHOP ALL BUTTON --- */
.rhode-shop-btn {
    display: inline-block;
    background: #000;
    color: #f5f5f5 !important;
    padding: 14px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: 1px solid #000;
    margin-top: 10px;
}

.rhode-shop-btn:hover {
    background: transparent;
    color: #000  !important;
    transform: scale(1.05);
}

/* --- Mobile Specific Fixes --- */
@media (max-width: 991px) {
    .rhode-card-item {
        width: 220px;
    }

    /* Mobile pe thoda chota */

    .navbar-collapse {
        background: #FAF9F6  !important;
        height: 100vh  !important;
    }

    .mega-menu-content {
        padding-top: 20px;
    }

    #rentTab .nav-link {
        padding: 10px 18px  !important;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Jab menu open ho toh peeche wala page freeze ho jaye */
body.modal-open,
body.navbar-fixed {
    overflow: hidden;
}

/* ========== Header enddddddddddddddd */
/* Section 1: Hero */
.navbar-brand-centered {
    width: 100px;
}

.hero-section {
    background-color: var(--maroon);
    min-height: 100vh;
    padding-top: 80px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    text-transform: uppercase;
}

.floating-cart {
    filter: drop-shadow(20px 20px 50px rgba(0, 0, 0, 0.5));
    transform: translateY(-20px);
}

/* Section 2: Rent */
.rent-section {
    background: url('assets/paper-texture.jpg');
    /* If you have the texture */
}

.section-heading {
    font-size: 2.5rem;
    color: var(--maroon);
}

.calendar-card {
    max-width: 700px;
    background: transparent;
    padding: 20px;
    transform: rotate(-1deg);
    transform: translate(-50px, 30px);
}

/* Section 3: Categories - Rhode Skin Style Update */

.story-section {
    background-color: #332219;
    /* Dark brown remains */
    padding: 60px 0;
}

/* Container for Image + Text */
.category-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    /* Rounded edges as requested */
    aspect-ratio: 1/1;
    /* Premium portrait look */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    background: #44332a;
    /* Fallback color */
}

/* Image styling */
.category-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Text INSIDE the image (Bottom Left) */
.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    /* Thoda bottom spacing */
    text-align: left;
    /* Smooth gradient taaki white text brown/light image pe chamke */
    background: linear-gradient(to top, rgba(51, 34, 25, 0.8) 0%, transparent 100%);
    z-index: 2;
}

.category-content h3 {
    /*font-family: 'Oaken', serif;*/
    font-size: 1.6rem;
    margin: 0;
    color: #ffffff  !important;
    /* Force white for inside look */
    letter-spacing: 2px;
    text-transform: capitalize;
    transition: transform 0.4s ease;
}

/* Hover Effects */
.category-item:hover .category-img-box img {
    transform: scale(1.1);
    /* Zoom effect */
}

.category-item:hover h3 {
    transform: translateY(-5px);
    /* Chhota sa text lift */
}

/* Slider spacing fix for Owl Carousel */
.category-slider .category-item {
    padding: 10px;
}

/* Section 4: Our Story */
.story-title {
    color: #fdfdfd;
}

.our-story-vid {
    width: 100%;
    background-image: url(/assets/images/our-storyimg.jpg);
    padding: 40px;
}

.our-story-vid video {
    object-fit: cover;
    width: 100%;
    height: auto;
}

.our-story-vid video,
.our-story-vid img {
    width: 100%;
    /* Jo humne pehle decide kiya tha */
    transition: opacity 0.5s ease;
}

.d-none {
    display: none  !important;
}

.polaroid {
    background: white;
    padding: 15px 15px 60px 15px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.rotate-left {
    transform: rotate(-5deg);
}

.discount-text {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--maroon);
}

/* Section 5: Community */
.community-section {
    background-color: var(--dark-green);
}

.envelope-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    color: #61130f;
    font-family: 'Playfair Display', serif;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .discount-text {
        font-size: 2rem;
        position: relative;
        text-align: center;
    }
}

/* ================== */
/* calendar section css  */
.calendar-container {
    background: #fff;
    max-width: 600px;
    margin: 20px auto;
    padding: 25px;
    border-radius: 15px;
    /* Exact rounded look from mockup */
    font-family: 'Arial', sans-serif;
    color: #4f3017;
    border: 1px solid #eee;
}

.calendar-header h3 {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.weekdays-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    font-size: 0.8rem;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.calendar-day {
    padding: 15px 0;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.calendar-day:hover {
    background-color: var(--beige);
    /* Using your theme color */
    color: var(--maroon);
}

.calendar-day.today {
    color: var(--maroon);
    font-weight: bold;
    text-decoration: underline;
}

.calendar-day.empty {
    cursor: default;
}

#prevMonth,
#nextMonth {
    background: transparent;
    border: none;
    font-weight: bold;
    color: var(--maroon);
}

/* ========= AOS ANIMATIONS =========== */
/* 1. Floating Animation for Hero Image */
.floating-cart {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* 2. Hover Zoom for Slider Images */
.category-item img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

/* 3. Smooth Hover for Nav Links */
.nav-link {
    transition: color 0.3s ease;
}

/* 4. Postcard Tilt Effect on Hover */
.postcard-img {
    transition: transform 0.6s ease;
}

.postcard-img:hover {
    transform: rotate(2deg) scale(1.02);
}

/* ======= CART HERO SECTION =========== */
.cart-container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.cart-main-bg {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.cart-item {
    position: absolute;
    width: 100px;
    /* Adjust size based on item */
    height: auto;
    opacity: 0;
    /* JS will animate this to 1 */
    transition: transform 0.3s ease;
}

.cart-item img {
    width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.3));
}

.cart-item:hover {
    transform: scale(3) rotate(5deg);
    z-index: 10;
}

.title-img img {
    width: 100%;
    object-fit: cover;
}

.page-title-sec {
    background-color: #61130f;
    padding-top: 80px;
}

.terms-content {
    height: 100vh;
}

/* =========== our tennnn */
.ourtenimg img {
    width: 100%;
    object-fit: cover;
}

/* ====== foodforlifeNepal */
.foodforlifeNepal {
    background-color: #332219;

}

h1.title-text span {
    font-size: 90px  !important;
    display: inline-block;
}

/* ======================= */
/* Constant Floating Movement */
@keyframes floatItem {
    0% {
        transform: translateY(0px) rotate(var(--rotate-start));
    }

    50% {
        transform: translateY(-10px) rotate(var(--rotate-mid));
    }

    100% {
        transform: translateY(0px) rotate(var(--rotate-start));
    }
}

.cart-item img {
    /* JS will trigger this class after drop animation */
    transition: transform 0.3s ease;
}

.floating-active {
    animation: floatItem 4s ease-in-out infinite;
}

/* ============ terms service */
.terms-title .title-flower {
    position: absolute;
    left: -4%;
    top: 12%;
}

.page-title-sec {
    padding-left: 100px;
}

.title-image-txt {
    position: absolute;
    bottom: 10%;
    left: 35%;
    transform: rotate(-14deg)
}

.title-image-txt span {
    font-size: 32px;
}


.story-title span.bold-text {
    font-size: 60px;
    font-weight: 100;
    padding-top: 0;
    transform: translateY(-32px);
}

.title-text span.bold-text {
    transform: translateY(-23px);
}

.community-cta-right img {
    width: 100%;
    object-fit: cover;

}

.community-cta-left img {
    width: 100%;
    object-fit: cover;

}

.about-text {
    font-family: Helvetica;
    line-height: 1.6;
    color: #61130f;
    font-size: 18px;
    font-weight: 700;
    padding: 45px 0;


}

/* Container Fix */
.banner-grid {
    display: block;
    /* Center content */
    overflow: hidden;
    /* Prevent spill on animate */
}

/* Base style for layered elements */
.layered-element {
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smooth movement */
    pointer-events: auto;
    /* Allow hover */
    cursor: pointer;
}

/* Elements Scaling & Base Positions (Adjust based on your final image size) */
.about-banner-img {
    color: #f5f5f5;
    background-color: var(--maroon);
    min-height: 90vh;
}

.couples-img {
    top: 18%;
    left: 30%;
    z-index: 1;
    width: 18%;
}

.girls-img {
    top: 28%;
    right: 30%;
    z-index: 2;
    width: 22%;
}

.flowers-img {
    top: 14%;
    right: 40%;
    z-index: 3;
    width: 15%;
}

.bearded-flower-img {
    top: 28%;
    right: 25%;
    z-index: 4;
    width: 7%;
}

.diyas-img {
    bottom: 25%;
    left: 35%;
    z-index: 5;
    width: 12%;
}

.plate-img {
    bottom: 15%;
    right: 4%;
    z-index: 1;
    width: 26%;
}

/* Image responsive rule */
.layered-element img {
    width: 100%;
    height: auto;
}

/* --- INDIVIDUAL HOVER ANIMATIONS --- */
/* Thoda different shift/rotate effect for organic feel */

/* Image 1 moves slight up-left */
.couples-img:hover {
    transform: translate(-10px, -5px) rotate(-1deg);
}

/* Image 2 moves slight right-down and rotates opposite */
.girls-img:hover {
    transform: translate(12px, 8px) rotate(2deg);
}

/* Flowers shift subtly */
.flowers-img:hover {
    transform: translate(-5px, -15px);
}

/* Details (Beaded, Diyas, Plate) move together gently */
.bearded-flower-img:hover,
.diyas-img:hover,
.plate-img:hover {
    transform: translate(5px, 5px) scale(1.02);
}

/* Title Styling Fix */
.story-title-overlay {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Center exact */
    z-index: 10;
    pointer-events: none;
    /* Text clickable na ho image pe access ke liye */
}

/* --- UPDATED TEAM SECTION CSS --- */

.team-section {
    padding: 80px 0 140px;
    /* Optional: Rhode style beige background */
}

.team-card {
    perspective: 1000px;
    /* 3D depth ke liye */
    cursor: pointer;
}

.team-card .team-img {
    background-color: #f5f5f5;
    padding: 10px 45px 10px 20px;
    height: 200px;
    transform: rotate(-2deg);
    /* Tera original rotation */
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Soft shadow for premium look */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Ultra smooth Rhode transition */
    overflow: hidden;
}

.team-img-box {
    height: 100%;
    width: 100%;
    background: #000;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    /* Image zoom effect */
}

.team-card .team-name h6 {
    font-family: var(--font-marker);
    font-size: 40px;
    color: #f5f5f5;
    text-align: end;
    transform: translate(10px, -33px) rotate(12deg);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* --- HOVER EFFECTS --- */

.team-card:hover .team-img {
    transform: rotate(0deg) scale(1.03);
    /* Card straight aur thoda bada hoga */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-card:hover .team-img-box {
    transform: scale(1.1);
    /* Underneath image thodi zoom hogi */
}

.team-card:hover .team-name h6 {
    transform: translate(5px, -38px) rotate(5deg);
    /* Name thoda bounce karega */
    color: #d4a373;
    /* Optional: Hover pe color change (Rhode Brown) */
}

.accordion-item {
    background-color: transparent  !important;
    color: #4f3017 !important;
    font-family: Helvetica;
}

.accordion-button {
    background: transparent  !important;
    border-bottom: 2px solid #000;
    border-radius: 0px  !important;
    color: #4f3017 !important;
    font-weight: 800  !important;
    font-size: 19px;
}

.accordion-button::after {
    background-image: url(../assets/images/arrow-down.png);
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../assets/images/arrow-down.png);
}

.accordion-button:focus {
    box-shadow: none  !important;
    border-bottom: 2px solid #000  !important;
}

/* /=============== HOW TO RENT SECTION  */

.how-to-rent-section {
    padding: 120px 0;
}

.step-card {
    padding: 20px 10px;
    transition: transform 0.3s ease;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #701c1c;
    /* Maroon color from your image */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(112, 28, 28, 0.2);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fff;
    color: #701c1c;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #701c1c;
}

.step-card h6 {
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
    color: #4f3017;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Hover effect */
.step-card:hover {
    transform: translateY(-10px);
}

/* ==========================================================================
   LISTED ITEMS PAGES (Rhode Skin Style Update)
   ========================================================================== */

:root {
    --maroon: #701c1c;
    --light-bg: #f9f9f9;
}

/* --- Product Card Core --- */
.item-container {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0;
    /* Minimal/Clean look */
    border: none;
    background: #fff;
}

.item-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08)  !important;
}

/* --- Image Swap & Preview --- */
.img-preview-box {
    position: relative;
    aspect-ratio: 1 / 1.25;
    /* Rhode style portrait ratio */
    overflow: hidden;
    background-color: var(--light-bg);
}

/* Replace Scroller with Swap Logic */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-hover {
    opacity: 0;
    /* Initially hidden */
}

.item-container:hover .img-main {
    opacity: 0;
}

.item-container:hover .img-hover {
    opacity: 1;
}

/* --- Slide-up Button (The Rhode CTA) --- */
.hover-button-wrapper {
    position: absolute;
    bottom: -60px;
    /* Hidden below */
    left: 0;
    width: 100%;
    padding: 0 15px 15px 15px;
    transition: bottom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10;
}

.item-container:hover .hover-button-wrapper {
    bottom: 0;
    /* Slides up on hover */
}

.btn-slide-up {
    display: block;
    background: var(--maroon);
    color: #fff  !important;
    text-align: center;
    padding: 12px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(112, 28, 28, 0.2);
}

/* --- Product Content Styling --- */
.product-content {
    background: #fff;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.item-container:hover .product-title {
    color: var(--maroon);
}

.price-text {
    font-weight: 700;
    color: var(--maroon);
    font-size: 1rem;
}

.rent-tag {
    font-size: 12px;
    color: #888;
}

/* --- Filters & Tabs (Existing Kept & Cleaned) --- */
.category-tabs .nav-link {
    background: var(--maroon);
    color: #f5f5f5;
    font-size: 1.1rem;
    transition: 0.3s;
    border-radius: 30px;
}

.category-tabs .nav-link.active {
    color: var(--maroon)  !important;
    border: 2px solid var(--maroon);
    background-color: transparent;
    border-radius: 30px  !important;
}

.nav-pills .nav-link.active {
    background-color: transparent;
    border-radius: 0px;
}

.filter-card {
    border: 1px solid #efeae0;
    border-radius: 0;
}

.filter-btn-toggle {
    color: var(--maroon);
    background: transparent;
    border: 2px solid var(--maroon);
}

.item-count {
    color: var(--maroon);
}

.offcanvas-start {
    z-index: 9999;
}

/* Chips & Color Dots */
.chip {
    padding: 6px 16px;
    border: 1px solid #eee;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
}

.chip.active,
.chip:hover {
    background: var(--maroon);
    color: white;
    border-color: var(--maroon);
}

.color-options .dot {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.color-options .dot.active {
    transform: scale(1.2);
    border: 2px solid #4f3017;
}

/* Tab Pane Logic */
.tab-pane:not(.active) {
    display: none  !important;
}

/* Detail Page Zoom Fix */
.main-image-container {
    overflow: hidden;
}

.main-image-container img:hover {
    transform: scale(1.05);
}

/* Specific to Ekdin Filter Sidebar only */
.ekdin-filter-panel .filter-label {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    color: #4f3017;
}

/* Color Swatches - Unique Name to avoid conflict with generic dots */
.ekdin-filter-panel .filter-color-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ekdin-filter-panel .color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.ekdin-filter-panel .color-swatch.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1.5px solid #701c1c;
    border-radius: 50%;
}

/* Size Buttons */
.ekdin-filter-panel .filter-size-box {
    display: flex;
    gap: 10px;
}

.ekdin-filter-panel .size-btn {
    width: 45px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.ekdin-filter-panel .size-btn.active {
    background: #701c1c;
    color: #f5f5f5;
    border-color: #701c1c;
}

/* Slider Customization */
.ekdin-filter-panel .filter-range-slider::-webkit-slider-thumb {
    background: #701c1c;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.ekdin-filter-panel .price-display {
    color: #701c1c;
}

/* Action Buttons */
.ekdin-filter-panel .btn-apply-filter {
    width: 100%;
    background: #701c1c;
    color: white;
    border: none;
    padding: 15px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.ekdin-filter-panel .btn-clear-filter {
    width: 100%;
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 12px;
    text-transform: uppercase;
}

.ekdin-filter-panel .btn-apply-filter:hover {
    background: #501414;
}

/* ==========================================================================
   RESPONSIVE STYLES (Boilerplate)
   Project: Bridal Rental E-commerce
   ========================================================================== */

/* 1. Extra Large Devices (Large Desktops, 1400px and up) */
@media (max-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* 2. Large Devices (Desktops, 992px to 1200px) */
@media (max-width: 1199.98px) {
    .product-title {
        font-size: 1.4rem;
    }

    .filter-card {
        padding: 1.5rem  !important;
    }
}

/* 3. Medium Devices (Tablets, 768px to 991px) */
@media (max-width: 991.98px) {
    .page-title-sec {
        padding-left: 0;
    }

    /* Sidebar Fix: Yahan sidebar aksar stack ho jata hai */
    aside.col-lg-3 {
        margin-bottom: 3rem;
    }

    .sticky-top {
        position: relative  !important;
        top: 0  !important;
    }

    .product-gallery {
        margin-bottom: 2rem;
    }

    #main-header .nav-link {
        color: #4f3017;
    }
}

/* 4. Small Devices (Lanscape Phones, 576px to 767px) */
@media (max-width: 767.98px) {
    .about-banner-img {
    min-height: 70vh;
    margin-top: 70px;
}
    section {
        padding: 50px 0;
    }

    .display-6 {
        font-size: 1.8rem;
    }

    /* Booking buttons stack ho jayein mobile pe */
    .booking-tabs {
        flex-direction: column;
    }

    .booking-tabs .btn {
        width: 100%  !important;
    }

    h1.title-text span {
        font-size: 46px  !important;
        display: inline-block;
    }

    .page-title-sec {
        padding-top: 115px;
    }

    .accordion-button {
        font-weight: 700  !important;
        font-size: 16px;
    }

    /* .terms-title {
        transform: translate(70px, 35px);
    } */

    .terms-title .title-flower {
        position: absolute;
        left: -17%;
        top: -45%;
        width: 85px;
    }

    .title-image-txt {
        bottom: 5%;
        left: 30%;
    }

    .title-image-txt span {
        font-size: 25px;
    }
}

/* 5. Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575.98px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-title {
        font-size: 1rem;
    }

    .price-box {
        flex-direction: column;
        align-items: flex-start  !important;
        gap: 10px;
    }

    /* Thumbnails ko scrollable banana mobile pe */
    .thumb-strip {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .thumb {
        width: 60px;
        height: 80px;
        flex-shrink: 0;
    }

    /* =========================== */
    .our-story-vid video {
        object-fit: cover;
        width: 100%;
        height: auto;
        transform: rotate(-3deg) translate(0);
    }

    .story-title span.bold-text {
        font-size: 45px;
        transform: translateY(-12px);
    }
}

/* 6. Fix for Very Small Screens (below 350px) */
@media (max-width: 350px) {
    .btn-apply {
        font-size: 12px;
    }
}

/* =========== HOW TO RENTTTTTT */
.icon-img {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================== */
:root {
    --maroon: #701c1c;
    --beige: #f5f0e6;
}

.text-maroon {
    color: var(--maroon);
}

.bg-maroon {
    background-color: var(--maroon);
}

.btn-maroon {
    background-color: var(--maroon);
    color: white;
    transition: 0.3s all;
}

.btn-maroon:hover {
    background-color: #4d1515;
    color: white;
    transform: translateY(-2px);
}

.login-card {
    transition: all 0.3s ease;
}

/* Floating labels adjustment */
.form-floating>.form-control:focus {
    box-shadow: none;
    background-color: #fff  !important;
    border: 1px solid var(--maroon)  !important;
}

.btn-role {
    color: #666;
    transition: 0.3s;
}

.btn-role.active {
    background-color: var(--maroon)  !important;
    color: white  !important;
    box-shadow: 0 4px 10px rgba(107, 29, 29, 0.2);
}

.x-small {
    font-size: 12px;
}
/* ================== UPDATED CSS -- 05/06/2026*/

/* ------------------------ Latest  */
/* Color Core Variables mapping */
:root {
    --maroon: #701c1c;
    --beige: #f5f0e6;
}

/* Compliance Badge Animation */
.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #2ec4b6;
    border-radius: 50%;
    display: inline-block;
    animation: compliancePulse 2s infinite ease-in-out;
}

@keyframes compliancePulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

/* Luxury Card Core Structure */
.luxury-policy-card {
    border: 1px solid rgba(0, 0, 0, 0.02)  !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.luxury-policy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(107, 29, 29, 0.03)  !important;
}

.style-editorial-callout {
    background-color: #fbf9f4  !important;
    border-left: 3px solid var(--maroon)  !important;
}

/* Numbers Editorial Treatment */
.editorial-numeric {
    font-family: 'Prata', serif;
    font-size: 1.4rem;
    color: var(--maroon);
    opacity: 0.8;
}

/* Premium Side Navigation (Scrollspy UI) */
.premium-side-nav .nav-link {
    color: #777777;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 10px 15px;
    border-left: 2px solid #eeeeee;
    transition: all 0.3s ease;
    text-uppercase: uppercase;
    letter-spacing: 0.5px;
}

.premium-side-nav .nav-link:hover {
    color: var(--maroon);
    padding-left: 20px;
}

.premium-side-nav .nav-link.active {
    color: var(--maroon)  !important;
    background-color: transparent  !important;
    border-left-color: var(--maroon)  !important;
    font-weight: 700;
    padding-left: 22px;
}

/* Custom Dashed Bullet System */
.luxury-dash-list {
    list-style: none;
    padding-left: 0;
}

.luxury-dash-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}

.luxury-dash-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--maroon);
    opacity: 0.7;
}

/* Sub-cards inner view grid */
.sub-nested-card {
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: border 0.3s ease;
}

.luxury-policy-card:hover .sub-nested-card {
    border-color: rgba(107, 29, 29, 0.1);
}

/* Email Contact Link Interactions */
.luxury-email-link .icon-wrap {
    background-color: #f5f0e6;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.luxury-email-link .icon-wrap i {
    color: var(--maroon)  !important;
    transition: color 0.3s ease;
}

.luxury-email-link:hover .icon-wrap {
    background-color: var(--maroon);
    transform: rotate(15deg);
}

.luxury-email-link:hover .icon-wrap i {
    color: #ffffff  !important;
}

/* Helpers */
.x-small {
    font-size: 0.78rem;
}

.italic-text {
    font-style: italic;
}
.text-secondary {
    color: #4f3017 !important;
}

.text-muted {
    color: #4f3017 !important;
}
.about-env {
    width: 70%;
}
div:has(> .about-text){
    display: flex;
    align-items: center;
    justify-content: center;
}
div:has(> .about-env){
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-rentnow:hover {
    background-color :  #fff ; }
/* CSS for Premium Beige and Maroon Footer Component */

:root {
    --bg-beige: #f4ece1;
    --text-maroon: #581825;
    --accent-maroon-light: #6e2030;
    --text-muted: #6b5c55;
    --border-colour: rgba(88, 24, 37, 0.15);
    --white: #ffffff;
}

/* Main Footer Container */
.premium-footer {
    background-colour: var(--bg-beige);
    colour: var(--text-maroon);
    padding: 80px 0 40px 0;
    border-left: 20px solid var(--text-maroon); /* Left structural solid block border layout */
    border-top: 2px solid var(--text-maroon); /* Left structural solid block border layout */
}

.footer-wrap {
    padding-left: 5%;
    padding-right: 5%;
}

/* Newsletter Section Styles */
.newsletter-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.newsletter-desc {
    colour: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.5;
}

.newsletter-form .input-group {
    background-colour: var(--white);
    border: 1px solid rgba(88, 24, 37, 0.3);
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 4px 12px rgba(88, 24, 37, 0.03);
    transition: border-colour 0.3s ease;
}

.newsletter-form .input-group:focus-within {
    border-colour: var(--text-maroon);
}

.newsletter-form .form-control {
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 14px;
    colour: var(--text-maroon);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.newsletter-form .form-control::placeholder {
    colour: #a0928a;
}

.btn-subscribe {
    background-colour: var(--text-maroon);
    colour: var(--white);
    border-radius: 6px  !important;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: background-colour 0.2s ease;
}

.btn-subscribe:hover, 
.btn-subscribe:focus {
    background-colour: var(--accent-maroon-light);
    colour: var(--white);
}

.privacy-notice {
    font-size: 13px;
    colour: var(--text-muted);
}

.privacy-notice a {
    colour: var(--text-maroon);
    text-decoration: underline;
}

/* Grid Links Section Styles */
.footer-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #222;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links li a:hover {
    colour: var(--text-maroon);
    transform: translateX(3px);
}

/* Support Column styles */
.support-info {
    font-size: 14px;
    colour: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.4;
}

.highlight-text {
    font-weight: 500;
    colour: var(--text-maroon);
}

.copyright {
    font-size: 13px;
    colour: var(--text-muted);
}

/* Premium Branding Logo Accent */
.brand-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0.85;
    background: linear-gradient(135deg, var(--text-maroon), var(--accent-maroon-light));
    -webkit-background-clip: text;
    -webkit-text-fill-colour: transparent;
}

/* Divider & Region Selector at bottom */
.footer-bottom-bar {
    border-top: 1px solid var(--border-colour);
}.region-selector {
    display: inline-flex;
    align-items: center;
    background-colour: rgba(88, 24, 37, 0.04);
    border: 1px solid var(--border-colour);padding: 10px 20px;
    border-radius: 30px;
    font-size: 13.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.region-selector:hover {
    background-colour: rgba(88, 24, 37, 0.08);
    border-colour: var(--text-maroon);
}

.fs-xs {
    font-size: 11px;
}

/* Responsive breakpoint adjustments */
@media (max-width: 991.98px) {
    .premium-footer {
        padding: 60px 0 30px 0;
    }
    .section-newsletter {
        margin-bottom: 40px;
    }
    .footer-heading {
        margin-bottom: 16px;
        margin-top: 10px;
    }
}    
/*=========== RH CUSTOM TAB INSPO CSS*/
        /* Base structural wrappers */
        #rh-custom-tab-section {
            background-colour: #f7f6f3;
            /* Matches the warm minimal aesthetic */
            font-family: system-ui, -apple-system, sans-serif;
        }

        /* Fixed aspect ratio setup for the image container */
        #rh-custom-tab-section .rh-image-viewport {
            height: 550px;
            background-colour: #e5e5e5;
        }

        /* Handle absolute stacking for clean transitions */
        #rh-custom-tab-section .rh-tab-img {
            position: absolute;
            top: 0;
            left: 0;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.5s ease-in-out, transform 0.6s ease-out;
            transform: scale(1.03);
        }

        /* Hide/Show text components cleanly */
        #rh-custom-tab-section .rh-tab-desc {
            display: none;
            opacity: 0;
            transition: opacity 0.4s ease-in-out;
        }

        /* Active states handled via JS injection */
        #rh-custom-tab-section .rh-tab-img.rh-active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }

        #rh-custom-tab-section .rh-tab-desc.rh-active {
            display: block;
            opacity: 1;
        }

        /* Navigation trigger styles */
        #rh-custom-tab-section .rh-trigger-item {
            cursor: pointer;
            colour: #8c8c8c;
            transition: colour 0.3s ease, padding-left 0.3s ease;
        }

        #rh-custom-tab-section .rh-trigger-item h4 {
            font-size: 1.35rem;
        }

        /* Active and Hover States for bottom selectors */
        #rh-custom-tab-section .rh-trigger-item:hover,
        #rh-custom-tab-section .rh-trigger-item.rh-active {
            colour: #4f3017;
            padding-left: 8px;
            /* Subtle layout shift on interaction */
        }
        /*=======================*/ 
        /*=============== COMMUNITY TITLE SECSTION CSS */
.page-title-sec{

    background:#701d14;
}

.community-banner{

    max-width:1400px;
    margin:auto;
}

.community-heading{

    height:260px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.title-text{

    color:#fff;
    text-align:center;
}

.title-text .italic-text{

    font-size:70px;
    font-style:italic;
    font-family:'Cormorant Garamond',serif;
    line-height:1;
}

.title-text .bold-text{

    font-size:74px;
    text-transform:uppercase;
    line-height:.9;
}

.community-strip{

    display:flex;
    height:165px;
    overflow:hidden;
}

.gallery-item{

    flex:1;
    overflow:hidden;
    position:relative;
}

.gallery-item img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s;
}

.gallery-item:hover img{

    transform:scale(1.08);
}
@media(max-width:991px){

.community-heading{

    height:180px;
}

.community-strip{

    overflow-x:auto;
    height:110px;
}

.gallery-item{

    min-width:120px;
}

.title-text .italic-text{

    font-size:48px;
}

.title-text .bold-text{

    font-size:52px;
}

}
/*============== CART SIDEBAR CSS =========*/
.cart-offcanvas{

    width:430px ;

    border-left:none;

    background:#fcfbf7;

    box-shadow:-15px 0 40px rgba(0,0,0,.12);
}

.cart-offcanvas .offcanvas-header{

    padding:22px 25px;

    border-bottom:1px solid #ececec;

    background:#fff;
}

.cart-offcanvas .offcanvas-title{

    font-weight:700;
}

.cart-offcanvas .offcanvas-body{

    padding:35px;

    display:flex;

    align-items:center;

    justify-content:center;
}

.cart-placeholder{

    text-align:center;
}

.cart-placeholder i{

    color:#7b2116;
}

.cart-placeholder h3{

    margin-bottom:10px;

    font-weight:700;
}

.cart-placeholder p{

    margin-bottom:25px;
}

.offcanvas-backdrop.show{

    opacity:.45;
}

@media(max-width:768px){

.cart-offcanvas{

    width:100% !important;
}

}
 /* =========================================================
   DZ RSVP SECTION
   Unique classes - safe to use with existing website
   ========================================================= */

    .dz-rsvp-section {
        position: relative;
        width: 100%;
        min-height: 560px;
        height: 100vh;
        max-height: 780px;

        background-image: url('images/c3.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;

        overflow: hidden;
        display: flex;
        align-items: stretch;
    }

    /* Dark cinematic overlay */
    .dz-rsvp-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;

        background:
            linear-gradient(to bottom,
                rgba(0, 0, 0, 0.08) 0%,
                rgba(0, 0, 0, 0.04) 45%,
                rgba(0, 0, 0, 0.32) 100%);
    }

    /* Content wrapper */
    .dz-rsvp-content {
        position: relative;
        z-index: 2;

        width: 100%;
        padding-bottom: 52px;

        color: #ffffff;
    }

    /* RSVP Heading */
    .dz-rsvp-title {
        margin: 0 0 7px;

        color: #ffffff;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 19px;
        font-weight: 400;
        line-height: 1.2;

        letter-spacing: -0.2px;
    }

    /* Subtitle */
    .dz-rsvp-subtitle {
        margin: 0 0 17px;

        color: rgba(255, 255, 255, 0.92);

        font-family: Arial, Helvetica, sans-serif;
        font-size: 9px;
        font-weight: 400;
        line-height: 1.5;

        letter-spacing: 0.1px;
    }

    /* Shop Button */
    .dz-rsvp-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        min-width: 48px;
        height: 24px;
        padding: 0 8px;

        color: #ffffff !important;
        background: rgba(0, 0, 0, 0.45);

        border: 1px solid rgba(255, 255, 255, 0.65);

        font-family: Arial, Helvetica, sans-serif;
        font-size: 6.5px;
        font-weight: 500;
        line-height: 1;
        text-decoration: none;
        text-transform: uppercase;

        transition:
            background-color 0.3s ease,
            border-color 0.3s ease,
            transform 0.3s ease;
    }

    .dz-rsvp-button:hover {
        color: #ffffff !important;
        background: rgba(0, 0, 0, 0.75);
        border-color: #ffffff;

        transform: translateY(-2px);
    }


    /* =========================================================
   TABLET
   ========================================================= */

    @media (max-width: 991.98px) {

        .dz-rsvp-section {
            min-height: 520px;
            height: 75vh;

            background-position: center center;
        }

        .dz-rsvp-content {
            padding-bottom: 45px;
        }

        .dz-rsvp-title {
            font-size: 21px;
        }

        .dz-rsvp-subtitle {
            font-size: 10px;
        }
    }


    /* =========================================================
   MOBILE
   ========================================================= */

    @media (max-width: 575.98px) {

        .dz-rsvp-section {
            min-height: 600px;
            height: 90vh;

            background-position: 52% center;
        }

        .dz-rsvp-content {
            padding: 0 20px 40px;
        }

        .dz-rsvp-title {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .dz-rsvp-subtitle {
            font-size: 9px;
            margin-bottom: 16px;
        }

        .dz-rsvp-button {
            min-width: 52px;
            height: 25px;
            font-size: 7px;
        }
    }