
        :root {
            --gold-primary: #C9A962;
            --gold-light: #E8D5A3;
            --gold-dark: #8E7948;
            --gold-glow: #F2D088;
            --cream: #FAF8F5;
            --cream-dark: #F5F2ED;
            --charcoal: #2A2A2A;
            --charcoal-light: #4A4A4A;
            --white: #FFFFFF;
            --black: #0A0A0A;
            --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
            --transition-elegant: cubic-bezier(0.65, 0, 0.35, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Cormorant Garamond', serif;
            background: var(--cream);
            color: var(--charcoal);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ===== ANNOUNCEMENT BAR ===== */
        .announcement-bar {
            background: var(--charcoal);
            color: var(--gold-light);
            text-align: center;
            padding: 12px 20px;
            font-family: 'Cinzel', serif;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .announcement-bar a {
            color: var(--gold-primary);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s ease;
        }

        .announcement-bar a:hover {
            border-bottom-color: var(--gold-primary);
        }

        /* ===== HEADER / NAVIGATION ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(250, 248, 245, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(201, 169, 98, 0.1);
            transition: all 0.4s var(--transition-smooth);
        }

        header.scrolled {
            background: rgba(250, 248, 245, 0.98);
            box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
        }

        .header-top {
            background: var(--charcoal);
            color: var(--gold-light);
            padding: 10px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            font-family: 'Cinzel', serif;
        }

        .header-top a {
            color: var(--gold-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .header-top a:hover {
            color: var(--gold-primary);
        }

        .header-main {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            padding: 12px 60px;
            line-height: 1; 
        }

        .nav-left, .nav-right {
            display: flex;
            gap: 40px;
        }

        .nav-right {
            justify-content: flex-end;
        }

        .nav-link {
            font-family: 'Cinzel', serif;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--charcoal);
            text-decoration: none;
            position: relative;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold-primary);
            transition: width 0.4s var(--transition-elegant);
        }

        .nav-link:hover {
            color: var(--gold-dark);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .logo-container {
            text-align: center;
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--charcoal);
        }

        .logo-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 8px;
            border: 1px solid rgba(201, 169, 98, 0.3);
        }

        .logo-text {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            color: var(--gold-dark);
        }

        .logo-tagline {
            font-family: 'Cinzel', serif;
            font-size: 0.55rem;
            letter-spacing: 0.3em;
            color: var(--gold-dark);
            text-transform: uppercase;
            opacity: 0.8;
            margin-top: 2px;
        }

        .header-icons {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .header-icon {
            width: 20px;
            height: 20px;
            stroke: var(--charcoal);
            stroke-width: 1.5;
            fill: none;
            cursor: pointer;
            transition: stroke 0.3s ease, transform 0.3s ease;
        }

        .header-icon:hover {
            stroke: var(--gold-dark);
            transform: scale(1.05);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            margin-top: 20px;
            position: relative;
            height: calc(100vh - 160px);
            min-height: 600px;
            overflow: hidden;
        }

        .hero-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        }

        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.2) 0%,
                rgba(0, 0, 0, 0.1) 50%,
                rgba(0, 0, 0, 0.4) 100%
            );
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 10;
            color: var(--white);
        }

        .hero-subtitle {
            font-family: 'Cinzel', serif;
            font-size: 0.8rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 1s var(--transition-elegant) 0.3s forwards;
        }

        .hero-title {
            font-family: 'Cinzel', serif;
            font-size: 4.5rem;
            font-weight: 400;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
            text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
            opacity: 0;
            animation: fadeInUp 1s var(--transition-elegant) 0.5s forwards;
        }

        .hero-description {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 300;
            letter-spacing: 0.1em;
            max-width: 500px;
            margin: 0 auto 40px;
            line-height: 1.8;
            opacity: 0;
            animation: fadeInUp 1s var(--transition-elegant) 0.7s forwards;
        }

        .hero-cta {
            display: inline-block;
            font-family: 'Cinzel', serif;
            font-size: 0.75rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--white);
            text-decoration: none;
            padding: 18px 50px;
            border: 1px solid var(--gold-light);
            background: transparent;
            transition: all 0.4s var(--transition-smooth);
            opacity: 0;
            animation: fadeInUp 1s var(--transition-elegant) 0.9s forwards;
        }

        .hero-cta:hover {
            background: var(--gold-primary);
            border-color: var(--gold-primary);
            color: var(--black);
            box-shadow: 0 0 40px rgba(201, 169, 98, 0.4);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            opacity: 0;
            animation: fadeIn 1s var(--transition-elegant) 1.2s forwards;
        }

        .scroll-text {
            font-family: 'Cinzel', serif;
            font-size: 0.65rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold-light);
        }

        .scroll-line {
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, var(--gold-light), transparent);
            animation: scrollBounce 2s ease-in-out infinite;
        }

        @keyframes scrollBounce {
            0%, 100% { transform: scaleY(1); opacity: 1; }
            50% { transform: scaleY(0.5); opacity: 0.5; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* ===== COLLECTION HIGHLIGHT ===== */
        .collection-highlight {
            padding: 120px 60px;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-eyebrow {
            font-family: 'Cinzel', serif;
            font-size: 0.7rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-bottom: 15px;
        }

        .section-title {
            font-family: 'Cinzel', serif;
            font-size: 2.8rem;
            font-weight: 400;
            letter-spacing: 0.1em;
            color: var(--charcoal);
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            font-weight: 300;
            color: var(--charcoal-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-card {
            position: relative;
            background: var(--cream);
            transition: all 0.5s var(--transition-smooth);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .product-image-container {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            background: linear-gradient(145deg, #f8f6f3, #e8e5e0);
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s var(--transition-elegant);
        }

/* Apply continuous pulse animation to ALL hotspots */
.product-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid var(--gold-primary);
    background: rgba(0, 0, 0, 0.65);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    z-index: 10;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    animation: hotspotPulse 2s ease-in-out infinite; /* infinite = never stops */
}

@keyframes hotspotPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.3);
        box-shadow: 0 0 0 8px rgba(201, 169, 98, 0.3);
    }
}

/* Stop animation on hover so users can click */
.product-hotspot:hover {
    animation: none;
    transform: translate(-50%, -50%) scale(1.35);
}

/* glowing center dot */
.product-hotspot::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* label (shared styles) */
.product-hotspot::after {
    content: attr(data-label) " 路 " attr(data-price);
    position: absolute;
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0;              /* HIDDEN before hover */
    pointer-events: none;    /* avoids flicker */
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;

    --label-offset: 8px;
    --label-offset-x: 0px;
    --label-offset-y: 0px;
}


/* dot hover grow + glow */
.product-hotspot:hover::after {
    opacity: 1;
    transform: translateX(-50%) 
               translateY(calc(var(--label-offset-y) - 2px))
               translateX(var(--label-offset-x));
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.55);
}


.product-hotspot:hover::before {
    transform: scale(1.35);
    box-shadow: 0px 0px 6px rgba(242, 208, 136, 0.8);
}

/* label hover lift + glow */
.product-hotspot:hover::after {
    transform: translateX(-50%) translateY(calc(var(--label-offset-y) - 2px))
               translateX(var(--label-offset-x));
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.55);
}



/* Label ABOVE the dot */
.hotspot-top::after {
    bottom: calc(100% + var(--label-offset));
    left: 50%;
    transform: translateX(-50%)
               translateX(var(--label-offset-x))
               translateY(var(--label-offset-y));
}

/* Label BELOW the dot */
.hotspot-bottom::after {
    top: calc(100% + var(--label-offset));
    left: 50%;
    transform: translateX(-50%)
               translateX(var(--label-offset-x))
               translateY(var(--label-offset-y));
}

.product-hotspot:hover ~ .product-media .product-image {
    transform: scale(1.06);
}



        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s var(--transition-smooth);
        }

        .product-card:hover .product-overlay {
            background: rgba(0, 0, 0, 0.3);
            opacity: 1;
        }

        .quick-view-btn {
            font-family: 'Cinzel', serif;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--white);
            background: transparent;
            border: 1px solid var(--white);
            padding: 12px 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            transform: translateY(20px);
        }

        .product-card:hover .quick-view-btn {
            transform: translateY(0);
        }

        .quick-view-btn:hover {
            background: var(--white);
            color: var(--black);
        }

        .wishlist-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: var(--white);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .product-card:hover .wishlist-btn {
            opacity: 1;
            transform: scale(1);
        }

        .wishlist-btn svg {
            width: 18px;
            height: 18px;
            stroke: var(--charcoal);
            fill: none;
            stroke-width: 1.5;
            transition: all 0.3s ease;
        }

        .wishlist-btn:hover svg {
            stroke: var(--gold-dark);
            fill: var(--gold-light);
        }

        .product-info {
            padding: 25px 20px;
            text-align: center;
        }

        .product-collection {
            font-family: 'Cinzel', serif;
            font-size: 0.6rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-bottom: 8px;
        }

        .product-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .product-price {
            font-family: 'Cinzel', serif;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            color: var(--charcoal);
        }

        .view-all-link {
            display: block;
            text-align: center;
            margin-top: 60px;
        }

        .view-all-btn {
            font-family: 'Cinzel', serif;
            font-size: 0.75rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--charcoal);
            text-decoration: none;
            padding: 18px 50px;
            border: 1px solid var(--charcoal);
            background: transparent;
            transition: all 0.4s var(--transition-smooth);
            display: inline-block;
        }

        .view-all-btn:hover {
            background: var(--charcoal);
            color: var(--white);
        }

        /* ===== FEATURED BANNER ===== */
        .featured-banner {
            position: relative;
            height: 80vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .featured-banner-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1815 0%, #0d0c0a 100%);
        }

        .featured-banner-image {
            position: absolute;
            top: 0;
            right: 0;
            width: 55%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
        }

        .featured-banner-content {
            position: relative;
            z-index: 10;
            padding: 0 120px;
            max-width: 550px;
            color: var(--white);
        }

        .featured-eyebrow {
            font-family: 'Cinzel', serif;
            font-size: 0.7rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-bottom: 20px;
        }

        .featured-title {
            font-family: 'Cinzel', serif;
            font-size: 3rem;
            font-weight: 400;
            letter-spacing: 0.08em;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .featured-description {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            font-weight: 300;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
        }

        .featured-cta {
            font-family: 'Cinzel', serif;
            font-size: 0.75rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold-light);
            text-decoration: none;
            padding: 18px 45px;
            border: 1px solid var(--gold-light);
            display: inline-block;
            transition: all 0.4s var(--transition-smooth);
        }

        .featured-cta:hover {
            background: var(--gold-primary);
            border-color: var(--gold-primary);
            color: var(--black);
        }
        
  /* Enhanced Booking Section */
.booking-section {
    padding: 100px 60px 80px;
    background: var(--cream-dark);
    margin-top: 120px;
}

.booking-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.booking-copy-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 14px;
}

.booking-copy-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Booking Steps */
.booking-steps {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.step-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.6;
}

.booking-highlights {
    list-style: none;
    padding-left: 0;
    margin: 30px 0 0 0;
}

.booking-highlights li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.98rem;
    color: var(--charcoal);
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.booking-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-dark);
    font-weight: bold;
    font-size: 1.1rem;
}

.address-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    color: inherit;
}

.address-link:hover {
    transform: translateX(5px);
}

.address-link .address-line {
    transition: color 0.3s ease;
}

.address-link:hover .address-line {
    color: #C9A962; /* Gold color on hover */
}

.address-link:visited .address-line {
    color: var(--charcoal); /* Prevents purple visited color */
}




/* Enhanced Widget Card */
.booking-widget-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.06);
    padding: 0;
    overflow: hidden;
    border: 2px solid var(--gold-light);
    transition: all 0.3s ease;
}

.booking-widget-card:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.booking-widget-header {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    padding: 25px 20px;
    text-align: center;
}

.booking-widget-title {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.booking-widget-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--white);
    margin: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.square-widget-container {
    padding: 20px;
    min-height: 400px;
    background: var(--white);
}

.booking-widget-footer {
    background: var(--cream);
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--gold-light);
}

.booking-widget-footer p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-section {
        padding: 70px 25px 60px;
    }

    .booking-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .booking-widget-card {
        padding: 0;
    }

    .booking-widget-header {
        padding: 20px 15px;
    }

    .square-widget-container {
        padding: 15px;
    }

    .booking-steps {
        gap: 15px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-content h4 {
        font-size: 0.85rem;
    }
}
 /* ===== Instagram SECTION ===== */
.instagram-section {
    padding: 120px 60px;
    background: var(--cream);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 40px auto 30px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    display: block;
    background: #e8e5e0;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition-elegant),
                filter 0.7s var(--transition-elegant);
}

.instagram-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0,
                rgba(0,0,0,0.15) 0,
                transparent 45%),
                linear-gradient(to top,
                rgba(0,0,0,0.45),
                transparent 55%);
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.instagram-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.05);
}

.instagram-item:hover::after {
    opacity: 1;
}

.instagram-cta-wrapper {
    text-align: center;
    margin-top: 10px;
}

.instagram-cta {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 16px 44px;
    border-radius: 999px;
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
    text-decoration: none;
    background: transparent;
    transition: all 0.35s var(--transition-smooth);
}

.instagram-cta:hover {
    background: var(--charcoal);
    color: var(--white);
}

        /* ===== CATEGORIES SECTION ===== */
        .categories {
            padding: 120px 60px;
            background: var(--cream);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .category-card {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            cursor: pointer;
        }

        .category-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s var(--transition-elegant);
        }

        .category-card:hover .category-image {
            transform: scale(1.08);
        }

        .category-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.6) 0%,
                rgba(0, 0, 0, 0.1) 50%,
                rgba(0, 0, 0, 0) 100%
            );
            display: flex;
            align-items: flex-end;
            padding: 40px 30px;
            transition: background 0.4s ease;
        }

        .category-card:hover .category-overlay {
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.2) 50%,
                rgba(0, 0, 0, 0.1) 100%
            );
        }

        .category-content {
            color: var(--white);
            transform: translateY(10px);
            transition: transform 0.4s var(--transition-smooth);
        }

        .category-card:hover .category-content {
            transform: translateY(0);
        }

        .category-name {
            font-family: 'Cinzel', serif;
            font-size: 1.3rem;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
        }

        .category-count {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* ===== STORY SECTION ===== */
        .story-section {
            padding: 140px 60px;
            background: var(--white);
        }

        .story-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
        }

        .story-image-wrapper {
            position: relative;
        }

        .story-image {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
        }

        .story-accent {
            position: absolute;
            top: -30px;
            left: -30px;
            width: 120px;
            height: 120px;
            border: 1px solid var(--gold-light);
            z-index: -1;
        }

        .story-content {
            padding: 40px 0;
        }

        .story-eyebrow {
            font-family: 'Cinzel', serif;
            font-size: 0.7rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-bottom: 20px;
        }

        .story-title {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 400;
            letter-spacing: 0.08em;
            color: var(--charcoal);
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .story-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 300;
            color: var(--charcoal-light);
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .story-cta {
            font-family: 'Cinzel', serif;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--charcoal);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            margin-top: 30px;
            transition: color 0.3s ease;
        }

        .story-cta:hover {
            color: var(--gold-dark);
        }

        .story-cta-line {
            width: 40px;
            height: 1px;
            background: var(--gold-dark);
            transition: width 0.4s var(--transition-smooth);
        }

        .story-cta:hover .story-cta-line {
            width: 60px;
        }

        /* ===== NEWS SECTION ===== */
        .news-section {
            padding: 120px 60px;
            background: var(--cream-dark);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .news-card {
            background: var(--white);
            transition: all 0.4s var(--transition-smooth);
        }

        .news-card:hover {
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transform: translateY(-5px);
        }

        .news-image-container {
            aspect-ratio: 16/10;
            overflow: hidden;
        }

        .news-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s var(--transition-elegant);
        }

        .news-card:hover .news-image {
            transform: scale(1.05);
        }

        .news-content {
            padding: 30px;
        }

        .news-date {
            font-family: 'Cinzel', serif;
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-bottom: 12px;
        }

        .news-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .news-excerpt {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.95rem;
            color: var(--charcoal-light);
            line-height: 1.7;
        }

        /* ===== NEWSLETTER ===== */
        .newsletter {
            padding: 100px 60px;
            background: var(--charcoal);
            text-align: center;
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-title {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            font-weight: 400;
            letter-spacing: 0.1em;
            color: var(--gold-light);
            margin-bottom: 15px;
        }

        .newsletter-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .newsletter-form {
            display: flex;
            gap: 0;
            max-width: 450px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 18px 25px;
            background: transparent;
            border: 1px solid var(--gold-dark);
            border-right: none;
            color: var(--white);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .newsletter-input:focus {
            border-color: var(--gold-light);
        }

        .newsletter-btn {
            padding: 18px 35px;
            background: var(--gold-dark);
            border: 1px solid var(--gold-dark);
            color: var(--white);
            font-family: 'Cinzel', serif;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: var(--gold-primary);
            border-color: var(--gold-primary);
            color: var(--black);
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 80px 60px 40px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr) 1.5fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto 60px;
        }

        .footer-brand .logo-text {
            color: var(--gold-light);
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .footer-brand .logo-tagline {
            color: var(--gold-dark);
            margin-bottom: 20px;
        }

        .footer-brand p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
        }

        .footer-column h4 {
            font-family: 'Cinzel', serif;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-bottom: 25px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--gold-light);
        }

        .footer-social {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border: 1px solid var(--gold-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--gold-dark);
            border-color: var(--gold-dark);
        }

        .social-link svg {
            width: 16px;
            height: 16px;
            fill: var(--gold-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-copyright {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-legal {
            display: flex;
            gap: 30px;
        }

        .footer-legal a {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--gold-light);
        }

        .payment-methods {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .payment-icon {
            height: 20px;
            opacity: 0.6;
        }

        /* ===== MOBILE MENU ===== */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 1.5px;
            background: var(--charcoal);
            margin: 6px 0;
            transition: all 0.3s ease;
        }

        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .header-main {
                padding: 15px 30px;
            }

            .nav-left, .nav-right {
                gap: 25px;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .story-container {
                gap: 60px;
            }

            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-main {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .logo-container {
                justify-self: center;
                text-align: center;
            }
            .header-top {
               font-size: 0.7rem;
            text-align: center;
               justify-content: center;
            }
             .desktop-only {
                display: none;
            }

           .header-main {
               grid-template-columns: 1fr auto 1fr;
               padding: 10px 30px;
               line-height: 1;
           }

            .logo-text {
                font-size: 1.2rem;
            }

            .logo-tagline{
                font-size: 0.5rem;
            }

            .logo-img {
                width: 45px;
                height: 45px;
            }

            .hero {
                margin-top: 100px;
                height: calc(100vh - 100px);
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1.1rem;
                padding: 0 20px;
            }

            .collection-highlight,
            .categories,
            .story-section,
            .news-section {
                padding: 80px 25px;
            }

            .section-title {
                font-size: 2rem;
            }
            
            .booking-section {
                padding: 70px 25px 60px;
            }
        
            .booking-layout {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        
            .booking-widget-card {
                padding: 18px 14px 14px;
                border-radius: 12px;
                box-shadow: 0 14px 40px rgba(0,0,0,0.08);
            }
        
            .section-title {
                /* optional: slightly smaller on this page */
                font-size: 1.9rem;
            }
            .products-grid {
                grid-template-columns: 1fr;   /* one card per row */
                gap: 20px;                    /* a bit more breathing room */
                max-width: 420px;             /* optional: keeps it nice & narrow */
                margin: 0 auto;               /* center the column */
            }

            .product-info {
                padding: 15px;
            }

            .product-name {
                font-size: 0.9rem;
            }
            

            .featured-banner {
                height: auto;
                min-height: auto;
            }

            .featured-banner-image {
                position: relative;
                width: 100%;
                height: 50vh;
            }

            .featured-banner-content {
                padding: 60px 25px;
                max-width: 100%;
            }

            .featured-title {
                font-size: 2rem;
            }

            .categories-grid {
                grid-template-columns: 1fr;
            }

            .story-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .story-title {
                font-size: 1.8rem;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .newsletter {
                padding: 60px 25px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-input {
                border-right: 1px solid var(--gold-dark);
                border-bottom: none;
            }
            
            .instagram-section {
                padding: 70px 25px;
            }
            .instagram-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                margin-top: 30px;
            }
            

            footer {
                padding: 60px 25px 30px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .footer-legal {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        /* ===== ANIMATION CLASSES ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s var(--transition-elegant), transform 0.8s var(--transition-elegant);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Placeholder images */
        .placeholder-image {
            background: linear-gradient(145deg, #e8e5e0, #d5d2cd);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-dark);
            font-family: 'Cinzel', serif;
            font-size: 0.7rem;
            letter-spacing: 0.1em;
        } 
        
/* ===== INSTAGRAM EMBED SECTION ===== */
.instagram-embed-section {
    padding: 120px 60px 100px;
    background: var(--cream);
}

.instagram-embed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.instagram-embed-item {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Override Instagram's default styling to make all embeds uniform */
.instagram-embed-item .instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
    background: var(--white) !important;
}

/* Force all Instagram post images to be the same size */
.instagram-embed-item .instagram-media img {
    width: 100% !important;
    height: 320px !important;  /* Fixed image height */
    object-fit: cover !important;  /* Crop to fit */
    max-height: 320px !important;
}

/* Keep the video/media container consistent */
.instagram-embed-item .instagram-media video {
    width: 100% !important;
    height: 320px !important;
    object-fit: cover !important;
    max-height: 320px !important;
}

.instagram-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.instagram-cta {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 18px 50px;
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
    text-decoration: none;
    background: transparent;
    transition: all 0.4s var(--transition-smooth);
}

.instagram-cta:hover {
    background: var(--charcoal);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
    .instagram-embed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .instagram-embed-section {
        padding: 80px 25px 60px;
    }
    
    .instagram-embed-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
        max-width: 100%;
    }
    
    .instagram-embed-item {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    
    /* Smaller fixed image height on mobile */
    .instagram-embed-item .instagram-media img {
        height: 280px !important;
        max-height: 280px !important;
    }
    
    .instagram-embed-item .instagram-media video {
        height: 280px !important;
        max-height: 280px !important;
    }
    
    /* Make Instagram embeds smaller on mobile */
    .instagram-embed-item .instagram-media {
        width: 100% !important;
        max-width: 400px !important;
        min-width: 280px !important;
        margin: 0 auto !important;
        transform: scale(0.95);
    }
    
    .instagram-cta {
        padding: 16px 40px;
        font-size: 0.7rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .instagram-embed-item {
        max-width: 100%;
    }
    
    .instagram-embed-item .instagram-media {
        max-width: 100% !important;
        min-width: 100% !important;
        transform: scale(0.9);
    }
    
    /* Even smaller image height on very small screens */
    .instagram-embed-item .instagram-media img {
        height: 250px !important;
        max-height: 250px !important;
    }
    
    .instagram-embed-item .instagram-media video {
        height: 250px !important;
        max-height: 250px !important;
    }
}

        /* Modal Styles */
        .booking-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .booking-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .booking-modal {
            background: linear-gradient(145deg, #1a1815 0%, #252220 100%);
            border: 1px solid rgba(201, 169, 98, 0.3);
            border-radius: 16px;
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(30px) scale(0.95);
            transition: transform 0.3s ease;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 169, 98, 0.1);
        }

        .booking-modal-overlay.active .booking-modal {
            transform: translateY(0) scale(1);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(201, 169, 98, 0.3);
            background: rgba(26, 24, 21, 0.8);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal-close svg {
            width: 20px;
            height: 20px;
            stroke: #c9a962;
        }

        .modal-close:hover {
            background: rgba(201, 169, 98, 0.2);
            border-color: #c9a962;
            transform: rotate(90deg);
        }

        .modal-header {
            padding: 40px 32px 24px;
            text-align: center;
            border-bottom: 1px solid rgba(201, 169, 98, 0.15);
        }

        .modal-eyebrow {
            font-family: 'Cormorant Garamond', serif;
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #c9a962;
            margin-bottom: 12px;
        }

        .modal-title {
            font-family: 'Cinzel', serif;
            font-size: 28px;
            font-weight: 500;
            color: #f5f3ef;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .modal-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 15px;
            color: rgba(245, 243, 239, 0.7);
            font-style: italic;
        }

        .modal-content {
            padding: 24px 32px 32px;
        }

        .modal-info {
            margin-bottom: 24px;
        }

        .modal-location {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            padding: 16px;
            background: rgba(201, 169, 98, 0.08);
            border-radius: 10px;
            border: 1px solid rgba(201, 169, 98, 0.15);
        }

        .modal-location svg {
            width: 20px;
            height: 20px;
            stroke: #c9a962;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .location-label {
            font-family: 'Cinzel', serif;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #c9a962;
            margin-bottom: 4px;
        }

        .location-address {
            font-family: 'Cormorant Garamond', serif;
            font-size: 15px;
            color: #f5f3ef;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .location-address:hover {
            color: #c9a962;
        }

        .modal-description {
            font-family: 'Cormorant Garamond', serif;
            font-size: 15px;
            line-height: 1.7;
            color: rgba(245, 243, 239, 0.8);
        }

        .modal-widget-container {
            text-align: center;
        }

        .modal-book-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #c9a962 0%, #b8956c 100%);
            color: #1a1815;
            font-family: 'Cinzel', serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
        }

        .modal-book-btn svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .modal-book-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(201, 169, 98, 0.4);
            background: linear-gradient(135deg, #d4b670 0%, #c9a05a 100%);
        }

        .modal-book-btn:hover svg {
            transform: translateX(4px);
        }

        /* Responsive Modal */
        @media (max-width: 540px) {
            .booking-modal-overlay {
                padding: 12px;
                align-items: flex-end;
            }

            .booking-modal {
                max-height: 85vh;
                border-radius: 20px 20px 0 0;
            }

            .modal-header {
                padding: 32px 24px 20px;
            }

            .modal-title {
                font-size: 24px;
            }

            .modal-content {
                padding: 20px 24px 28px;
            }

            .modal-book-btn {
                width: 100%;
                justify-content: center;
                padding: 18px 24px;
            }
        }

        /* Prevent body scroll when modal is open */
        body.modal-open {
            overflow: hidden;
        }
        
        /* Modal Styles */
        .floating-booking-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #c9a962 0%, #b8956c 100%);
            color: #1a1815;
            padding: 14px 20px;
            border-radius: 50px;
            border: none;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .floating-booking-widget:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 30px rgba(201, 169, 98, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #d4b670 0%, #c9a05a 100%);
        }

        .widget-pulse {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50px;
            background: #c9a962;
            animation: widgetPulse 2s ease-out infinite;
            z-index: -1;
        }

        @keyframes widgetPulse {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        .widget-content {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .widget-icon {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }

        .widget-text {
            font-family: 'Cinzel', serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        /* Hide text on smaller screens, show icon only */
        @media (max-width: 480px) {
            .floating-booking-widget {
                padding: 14px;
                border-radius: 50%;
                bottom: 20px;
                right: 20px;
            }

            .widget-text {
                display: none;
            }

            .widget-content {
                gap: 0;
            }

            .widget-icon {
                width: 24px;
                height: 24px;
            }
        }

        /* Hide widget when near booking section */
        .floating-booking-widget.hidden {
            opacity: 0;
            pointer-events: none;
            transform: translateY(20px);
        }

/* Mobile booking button - hidden by default */
.square-widget-mobile-btn {
    display: none;
}

/* Show button, hide widget on small screens */
@media (max-width: 400px) {
    .square-widget-desktop {
        display: none;
    }
    
    .square-widget-mobile-btn {
        display: block;
        background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
        color: var(--white);
        padding: 18px 30px;
        text-decoration: none;
        font-family: 'Cinzel', serif;
        font-size: 0.85rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        text-align: center;
        border-radius: 6px;
        margin: 20px;
        transition: all 0.3s ease;
    }
    
    .square-widget-mobile-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(201, 169, 98, 0.4);
    }
}
