/* ============================================================
   AYLAAM ATELIER — Global Stylesheet
   Colors: #ebeae7 (bg), #222220 (font)
   Fonts: Brown Sugar (h1), The Seasons (h2-h3), Garet (body)
   ============================================================ */

/* Google Fonts fallbacks — load custom fonts via @font-face below */
/* @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap'); */

/* ---- Custom Font Faces ---- */
/* 
  Place your font files in css/fonts/ folder:
  - BrownSugar.woff2       (main headings H1)
  - TheSeasons.woff2       (sub headings H2, H3)
  - Garet-Regular.woff2    (body text)
  - Garet-Bold.woff2       (bold body)
*/
@font-face {
    font-family: 'The Seasons';
    /* src: url('fonts/TheSeasonsRegular.woff2') format('woff2'),
    url('fonts/The Seasons Regular.woff') format('woff'), */
    src: url('fonts/The Seasons Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Garet-Regular';
    src: url('fonts/Garet-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Garet-Bold';
    src: url('fonts/Garet-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ---- CSS Variables ---- */
:root {
    --bg: #ebeae7;
    --dark: #222220;
    --dark-80: rgba(34, 34, 32, 0.8);
    --dark-60: rgba(34, 34, 32, 0.6);
    --dark-20: rgba(34, 34, 32, 0.2);
    --dark-10: rgba(34, 34, 32, 0.1);
    --white: #ffffff;
    --white-80: rgba(255, 255, 255, 0.8);
    --font-heading: 'The Seasons';
    --font-subheading: 'The Seasons';
    --font-body: 'Garet-Regular';
    --font-body-bold: 'Garet-Bold';
    --nav-height: 70px;
    --topbar-height: 48px;
    --transition: 0.3s ease;
    --shadow: 0 4px 30px rgba(34, 34, 32, 0.12);
    --shadow-hover: 0 12px 50px rgba(34, 34, 32, 0.22);
}

/* ---- Performance Optimization ---- */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Use GPU acceleration for smooth animations */
*[style*="transform"],
.collection-card,
.btn,
.reveal,
.modal-card,
.gallery-item {
    backface-visibility: hidden;
    perspective: 1000px;
    transform: translateZ(0);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    /*background-color: var(--bg);*/
    background: linear-gradient(180deg, #f8f6f0 100%, #ebeae7 100%);
    color: var(--dark);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    /* margin-bottom: 5px; */
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--transition);
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

/* ---- Typography ---- */
h1 {
    font-family: var(--font-heading);
    font-weight: normal;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

h2,
h3 {
    font-family: var(--font-subheading);
    font-weight: normal;
    line-height: 1.2;
}

h4,
h5,
h6 {
    font-family: var(--font-body);
    font-weight: 700;
}

p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--dark-80);
}

/* ---- Utility ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-center {
    text-align: center;
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    font-family: var(--font-subheading);
    margin-bottom: 15px;
}



.divider {
    width: 60px;
    height: 1px;
    background: black;
    margin: 15px auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 40px;
    border: 1px solid currentColor;
    cursor: pointer;
    transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
    background: transparent;
    will-change: transform, background, color;
}

.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 25px;
    background: rgba(177 171 171);
    color: #2b2b2b;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
    will-change: transform, box-shadow;
}

.btn-light:hover {
    transform: translateY(-2px);
    background: var(--white-80);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.btn-dark {
    color: var(--dark);
    border-color: var(--dark);
}

.btn-dark:hover {
    background: var(--dark);
    color: var(--white);
    opacity: 1;
}

.btn:active {
    transform: scale(0.97);
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-social svg.social-icon {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    transition: transform var(--transition);
}

.btn-social:hover svg.social-icon {
    transform: scale(1.15) rotate(8deg);
}

/* ==========================================
   HERO WRAPPER
========================================== */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1);
    z-index: 2;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(34, 34, 32, 0.75) 0%, rgba(34, 34, 32, 0.3) 50%, rgba(34, 34, 32, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    color: white;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding-bottom: 15vh;
    position: relative;
    z-index: 3;
}

/* Hero Heading */
.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: -10px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
    animation: fadeUp 1s ease both;
    font-family: var(--font-subheading);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.0rem;
    /* letter-spacing: 0.10em; */
    color: var(--white-80);
    /*margin-bottom: 24px;*/
    margin-bottom: 20px;
    margin-top: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    animation: fadeUp 1s ease 0.2s both;
}

.hero-content .btn {
    animation: fadeUp 1s ease 0.4s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   TOP BAR — PREMIUM STYLE
============================================================ */
.topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 2px solid rgba(255, 255, 255, 0.12);
    z-index: 1100;
}

/* Container */
.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* ============================================================
   SOCIAL ICONS
============================================================ */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
}

.nav-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-socials svg {
    width: 14px;
    height: 14px;
    fill: var(--white);
    transition: all 0.3s ease;
}

.nav-socials a:hover {
    opacity: 0.7;
}

.nav-socials a:hover svg {
    transform: scale(1.15);
}

/* ============================================================
   CONTACT INFO
============================================================ */
.topbar-contact {
    display: flex;
    align-items: center;
    gap: 28px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body-bold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    /* text-transform: uppercase; */

    color: rgba(255, 255, 255, 0.88);
    transition: opacity 0.3s ease;
}

.topbar-item:hover {
    opacity: 1;
    color: var(--white);
}

/* .topbar-item svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.8;
} */

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--nav-height);
    background: transparent;
    transition: all 0.4s ease;
    border-bottom: none;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(34, 34, 32, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-bottom: none;
    transition: top 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-logo img {
    height: auto;
    max-height: 120px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    transform: none;
    transform-origin: left center;
    transition: transform 0.25s ease;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    font-family: var(--font-body-bold);
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    font-family: var(--font-body-bold);
    font-size: 0.72rem;
    font-weight: 700;
    /* letter-spacing: 0.18em; */
    text-transform: uppercase;
    color: var(--white-80);
    padding: 5px 0;
    transition: opacity var(--transition);
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width var(--transition);
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
    width: 100%;
}

.nav-links>li>a:hover {
    opacity: 1;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg);
    border: 1px solid var(--dark-10);
    min-width: 180px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: all var(--transition);
    box-shadow: var(--shadow);
    z-index: 200;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    transition: background var(--transition), padding-left var(--transition);
}

.dropdown li a:hover {
    background: var(--dark-10);
    padding-left: 30px;
    opacity: 1;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ============================================================
   ABOUT FULL GRID (About Us page)
   ============================================================ */
.about-full-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.05fr);
    gap: 38px;
    max-width: 900px;
    margin: 0 auto 60px auto;
    align-items: center;
}

.about-full-grid:last-of-type {
    margin-bottom: 0;
}

.about-img-wrapper {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
    margin: 0 auto;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
    transition: transform 0.7s ease, filter 0.7s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.03);
    filter: brightness(1.02);
}

.about-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    max-width: 620px;
}

.about-text-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 16px;
    letter-spacing: 0.12em;
    /* text-transform: uppercase; */
    color: var(--dark);
    position: relative;
}

/* .about-text-content h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: var(--dark);
  border-radius: 999px;
  margin-top: 14px;
} */

.about-text-content .divider {
    margin: 0 auto 24px;
}

.about-text-content p {
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-text-content p strong {
    font-weight: 700;
}

@media (max-width: 900px) {
    .about-full-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }

    .about-img-wrapper img {
        position: static;
        height: auto;
        aspect-ratio: 4/5;
    }
}

/* ============================================================
   ABOUT SECTION (Home page preview)
   ============================================================ */
.about-preview {
    /* background: var(--bg); */
    background: linear-gradient(180deg, #f8f6f0 100%, #ebeae7 100%);
}




.about-preview .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}


/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
    background: linear-gradient(180deg, #f8f6f0 100%, #ebeae7 100%);
}

.reviews-headline {
    max-width: 720px;
    margin: 0 auto 35px auto;
    text-align: center;
}

.reviews-headline .section-label {
    display: inline-block;
    font-family: var(--font-body-bold);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #7b6c56;
    margin-bottom: 12px;
}

.reviews-headline h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    margin-bottom: 18px;
    color: var(--dark);
    font-family: var(--font-subheading);
}

.reviews-headline p {
    max-width: 640px;
    margin: 0 auto;
    color: rgba(34, 34, 32, 0.74);
    line-height: 1.8;
}

.reviews-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.reviews-slider-wrapper::before,
.reviews-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.reviews-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg) 0%, rgba(235, 234, 231, 0.01) 100%);
}

.reviews-slider-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg) 0%, rgba(235, 234, 231, 0.01) 100%);
}

.reviews-slider {
    position: relative;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    padding: 10px 4px 18px 4px;
    scrollbar-width: auto;
    scrollbar-color: #b29074 rgba(34, 34, 32, 0.08);
}

.reviews-slider.grabbing {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.reviews-slider::-webkit-scrollbar {
    height: 8px;
}

.reviews-slider::-webkit-scrollbar-track {
    background: rgba(34, 34, 32, 0.08);
    border-radius: 10px;
    margin: 0 40px;
}

.reviews-slider::-webkit-scrollbar-thumb {
    background: #b29074;
    border-radius: 10px;
    transition: background 0.3s ease, height 0.3s ease;
}

.reviews-slider::-webkit-scrollbar-thumb:hover {
    background: #8e6f56;
}

.reviews-carousel-track {
    display: flex;
    gap: 24px;
    align-items: stretch;
    width: max-content;
}

.review-card {
    scroll-snap-align: start;
    flex: 0 0 340px;
    width: 340px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(34, 34, 32, 0.08);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 10px 30px rgba(34, 34, 32, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 40px rgba(34, 34, 32, 0.14);
    border-color: rgba(34, 34, 32, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b29074 0%, #ece1d7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #332c24;
    font-family: var(--font-body-bold);
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.review-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.review-item {
    font-size: 0.74rem;
    font-weight: 500;
    color: #b29074;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 0;
}

.review-item i {
    font-size: 0.68rem;
    opacity: 0.85;
}

.review-stars {
    color: #bf9126;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(34, 34, 32, 0.82);
    margin-bottom: 0;
    min-height: 56px;
}

@media (max-width: 980px) {
    .review-card {
        flex: 0 0 300px;
        width: 300px;
    }
}

@media (max-width: 760px) {
    .reviews-headline h2 {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .reviews-slider-wrapper::before,
    .reviews-slider-wrapper::after {
        width: 60px;
    }

    .reviews-carousel-track {
        gap: 18px;
    }

    .review-card {
        flex: 0 0 280px;
        width: 280px;
        padding: 22px 20px;
    }
}

@media (max-width: 520px) {
    .reviews-headline p {
        font-size: 0.94rem;
    }

    .review-card {
        flex: 0 0 260px;
        width: 260px;
        padding: 20px;
    }

    .review-header {
        gap: 12px;
    }

    .review-avatar {
        width: 48px;
        height: 48px;
        font-size: 0.95rem;
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: clamp(2.2rem, 8vw, 3rem);
    font-family: var(--font-subheading);
    margin-bottom: 35px;
}

.about-text p {
    margin-bottom: 16px;
    font-size: clamp(0.9rem, 4vw, 0.95rem);
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
    line-height: 1.3;
    font-family: var(--font-body);
}

.about-text em {
    font-style: normal;
    font-weight: 600;
    color: var(--black);
    font-family: var(--font-body-bold);
}

.about-text .btn {
    display: none;
}

.about-image {
    width: 100%;
    max-width: 450px;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

/* Image placeholder */
.img-placeholder {
    width: 100%;
    background: var(--dark-10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-60);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.img-placeholder.tall {
    aspect-ratio: 3/4;
}

.img-placeholder.wide {
    aspect-ratio: 4/3;
}

/* ============================================================
   IMAGE LOADING OPTIMIZATIONS (SKELETON & FADE-IN)
   ============================================================ */

/* Skeleton Loading Background for Image Containers */
.about-image,
.collection-card,
.gallery-item,
.modal-main-image-wrapper {
    background: linear-gradient(90deg, #dfddd6 25%, #e8e6df 50%, #dfddd6 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 2s infinite ease-in-out;
    border-radius: inherit;
    /* Inherit border radius from container */
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Remove skeleton once child image is loaded */
.child-loaded {
    background: transparent !important;
    animation: none !important;
}

/* Smooth Fade-in for Images */
img.lazy {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

img.loaded {
    opacity: 1;
}

/* Fallback for native lazy loading without JS */
img[loading="lazy"] {
    transition: opacity 0.5s ease-out;
}

.img-placeholder.square {
    aspect-ratio: 1/1;
}

/* ============================================================
   COLLECTION SECTION (Home page preview)
   ============================================================ */
.collection-preview {
    /* background: var(--bg); */
    background: linear-gradient(180deg, #f8f6f0 100%, #ebeae7 100%);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 60px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.collection-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.collection-card img,
.collection-card .img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backface-visibility: hidden;
    transform: translateZ(0) scale(1);
    will-change: transform;
}

.collection-card {
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.collection-card:hover {
    transform: translateY(-3px);
}

.collection-card:hover img,
.collection-card:hover .img-placeholder {
    animation: none;
    transform: scale(1.10) translateZ(0);
}

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px 24px;
}

.collection-card-title {
    color: var(--white);
    font-family: var(--font-subheading);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    text-align: center;
    /* font-family: var(--font-body); */
}

/* .collection-card-title strong {
  font-family: var(--font-heading);
  font-weight: normal;
  font-style: italic;
} */

.collection-cta {
    margin-top: 50px;
    text-align: center;
}

/* ============================================================
   PAGE HERO (Subpages)
   ============================================================ */
.page-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
    /* position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  z-index: 1;
  animation: none; */
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.page-hero-content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    text-align: center;
    /* Keep hero content centered but constrain width so descriptive text doesn't wrap early */
    width: auto;
    max-width: 1100px;
    padding: 0 24px;
}

/* Subpage hero description (used on about/collection/contact pages) */
.page-hero-desc {
    display: block;
    margin: 10px auto 0;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    max-width: 900px;
    line-height: 1.4;
    color: var(--white-80);
    font-family: var(--font-body);
    text-align: center;
    white-space: normal;
}

.page-hero-subtitle {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.page-hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d8b77d;
}

.page-hero-content h1 {
    font-family: var(--font-subheading);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.page-hero-breadcrumbs {
    font-family: var(--font-body-bold);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.page-hero-breadcrumbs a {
    color: var(--white);
    transition: opacity var(--transition);
}

.page-hero-breadcrumbs a:hover {
    opacity: 0.7;
}

.page-hero-breadcrumbs i {
    font-size: 0.6rem;
}

/* Removed max-width restriction for about-full container to ensure size consistency */


.about-values {
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.about-values h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 30px;
    letter-spacing: 0.08em;
    margin-top: -10px;
    /* text-transform: uppercase; */
}

.about-values h2.reveal.revealed {
    animation: slideFadeUp 0.9s ease both;
}

.about-values .divider {
    width: 72px;
    height: 3px;
    margin: 0 auto 38px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    opacity: 0;
}

.about-values h2.reveal.revealed+.divider {
    opacity: 1;
    animation: growLine 0.7s ease 0.18s both;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-item.reveal {
    opacity: 0;
    transform: translateY(20px);
}

.value-item.reveal.revealed {
    animation: popIn 0.8s ease both;
}

.value-item.reveal:nth-child(1).revealed {
    animation-delay: 0.2s;
}

.value-item.reveal:nth-child(2).revealed {
    animation-delay: 0.35s;
}

.value-item.reveal:nth-child(3).revealed {
    animation-delay: 0.5s;
}

@keyframes slideFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes growLine {
    from {
        transform: scaleX(0);
        opacity: 0;
    }

    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.value-item h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.value-item p {
    color: var(--white-80);
    font-size: 0.88rem;
}

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.collection-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--dark-20);
}

.tab-btn {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 36px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    color: var(--dark-60);
    transition: all var(--transition);
    margin-bottom: -1px;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--dark);
    border-bottom-color: var(--dark);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img,
.gallery-item .img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.gallery-item:hover img,
.gallery-item:hover .img-placeholder {
    animation: none;
    transform: scale(1.08) translateZ(0);
}

/* How To Order Section */
.how-to-order {
    background: var(--bg);
}

.how-to-order-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.order-col h3 {
    font-family: var(--font-subheading);
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.order-col p {
    font-size: 1.0rem;
    line-height: 1.6;
    color: var(--dark-80);
}

.order-col p strong {
    color: var(--dark);
}

.order-bottom-info {
    text-align: center;
    margin-top: 40px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--dark);
}

.order-bottom-info strong {
    font-family: var(--font-body-bold);
}

/* ============================================================
   CONTACT / APPOINTMENT PAGE
   ============================================================ */
.contact-section {
    background: transparent;
}

.contact-page-wrapper {
    background: url('../images/Contact%20Us%20page%20picture.png') no-repeat center center / cover;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-detail svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 0;
    stroke: #a89474;
    fill: none;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.contact-detail:hover svg {
    transform: scale(1.15) translateY(-2px);
    stroke: var(--dark);
}

.contact-detail-text {
    font-family: var(--font-body);
    font-size: 1.0rem;
    color: var(--dark);
}

.contact-detail-label {
    font-size: 1.0rem;
    font-weight: 700;
    /* letter-spacing: 0.18em; */
    /* text-transform: uppercase; */
    color: var(--dark-60);
    display: block;
    /* margin-bottom: 2px;*/
}

/* Form */
.appointment-form {
    background: var(--white);
    padding: 45px 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    max-width: 720px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.appointment-form:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.appointment-form h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.appointment-form>p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    color: var(--dark-60);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dark-60);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #fcfcfc;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--dark);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23222220' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.form-submit, .btn-appointment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: #222220;
    color: #f4f2eb;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(34, 34, 32, 0.15);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.form-submit {
    width: 100%;
    margin-top: 15px;
}

.btn-appointment {
    display: inline-flex;
}

.form-submit i, .btn-appointment i {
    font-size: 1rem;
    color: #d8c3ae;
}

.form-submit:hover, .btn-appointment:hover {
    background: #333330;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(34, 34, 32, 0.22);
}

.form-submit:active, .btn-appointment:active {
    transform: translateY(0) scale(0.99);
}

.btn-social {
    background: transparent !important;
    border: 1px solid var(--dark-20) !important;
    color: var(--dark) !important;
    box-shadow: none !important;
    border-radius: 30px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex;
    align-items: center;
}

.btn-social:hover {
    background: var(--dark) !important;
    color: var(--white) !important;
    border-color: var(--dark) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.btn-social:hover svg,
.btn-social:hover i {
    fill: var(--white) !important;
    stroke: var(--white) !important;
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px;
    background: var(--dark-10);
    margin-top: 16px;
}

.form-success p {
    color: var(--dark);
    font-size: 0.9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: rgba(34, 34, 32, 0.92); /*url('../images/footer/Footer%20image.jpg');*/
    /* no-repeat center center / cover */
    color: var(--white);
    padding: 70px 0 30px;
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand .footer-logo img {
    height: auto;
    max-height: 170px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    transform: none;
    transform-origin: left center;
    transition: transform 0.25s ease;
    margin-top: -45px;
    margin-left: -15px;
}

.footer-brand .footer-logo:hover img {
    transform: scale(1.03);
    opacity: 1;
}

.footer-brand .brand-name {
    font-family: var(--font-subheading);
    font-size: 2rem;
    /* letter-spacing: 0.12em; */
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.footer-brand .brand-sub {
    font-family: var(--font-body);
    font-size: 1.0 rem;
    /* letter-spacing: 0.35em; */
    text-transform: uppercase;
    color: var(--white-80);
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--white-80);
    font-size: 0.88rem;
    font-family: var(--font-body);
    line-height: 1.7;
    max-width: 260px;
    margin-top: -30px;
}

.footer-col h4 {
    font-family: var(--font-subheading);
    /*font-size: 0.7rem;*/
    font-weight: 700;
    /* letter-spacing: 0.2em; */
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-family: var(--font-body-bold);
    font-size: 0.85rem;
    color: var(--white-80);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    opacity: 1;
}

.footer-col address {
    font-style: normal;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--white-80);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--white-80);
}

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */
@media (max-width: 900px) {
    .navbar.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(34, 34, 32, 0.98);
        /* Solid background to prevent mobile scrolling lag */
    }

    .nav-toggle {
        display: flex;
        z-index: 150;
    }

    .nav-logo img {
        max-height: 60px;
    }

    .hero-wrapper {
        min-height: 70vh;
    }

    .hero {
        padding-bottom: 12vh;
        align-items: center;
    }

    /* .nav-socials removed display: none so they show in the topbar */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(235, 234, 231, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: flex-start;
        gap: 0gap;
        padding: 100px 40px 40px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 120;
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links>li {
        width: 100%;
        border-bottom: 1px solid var(--dark-10);
    }

    .nav-links>li>a {
        display: block;
        padding: 16px 0;
        font-size: 0.8rem;
        color: var(--dark) !important;
    }

    .nav-links>li>a::after {
        display: none;
    }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        background: transparent;
    }

    .dropdown li a {
        padding: 10px 0;
        font-size: 0.75rem;
    }

    .dropdown li a:hover {
        padding-left: 8px;
        background: transparent;
    }

    /* Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(34, 34, 32, 0.5);
        z-index: 110;
    }

    .nav-overlay.show {
        display: block;
    }
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 900px) {
    .container {
        padding: 0 24px;
    }

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

    .about-preview .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-to-order-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }


    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .topbar .container {
        justify-content: space-between;
    }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .topbar-contact .topbar-item:nth-child(2) {
        display: none;
    }

    .container {
        width: 100%;
        max-width: 1100px;
        padding: 0 16px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .appointment-form {
        padding: 30px 24px;
    }

    .collection-tabs {
        flex-wrap: "";
        /* wrap */
    }

    .tab-btn {
        padding: 12px 20px;
    }

    /* ============================================================
   SCROLL REVEAL
   ============================================================ */
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile fix: ensure subpage hero content uses most of the viewport width
   so description doesn't wrap into many short lines */
@media (max-width: 600px) {
    .page-hero-content {
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 32px);
        max-width: none;
        padding: 0 16px;
        bottom: 8%;
        text-align: center;
    }

    .page-hero-desc {
        max-width: 520px;
        font-size: 1rem;
        line-height: 1.45;
        margin: 8px auto 0;
    }
}

/* ============================================================
   PRODUCT DETAIL MODAL & HOVER EFFECTS
   ============================================================ */

/* Gallery Item Hover Overlay */
.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 4px;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(34, 34, 32, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.32s ease;
    z-index: 2;
    will-change: opacity;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.view-details-btn {
    color: var(--white);
    font-family: var(--font-body-bold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid var(--white);
    padding: 11px 22px;
    transform: translateY(12px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
    background: transparent;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.gallery-item:hover .view-details-btn {
    transform: translateY(0);
}

.view-details-btn:hover {
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Modal Overlay */
.product-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(34, 34, 32, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    will-change: opacity, visibility;
}

.product-modal-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Modal Card */
.product-modal-card {
    background-color: #fff;
    color: var(--dark);
    width: 100%;
    max-width: 1100px;
    height: auto;
    max-height: 92vh;
    border-radius: 12px;
    border: 1px solid rgba(34, 34, 32, 0.12);
    box-shadow: 0 24px 80px rgba(34, 34, 32, 0.25);
    position: relative;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(26px) scale(0.98);
    transition: opacity 0.28s ease, transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Scrollbar styling for modal card */
.product-modal-card::-webkit-scrollbar {
    width: 6px;
}

.product-modal-card::-webkit-scrollbar-track {
    background: transparent;
}

.product-modal-card::-webkit-scrollbar-thumb {
    background-color: var(--dark-20);
    border-radius: 8px;
}

.product-modal-card::-webkit-scrollbar-thumb:hover {
    background-color: var(--dark-60);
}

.product-modal-overlay.open .product-modal-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Close Button */
.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(235, 234, 231, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(34, 34, 32, 0.1);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    opacity: 1;
    background: var(--white);
    transform: scale(1.08) rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Modal Content Grid */
.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    /* Balanced columns, image side slightly narrower */
    height: auto;
    min-height: 100%;
}

/* Left: Slider Container */
.modal-slider-container {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100%;
    background: #e2e1dd;
    justify-content: center;
    padding: 36px;
    border-right: 1px solid rgba(34, 34, 32, 0.08);
}

.modal-main-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    /* Cap image size so it is normal and elegant */
    margin: 0 auto;
    /* Center-aligned */
    aspect-ratio: 3/4;
    overflow: visible;
    background: #dbdad6;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(34, 34, 32, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.12);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    z-index: 4;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(34, 34, 32, 0.1);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
}

.slider-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.slider-arrow.prev {
    left: 16px;
}

.slider-arrow.next {
    right: 16px;
}

.slider-arrow i {
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }
}

/* Thumbnails */
.modal-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 2px;
    width: 100%;
    max-width: 380px;
    /* Matches main image max-width */
    margin-left: auto;
    margin-right: auto;
}

.modal-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.modal-thumbnails::-webkit-scrollbar-thumb {
    background-color: var(--dark-20);
    border-radius: 4px;
}

.modal-thumbnail-img {
    width: 54px;
    height: 72px;
    /* 3:4 aspect ratio, vertical */
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    opacity: 0.55;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.modal-thumbnail-img:hover {
    opacity: 1;
}

.modal-thumbnail-img.active {
    opacity: 1;
    border-color: var(--dark);
    transform: scale(1.02);
}

/* Right: Details Container */
.modal-details-container {
    padding: 44px;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100%;
}

/* Scrollbar styling for details side (deprecated, card scroll handles it) */
.modal-details-container::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.modal-details-container::-webkit-scrollbar-track {
    background: transparent;
}

.modal-details-container::-webkit-scrollbar-thumb {
    background-color: var(--dark-10);
    border-radius: 8px;
}

.modal-details-container::-webkit-scrollbar-thumb:hover {
    background-color: var(--dark-20);
}

.modal-tag {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--dark-60);
    margin-bottom: 10px;
    display: block;
}

.modal-title {
    font-family: var(--font-subheading);
    font-size: 1.85rem;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 8px;
}

.modal-divider {
    width: 50px;
    height: 1px;
    background-color: var(--dark-20);
    margin: 12px 0 20px;
}

.modal-description {
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.75;
    color: var(--dark-80);
    margin-bottom: 28px;
}

/* Specifications */
.modal-specs {
    margin-bottom: 32px;
}

.modal-specs h3 {
    font-family: var(--font-body-bold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--dark-10);
}

.specs-list {
    display: grid;
    grid-template-columns: minmax(140px, auto) minmax(180px, 1fr);
    gap: 12px 24px;
    list-style: none;
    padding: 0;
    align-items: start;
}

.specs-list li {
    font-size: 0.8rem;
    display: contents;
    line-height: 1.6;
}

.specs-list li strong {
    font-family: var(--font-body-bold);
    font-weight: 700;
    color: var(--dark);
    text-align: left;
    white-space: nowrap;
}

.specs-list li span {
    font-family: var(--font-body);
    color: var(--dark-80);
    text-align: left;
    word-break: break-word;
}

/* Actions */
.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 15px;
}

.modal-action-btn {
    width: 100%;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.whatsapp-btn {
    background: #222220;
    color: #ebeae7;
    border-color: #222220;
}

.whatsapp-btn:hover {
    background: #25d366;
    border-color: #25d366;
    color: var(--white);
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

/* Scroll Lock on Body */
.body-scroll-lock {
    overflow: hidden !important;
    height: 100vh !important;
}

/* ============================================================
   RESPONSIVE MODAL
   ============================================================ */
@media (max-width: 900px) {
    .product-modal-overlay {
        padding: 0 !important;
        background: var(--white) !important;
        /* Premium clean backdrop on mobile */
    }

    .product-modal-card {
        width: 100% !important;
        max-width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        border: none !important;
        margin: 0 !important;
        overflow-y: auto !important;
        box-shadow: none !important;
        display: block !important;
        -webkit-overflow-scrolling: touch;
    }

    .modal-grid {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
        overflow-y: visible;
        display: block !important;
    }

    .modal-slider-container {
        padding: 40px 16px 16px !important;
        border-right: none;
        border-bottom: 1px solid rgba(34, 34, 32, 0.08);
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100% !important;
    }

    .modal-main-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        max-width: 440px !important;
        margin: 0 auto;
        aspect-ratio: 3/4;
        position: relative;
    }

    .modal-thumbnails {
        max-width: 100% !important;
        width: 100% !important;
        max-width: 440px !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-top: 14px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .modal-details-container {
        height: auto;
        max-height: none;
        overflow-y: visible;
        padding: 24px 20px 48px !important;
        max-width: 440px !important;
        margin: 0 auto !important;
    }

    .modal-close-btn {
        position: fixed !important;
        top: 16px !important;
        right: 16px !important;
        width: 42px !important;
        height: 42px !important;
        font-size: 1.1rem !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(34, 34, 32, 0.1) !important;
        z-index: 999999 !important;
        opacity: 1 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50% !important;
        color: var(--dark) !important;
    }

    .product-modal-card .slider-arrow {
        width: 34px !important;
        height: 34px !important;
        background: rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(4px) !important;
        -webkit-backdrop-filter: blur(4px) !important;
        border: 1px solid rgba(34, 34, 32, 0.08) !important;
        color: var(--dark) !important;
        font-size: 0.85rem !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
        opacity: 0.85 !important;
    }
}

/* ============================================================
   PERFORMANCE OPTIMIZED LAZY LOADING & SKELETON
   ============================================================ */
img.lazy {
    opacity: 0;
    transition: opacity 0.35s ease;
    will-change: opacity;
    backface-visibility: hidden;
}

img.lazy.loaded {
    opacity: 1;
    will-change: auto;
}

/* Fast skeleton/placeholder animation */
.gallery-item,
.about-image,
.collection-card {
    position: relative;
    background: linear-gradient(90deg, #f0f0f0 0%, #e8e8e8 50%, #f0f0f0 100%);
    background-size: 300% 100%;
    animation: fastShimmer 1.2s infinite linear;
    contain: layout style paint;
}

.gallery-item.child-loaded,
.about-image.child-loaded,
.collection-card img.loaded {
    animation: none;
    background: transparent;
}

/* Auto-zoom animation when loaded (similar to hero-bg zoom) */
.collection-card img.loaded,
.gallery-item.child-loaded img {
    animation: cardZoom 20s ease-in-out infinite alternate;
}

@keyframes cardZoom {
    0% {
        transform: scale(1) translateZ(0);
    }

    100% {
        transform: scale(1.06) translateZ(0);
    }
}

/* Ultra-fast shimmer for better perception of loading */
@keyframes fastShimmer {
    0% {
        background-position: 300% 0;
    }

    100% {
        background-position: -300% 0;
    }
}



/* ============================================================
   PREMIUM FULLSCREEN LIGHTBOX
   ============================================================ */
.fullscreen-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    will-change: opacity, visibility;
}

.fullscreen-lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Lightbox Toolbar */
.lightbox-toolbar {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 14px;
    z-index: 3010;
}

.lightbox-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lightbox-btn:hover {
    background: #ffffff;
    color: var(--dark);
    transform: scale(1.08);
}

/* Lightbox Arrows */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3005;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-arrow:hover {
    background: #ffffff;
    color: var(--dark);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-arrow.prev {
    left: 28px;
}

.lightbox-arrow.next {
    right: 28px;
}

/* Lightbox Content */
.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: default;
}

#lightboxMainImg {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    will-change: transform;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    user-select: none;
    -webkit-user-drag: none;
    cursor: zoom-in;
}

/* Zoomed & Grab/Grabbing states */
.fullscreen-lightbox.zoomed #lightboxMainImg {
    cursor: grab;
    transition: transform 0.2s ease-out;
    /* Smooth transition for double-click/button zoom */
}

.fullscreen-lightbox.grabbing #lightboxMainImg,
.fullscreen-lightbox.pinching #lightboxMainImg {
    cursor: grabbing;
    transition: none !important;
    /* Absolutely no transition during drag/pinch to prevent mobile lag */
}

.fullscreen-lightbox.zoomed .lightbox-arrow {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-arrow.prev {
        left: 14px;
    }

    .lightbox-arrow.next {
        right: 14px;
    }

    .lightbox-toolbar {
        top: 16px;
        right: 16px;
        gap: 10px;
    }

    .lightbox-btn {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    #lightboxMainImg {
        max-width: 95%;
        max-height: 80vh;
        cursor: default;
    }
}

/* ============================================================
   PATRON STORIES — Feedback Button, Modal & Rating Component
   ============================================================ */

/* Footer / Action row beneath slider */
.reviews-action-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
    text-align: center;
}

/* Slider Navigation Controls */
.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.reviews-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(34, 34, 32, 0.15);
    color: #222220;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.reviews-arrow-btn:hover {
    background: #222220;
    color: #f4f2eb;
    border-color: #222220;
    transform: scale(1.08);
}

.reviews-arrow-btn:active {
    transform: scale(0.95);
}

/* Pagination Dots */
.reviews-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(34, 34, 32, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.reviews-dot.active {
    background: var(--dark, #222220);
    transform: scale(1.25);
}

/* Give Feedback Button */
.btn-give-feedback {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #222220;
    color: #f4f2eb;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(34, 34, 32, 0.15);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.btn-give-feedback i {
    font-size: 1rem;
    color: #d8c3ae;
}

.btn-give-feedback:hover {
    background: #333330;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(34, 34, 32, 0.22);
}

.btn-give-feedback:active {
    transform: translateY(0) scale(0.99);
}

/* Modal Backdrop & Container */
.feedback-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.feedback-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.feedback-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 16, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.feedback-modal-card {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    transform: scale(0.94) translateY(12px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feedback-modal-overlay.active .feedback-modal-card {
    transform: scale(1) translateY(0);
}

/* Close Button */
.feedback-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f4f2eb;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222220;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.feedback-modal-close:hover {
    background: #e5e0d3;
    transform: rotate(90deg);
}

/* Modal Typography */
.feedback-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.feedback-modal-title {
    font-family: var(--font-heading, 'The Seasons', serif);
    font-size: 1.85rem;
    font-weight: 500;
    color: #222220;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feedback-modal-subtitle {
    font-size: 0.92rem;
    color: rgba(34, 34, 32, 0.65);
    margin: 0;
    line-height: 1.5;
}

/* Form Layout */
.feedback-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    text-align: left;
}

.feedback-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #222220;
    letter-spacing: 0.02em;
}

.feedback-label .required-star {
    color: #c0392b;
    margin-left: 2px;
}

.feedback-input,
.feedback-textarea {
    width: 100%;
    padding: 12px 16px;
    background: #fcfbf9;
    border: 1px solid rgba(34, 34, 32, 0.15);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.94rem;
    color: #222220;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
}

.feedback-input:focus,
.feedback-textarea:focus {
    border-color: #b29074;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(178, 144, 116, 0.18);
}

.feedback-textarea {
    resize: vertical;
    min-height: 95px;
    line-height: 1.5;
}

/* Star Rating Selector */
.star-rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 10px 0 20px 0;
}

.star-picker {
    display: flex;
    gap: 8px;
}

.star-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #d1cdcf;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.15s ease, transform 0.15s ease;
    line-height: 1;
    user-select: none;
}

.star-btn:hover,
.star-btn.selected {
    color: #bf9126;
    transform: scale(1.15);
}

.star-btn:focus-visible {
    outline: 2px solid #b29074;
    border-radius: 4px;
}

/* Field Errors */
.field-error {
    font-size: 0.82rem;
    color: #c0392b;
    margin-top: 4px;
    display: none;
}

.form-alert-error {
    background: rgba(192, 57, 43, 0.08);
    border: 1px solid rgba(192, 57, 43, 0.25);
    color: #c0392b;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.86rem;
    margin-bottom: 16px;
    display: none;
}

/* Full Width Submit Button */
.btn-submit-feedback {
    width: 100%;
    padding: 14px 20px;
    background: #222220;
    color: #f4f2eb;
    font-family: inherit;
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(34, 34, 32, 0.18);
}

.btn-submit-feedback:hover {
    background: #333330;
    transform: translateY(-1px);
}

.btn-submit-feedback:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Toast */
.feedback-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    background: #222220;
    color: #f4f2eb;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback-toast::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #bf9126;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
}

.feedback-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .feedback-modal-card {
        padding: 28px 20px;
        width: 95%;
        border-radius: 16px;
    }

    .feedback-modal-title {
        font-size: 1.55rem;
    }

    .star-btn {
        font-size: 1.75rem;
    }

    .btn-give-feedback {
        padding: 12px 22px;
        font-size: 0.9rem;
    }
}

/* ============================================================
   BRIDES OF AYLAAM - CLEAN MINIMALIST INTRO
   ============================================================ */
.brides-intro-section {
    padding: 40px 0 20px;
}

.brides-intro-clean {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 35px auto;
    padding: 10px 20px;
}

.brides-tagline {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--dark);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.brides-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-80);
    margin: 0 auto;
    max-width: 680px;
}

.brides-accent-line {
    width: 60px;
    height: 1px;
    background: rgba(191, 145, 38, 0.4);
    margin: 22px auto 0 auto;
}

@media (max-width: 768px) {
    .brides-intro-section {
        padding: 25px 0 15px;
    }

    .brides-intro-clean {
        margin-bottom: 25px;
        padding: 5px 15px;
    }

    .brides-tagline {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .brides-text {
        font-size: 0.96rem;
        line-height: 1.7;
    }
}