/* ===================================================
   FIONA CREATIONS — PREMIUM FASHION STYLESHEET
   Aesthetic: Luxury editorial · soft ivory · deep plum
=================================================== */

:root {
    --primary: #f8e1e4;
    --secondary: #5e2c3e;
    --accent: #d4a5a5;
    --text: #333333;
    --light: #ffffff;
    --ivory: #faf7f5;
    --plum-dark: #3d1a27;
    --plum-mid: #7a3a51;
    --blush: #f0cdd3;
    --gold: #c9a96e;
    --border: #ecdde0;
    --shadow-soft: 0 4px 24px rgba(94, 44, 62, 0.08);
    --shadow-card: 0 8px 32px rgba(94, 44, 62, 0.12);
    --radius: 4px;
    --radius-lg: 12px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--text);
    background: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 500;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
}

em {
    font-style: italic;
    color: inherit;
}

.section-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.6rem;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

/* =====================================================
   HEADER
===================================================== */
header {
    background: rgba(250, 247, 245, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
    transition: box-shadow var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-soft);
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 5%;
    max-width: 1440px;
    margin: 0 auto;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    margin-right: auto;
    flex-shrink: 0;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.04em;
}

.logo-sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: -1px;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.nav-link {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--secondary);
    background: var(--primary);
}

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

.dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dropdown-trigger i {
    font-size: 0.6rem;
    transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.6rem;
    min-width: 200px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 300;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
}

.dropdown-menu a i {
    color: var(--accent);
    font-size: 0.85rem;
    width: 16px;
}

.dropdown-menu a:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* Nav actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nav-icon-btn {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background var(--transition), color var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
}

.nav-icon-btn:hover {
    background: var(--primary);
    color: var(--secondary);
}

.wishlist-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--secondary);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.wishlist-count:empty,
.wishlist-count[data-count="0"] {
    display: none;
}

.btn-nav {
    font-size: 0.78rem;
    padding: 0.55rem 1.2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 210;
    order: -1;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-close-btn {
    display: none;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 1.4rem;
    color: var(--secondary);
    cursor: pointer;
    padding: 0.3rem;
}

/* Search bar */
.search-bar-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--ivory);
    border-top: 1px solid transparent;
}

.search-bar-wrapper.open {
    max-height: 80px;
    border-top-color: var(--border);
}

.search-bar-inner {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 0.8rem 5%;
}

.search-bar-inner i {
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.search-bar-inner input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
}

.search-bar-inner input::placeholder {
    color: var(--accent);
}

#searchClearBtn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.3rem;
    display: none;
}

#searchClearBtn.visible {
    display: block;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--secondary);
    color: var(--light);
    padding: 0.85rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all var(--transition);
    border: 2px solid var(--secondary);
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    background: var(--plum-dark);
    border-color: var(--plum-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--light);
    transform: translateY(-1px);
}

.btn-light {
    background: var(--light);
    color: var(--secondary);
    border-color: var(--light);
}

.btn-light:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-outline-light {
    background: transparent;
    color: var(--light);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--light);
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border-color: transparent;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.btn-ghost:hover {
    color: var(--light);
    background: transparent;
    border-color: transparent;
    transform: none;
}

.btn-wa {
    background: #25d366;
    border-color: #25d366;
    color: white;
}

.btn-wa:hover {
    background: #1da851;
    border-color: #1da851;
}

/* =====================================================
   HERO
===================================================== */
.hero {
    position: relative;
    height: 92vh;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    transform: scale(1.04);
    animation: subtle-ken 14s ease-in-out infinite alternate;
}

.slide.active {
    opacity: 1;
}

@keyframes subtle-ken {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(61, 26, 39, 0.55) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light);
    padding: 0 1.5rem;
    max-width: 900px;
    animation: hero-in 1.2s ease both;
}

@keyframes hero-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 1.2rem;
    display: block;
}

.hero h1 {
    color: var(--light);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
}

.hero-sub {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

/* =====================================================
   CATEGORY STRIP
===================================================== */
.category-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 100%;
    overflow: hidden;
}

.category-tile {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.category-tile:nth-child(2) {
    aspect-ratio: 4/5.5;
}

.category-tile-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.category-tile:hover .category-tile-img {
    transform: scale(1.06);
}

.category-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 26, 39, 0.75) 0%, rgba(0, 0, 0, 0.1) 60%);
    z-index: 1;
    transition: opacity var(--transition);
}

.category-tile:hover::before {
    opacity: 0.85;
}

.category-tile-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    z-index: 2;
    color: white;
    transform: translateY(4px);
    transition: transform var(--transition);
}

.category-tile:hover .category-tile-body {
    transform: translateY(0);
}

.category-tile-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.3rem;
}

.category-tile-body p {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.75;
    color: var(--accent);
}

/* =====================================================
   SECTIONS (general)
===================================================== */
.section {
    padding: 6rem 5%;
    max-width: 1440px;
    margin: 0 auto;
}

.section-title-centered {
    text-align: center;
    padding: 6rem 5% 3rem;
    max-width: 1440px;
    margin: 0 auto;
}

.section-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    color: #888;
    max-width: 560px;
    margin-top: 0.6rem;
}

/* =====================================================
   ABOUT
===================================================== */
.about-section {
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 3/4;
    display: block;
}

.about-img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    font-family: 'Jost', sans-serif;
}

.about-img-badge span {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
}

.about-img-badge strong {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: -2px;
}

.about-text {
    padding-right: 2rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.about-text p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--ivory);
    border-radius: var(--radius-lg);
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary);
}

.stat span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
}

/* =====================================================
   HOW IT WORKS
===================================================== */
.how-it-works {
    background: var(--secondary);
    padding: 6rem 5%;
    text-align: center;
}

.how-it-works .section-title {
    margin-bottom: 4rem;
}

.how-it-works .section-title h2 {
    color: var(--light);
}

.how-it-works .section-eyebrow {
    color: var(--gold);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    position: relative;
    padding: 2.5rem 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    transition: background var(--transition), transform var(--transition);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 165, 165, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent);
    font-size: 1.2rem;
}

.step-num {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
}

.step-card h3 {
    color: var(--light);
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    line-height: 1.8;
}

/* =====================================================
   PRODUCTS (shared rentals + RTW)
===================================================== */
.products-section {
    padding: 6rem 5%;
    max-width: 1440px;
    margin: 0 auto;
}

.rtw-section {
    background: var(--light);
    max-width: 100%;
}

.rtw-section .services-grid {
    max-width: 1440px;
    margin: 0 auto;
}

.rtw-section .section-header {
    max-width: 1440px;
    margin: 0 auto;
}

.rtw-section .no-results {
    max-width: 1440px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.section-title-text {
    color: var(--secondary);
    margin-top: 0.3rem;
}

/* Filter controls */
.filter-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.search-filter-wrap {
    position: relative;
}

.section-search,
.filter-select {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 0.6rem 1rem;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition);
}

.section-search:focus,
.filter-select:focus {
    border-color: var(--secondary);
}

.section-search {
    width: 200px;
}

/* Product grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
}

/* Product card */
.service-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-5px);
}

.service-card.hidden {
    display: none;
}

/* Card badge */
.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 5;
    background: var(--secondary);
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
}

/* Wishlist toggle */
.wishlist-toggle {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--accent);
    font-size: 0.9rem;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

.wishlist-toggle:hover,
.wishlist-toggle.active {
    color: var(--secondary);
    transform: scale(1.1);
}

.wishlist-toggle.active i::before {
    content: '\f004';
    font-weight: 900;
}

/* solid heart */

/* Card image */
.service-img {
    height: 380px;
    overflow: hidden;
    position: relative;
}

/* Image slider */
.image-slider {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slider-images {
    position: relative;
    height: 100%;
}

.slider-images img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-images img.active {
    opacity: 1;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(250, 247, 245, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--secondary);
    font-size: 0.75rem;
    z-index: 6;
    transition: all var(--transition);
    opacity: 0;
}

.service-card:hover .slider-arrow {
    opacity: 1;
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

.slider-arrow:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 6;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: white;
    width: 18px;
    border-radius: 3px;
}

/* Card hover overlay */
.card-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(61, 26, 39, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 7;
}

.service-card:hover .card-hover-overlay {
    opacity: 1;
}

.overlay-btn {
    background: white;
    border: none;
    color: var(--secondary);
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.7rem 1.5rem;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
    transform: translateY(8px);
}

.service-card:hover .overlay-btn {
    transform: translateY(0);
}

.overlay-btn:hover {
    background: var(--secondary);
    color: white;
}

/* Card content */
.service-content {
    padding: 1.4rem 1.5rem 1.6rem;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.card-tag {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    background: var(--primary);
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
}

.card-tag.rtw {
    background: #e8f4f0;
    color: #2d7a6a;
}

.card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
}

.card-price small {
    font-size: 0.85rem;
    opacity: 0.7;
}

.service-content h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 0.4rem;
}

.service-content p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.service-content .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.73rem;
    padding: 0.7rem;
}

/* No results */
.no-results {
    text-align: center;
    padding: 4rem;
    color: var(--accent);
    grid-column: 1 / -1;
}

.no-results i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.no-results p {
    font-size: 0.95rem;
}

/* =====================================================
   GALLERY
===================================================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 3/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 26, 39, 0.8), transparent 55%);
    color: white;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery-overlay h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: white;
}

.gallery-overlay p {
    font-size: 0.72rem;
    opacity: 0.8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* =====================================================
   CONTACT
===================================================== */
.contact-section {
    background: var(--secondary);
    max-width: 100%;
    padding: 0;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
}

.contact-info-col {
    padding: 6rem 4rem 6rem 5%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-col .section-eyebrow {
    color: var(--gold);
}

.contact-info-col h2 {
    color: white;
    margin-bottom: 1.2rem;
}

.contact-info-col>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

.contact-details {
    list-style: none;
    margin-bottom: 2.5rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    margin-bottom: 0.9rem;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-details a:hover {
    color: white;
}

.contact-details i {
    color: var(--gold);
    width: 16px;
    flex-shrink: 0;
}

.contact-socials {
    display: flex;
    gap: 0.8rem;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition);
}

.contact-socials a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-form-col {
    background: var(--ivory);
    padding: 5rem 5% 5rem 4rem;
}

/* =====================================================
   FORMS (shared)
===================================================== */
.form-group {
    margin-bottom: 1.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(94, 44, 62, 0.08);
}

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

.form-check {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.form-check input {
    width: auto;
}

.form-check label {
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: #666;
    margin: 0;
}

/* =====================================================
   FOOTER
===================================================== */
footer {
    background: var(--plum-dark);
    color: var(--light);
    padding: 5rem 5% 2rem;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.footer-column h3 {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-column ul li a,
.footer-column ul li {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.footer-column ul li i {
    color: var(--gold);
    font-size: 0.8rem;
    width: 14px;
}

.social-links {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.5rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    border-color: var(--accent);
}

.copyright {
    max-width: 1440px;
    margin: 2rem auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

/* =====================================================
   MOBILE STICKY CTA
===================================================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: white;
    border-top: 1px solid var(--border);
    padding: 0.8rem 1.2rem;
    gap: 0.8rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-cta-wa {
    flex: 1;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 2px;
    padding: 0.85rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.mobile-cta-book {
    flex: 1;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 2px;
    padding: 0.85rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

/* =====================================================
   MODALS
===================================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(61, 26, 39, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    overflow-y: auto;
}

.modal.open {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    margin: auto;
    animation: modal-in 0.3s ease both;
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }

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

.modal-booking {
    max-width: 520px;
}

.modal-dress {
    max-width: 820px;
    padding: 0;
    overflow: hidden;
}

.modal-wishlist {
    max-width: 480px;
}

.modal-success {
    max-width: 500px;
    text-align: center;
}

.modal-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.modal-heading i {
    font-size: 1.2rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.6rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #999;
    line-height: 1;
    z-index: 5;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}

.close-modal:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* Body lock */
.body-lock {
    overflow: hidden;
}

/* Booking steps */
.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    transition: all var(--transition);
}

.step.active .step-number {
    background: var(--secondary);
    color: white;
}

.step.completed .step-number {
    background: var(--gold);
    color: white;
}

.step-text {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
}

.step.active .step-text {
    color: var(--secondary);
    font-weight: 600;
}

.form-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.booking-form-page {
    display: none;
}

.booking-form-page.active {
    display: block;
}

.form-navigation {
    display: flex;
    gap: 0.8rem;
    margin-top: 2rem;
}

.form-navigation .btn {
    flex: 1;
}

/* Dress preview modal */
.dress-preview {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 540px;
}

.dress-gallery {
    position: relative;
    background: var(--ivory);
    display: flex;
    flex-direction: column;
}

.dress-main-img-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.dress-main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dress-main-img-wrap:hover img {
    transform: scale(1.04);
}

.dress-thumbs {
    display: flex;
    gap: 6px;
    padding: 0.6rem;
    background: white;
    border-top: 1px solid var(--border);
    overflow-x: auto;
    flex-shrink: 0;
}

.dress-thumb {
    width: 60px;
    height: 70px;
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: all var(--transition);
    flex-shrink: 0;
}

.dress-thumb.active,
.dress-thumb:hover {
    opacity: 1;
    border-color: var(--secondary);
}

.dress-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.dress-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

#dressModalTitle {
    color: var(--secondary);
    font-size: 1.5rem;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
    margin-top: 4px;
}

.availability i {
    font-size: 0.45rem;
}

.dress-details .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0.8rem 0;
}

.dress-modal-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.dress-specs {
    margin-bottom: 1.5rem;
    flex: 1;
}

.dress-specs h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.8rem;
}

.dress-specs ul {
    list-style: none;
}

.dress-specs li {
    font-size: 0.85rem;
    color: var(--text);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.dress-specs li::before {
    content: '—';
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.dress-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.dress-modal-actions .btn {
    width: 100%;
    justify-content: center;
}

/* Booking summary */
.booking-summary-box {
    background: var(--ivory);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
}

.booking-summary-box h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
    color: #666;
}

.summary-row:last-child {
    border: none;
}

.summary-row strong {
    color: var(--text);
}

.banking-box {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    border-left: 3px solid var(--secondary);
}

.banking-box h4 {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.8rem;
    font-family: 'Jost', sans-serif;
}

.banking-box p {
    color: var(--text);
    margin-bottom: 0.3rem;
}

/* Wishlist modal */
.wishlist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.wishlist-item:last-child {
    border: none;
}

.wishlist-item-name {
    flex: 1;
    font-weight: 500;
    font-size: 0.9rem;
}

.wishlist-item-remove {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.3rem;
    transition: color var(--transition);
}

.wishlist-item-remove:hover {
    color: var(--secondary);
}

.wishlist-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
}

.wishlist-empty i {
    font-size: 2rem;
    color: var(--accent);
    display: block;
    margin-bottom: 1rem;
}

/* Success modal */
.modal-success .success-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.modal-success h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.modal-success p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(61, 26, 39, 0.5);
    z-index: 190;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        padding-right: 0;
    }

    .about-img-badge {
        bottom: -1rem;
        right: -0.5rem;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

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

    .contact-form-col {
        padding: 4rem 5%;
    }
}

@media (max-width: 768px) {

    /* Header mobile */
    .mobile-menu-btn {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    nav {
        padding: 0 1.2rem;
        height: 64px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 4rem 1.5rem 2rem;
        gap: 0.2rem;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform var(--transition);
        z-index: 200;
        overflow-y: auto;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .mobile-overlay {
        display: block;
        pointer-events: none;
    }

    .mobile-overlay.active {
        pointer-events: all;
    }

    .nav-close-btn {
        display: block;
    }

    .nav-link {
        width: 100%;
        padding: 0.8rem 0.5rem;
        font-size: 0.88rem;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-trigger {
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: all;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 1rem;
        background: var(--ivory);
        display: none;
        min-width: unset;
        margin-top: 0.3rem;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.6rem 0.5rem;
        font-size: 0.82rem;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    /* Hero */
    .hero {
        height: 85vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 220px;
    }

    .hero-scroll-hint {
        display: none;
    }

    /* Category strip */
    .category-strip {
        grid-template-columns: 1fr;
    }

    .category-tile,
    .category-tile:nth-child(2) {
        aspect-ratio: 16/7;
    }

    /* Products */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-controls {
        width: 100%;
    }

    .section-search {
        width: 100%;
    }

    .filter-controls {
        flex-direction: column;
    }

    /* About */
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    /* Gallery */
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

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

    .contact-info-col {
        padding: 4rem 5%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: auto;
    }

    /* Dress modal */
    .dress-preview {
        grid-template-columns: 1fr;
    }

    .dress-main-img-wrap {
        min-height: 280px;
    }

    .dress-details {
        padding: 1.5rem;
    }

    .modal-dress {
        max-height: 90vh;
        overflow-y: auto;
    }

    /* Sticky CTA */
    .mobile-sticky-cta {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }

    /* Modals */
    .modal {
        padding: 0.8rem;
        align-items: flex-end;
    }

    .modal-content {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        max-height: 92vh;
    }

    .modal-dress {
        max-height: 90vh;
    }

    .form-navigation {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-sub {
        font-size: 0.88rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        padding: 1.2rem;
        gap: 0.8rem;
    }

    .stat strong {
        font-size: 1.5rem;
    }

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

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

    .service-img {
        height: 300px;
    }

    .image-slider {
        height: 300px;
    }

    .slider-arrow {
        opacity: 1;
    }

    .modal {
        padding: 0;
    }

    .modal-content {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        padding: 1.5rem 1.2rem;
    }

    .modal-booking {
        max-width: 100%;
    }
}

/* Force 16px font on mobile inputs to prevent zoom */
@media (max-width: 768px) {

    .form-group input,
    .form-group select,
    .form-group textarea,
    .section-search {
        font-size: 16px;
    }
}