/* ============================================================
   CAFFERA — Cinematic Dark Vintage Design
   Matching reference: full-bleed hero, floating items, 5-col grid
   ============================================================ */
/* --- Tokens --------------------------------------------- */
:root {
    --black:       #0b0d11;
    --dark1:       #12141a;
    --dark2:       #191c23;
    --dark3:       #232730;
    --card-bg:     #161920;
    --card-hover:  #1f232c;
    --gold:        #f3c623;
    --gold-lt:     #f3c623;
    --gold-dk:     #c49c15;
    --gold-glow:   rgba(243, 198, 35, 0.12);
    --gold-glow2:  rgba(243, 198, 35, 0.25);
    --gold-border: rgba(243, 198, 35, 0.22);
    --gold-border2:rgba(243, 198, 35, 0.45);
    --text-white:  #eaecf0;
    --text-light:  #9ea3b0;
    --text-muted:  #6c7280;
    --border:      rgba(188, 154, 120, 0.14);
    --radius:      12px;
    --radius-lg:   20px;
    --radius-pill: 999px;
    --ease:        cubic-bezier(0.16,1,0.3,1);
}

/* --- Reset ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--black);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; color: var(--text-white); line-height: 1.2; }

/* --- NAVBAR -------------------------------------------- */
.biz-navbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(11,13,17,0.7) 0%, transparent 100%);
    border-bottom: 1px solid rgba(188,154,120,0.08);
}
.biz-navbar.scrolled {
    position: fixed;
    background: rgba(18,20,26,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
    padding: 14px 0;
}
.biz-brand {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 3px;
    color: var(--gold);
    @supports (-webkit-text-fill-color: transparent) and (-webkit-background-clip: text) {
        background: -webkit-linear-gradient(135deg, var(--gold-lt), var(--gold));
        background: linear-gradient(135deg, var(--gold-lt), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
    }
    text-decoration: none;
}
.biz-nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(245,237,216,0.75) !important;
    padding: 6px 16px !important;
    transition: color 0.25s;
    text-transform: uppercase;
}
.biz-nav-link:hover { color: var(--gold-lt) !important; }
.navbar-toggler { border-color: var(--gold-border) !important; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(188,154,120,0.9)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* --- HERO — Full Bleed --------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    background: url('../images/DSC06692.webp') center/cover no-repeat;
    transform: scale(1.04);
    transition: transform 10s ease;
    filter: sepia(0.25) brightness(0.72);
}
.hero-section:hover .hero-bg-img { transform: scale(1.0); }

/* Multi-layer dark overlay mimicking reference image */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(8,6,4,0.0) 0%, rgba(8,6,4,0.55) 100%),
        linear-gradient(to bottom, rgba(8,6,4,0.55) 0%, rgba(8,6,4,0.3) 45%, rgba(8,6,4,0.75) 80%, rgba(8,6,4,1) 100%),
        linear-gradient(to right, rgba(8,6,4,0.5) 0%, transparent 40%, transparent 60%, rgba(8,6,4,0.5) 100%);
}

/* Noise texture like reference */
.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Decorative vintage border frame */
.hero-frame {
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(188,154,120,0.12);
    border-radius: 4px;
    pointer-events: none;
}
.hero-frame::before, .hero-frame::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    border-color: var(--gold);
    border-style: solid;
}
.hero-frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hero-frame::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 720px;
}
.hero-logo-badge {
    width: 70px; height: 70px;
    background: var(--gold-glow);
    border: 1px solid var(--gold-border2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}
.hero-logo-badge img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(188,154,120,0.5)); }

.hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.7), 0 0 80px rgba(188,154,120,0.1);
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
    @supports (-webkit-text-fill-color: transparent) and (-webkit-background-clip: text) {
        background: -webkit-linear-gradient(135deg, var(--gold-lt), var(--gold));
        background: linear-gradient(135deg, var(--gold-lt), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
    }
}
.hero-sub {
    font-size: 1rem;
    color: rgba(245,237,216,0.7);
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold-lt), var(--gold) 60%, var(--gold-dk));
    color: var(--black) !important;
    border: none;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    padding: 13px 36px;
    border-radius: var(--radius);
    transition: all 0.28s var(--ease);
    box-shadow: 0 6px 24px rgba(188,154,120,0.3);
    font-size: 0.95rem;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(188,154,120,0.5); }
.btn-outline-gold {
    background: rgba(188,154,120,0.08);
    color: var(--gold-lt) !important;
    border: 1.5px solid var(--gold-border2);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    padding: 12px 34px;
    border-radius: var(--radius);
    transition: all 0.28s var(--ease);
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
}
.btn-outline-gold:hover { background: var(--gold-glow2); border-color: var(--gold); transform: translateY(-2px); }

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(188,154,120,0.5);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bob 2s ease-in-out infinite;
}
.hero-scroll i { font-size: 1rem; color: var(--gold); }
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* --- FLOATING ITEMS BAR (below hero) ------------------- */
.floating-bar {
    background: var(--dark1);
    padding: 0;
    margin-top: -1px;
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--border);
}

/* Scattered food circles exactly like reference */
.floating-items-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    padding: 0 40px;
    position: relative;
    min-height: 160px;
}
.fi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s var(--ease);
    margin: 0 -8px;
}
.fi-item:hover { transform: translateY(-6px); }
.fi-circle {
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(188,154,120,0.25);
    box-shadow: 0 8px 30px rgba(0,0,0,0.7);
    background: var(--dark3);
    flex-shrink: 0;
}
.fi-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fi-circle.size-lg { width: 110px; height: 110px; margin-bottom: -10px; }
.fi-circle.size-md { width: 85px; height: 85px; }
.fi-circle.size-sm { width: 66px; height: 66px; margin-bottom: 8px; }

.fi-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Right side info boxes (like reference) */
.fi-info-box {
    background: rgba(26,23,16,0.7);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 10px 18px;
    backdrop-filter: blur(8px);
    font-size: 0.8rem;
    color: var(--text-light);
    white-space: nowrap;
}
.fi-info-box strong { color: var(--gold-lt); display: block; font-size: 0.9rem; margin-bottom: 2px; }

/* --- CATEGORY TABS ------------------------------------- */
.cat-tabs-bar {
    background: var(--dark1);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}
.cat-tabs-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.cat-tab {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    padding: 7px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    background: transparent;
    font-family: 'Outfit', sans-serif;
}
.cat-tab:hover { color: var(--gold-lt); border-color: var(--gold-border); background: var(--gold-glow); }
.cat-tab.active { color: var(--black); background: linear-gradient(135deg, var(--gold-lt), var(--gold)); border-color: transparent; font-weight: 700; }

/* --- PRODUCT GRID (5-column like reference) ------------ */
.products-section {
    background: var(--dark1);
    padding: 48px 0 80px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
@media (max-width: 1199px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 991px)  { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .products-grid { grid-template-columns: 1fr 1fr; } }

.prod-card {
    background: var(--card-bg);
    border: 1px solid rgba(188,154,120,0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.28s var(--ease);
    cursor: pointer;
}
.prod-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-border2);
    box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(188,154,120,0.12);
}
.prod-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
    filter: brightness(0.88);
}
.prod-card:hover .prod-card-img { transform: scale(1.07); filter: brightness(1); }
.prod-card-img-placeholder {
    width: 100%;
    height: 160px;
    background: var(--dark3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2rem;
}
.prod-card-body {
    padding: 14px 14px 18px;
}
.prod-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
    line-height: 1.3;
}
.prod-card-desc {
    font-size: 0.77rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.prod-card-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
    @supports (-webkit-text-fill-color: transparent) and (-webkit-background-clip: text) {
        background: -webkit-linear-gradient(135deg, var(--gold-lt), var(--gold));
        background: linear-gradient(135deg, var(--gold-lt), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
    }
}

/* --- ABOUT SECTION ------------------------------------- */
.about-section {
    padding: 96px 0;
    background: var(--dark2);
    border-top: 1px solid var(--border);
}
.section-eyebrow {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 5px 14px;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-pill);
    background: var(--gold-glow);
}
.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}
.section-heading em {
    font-style: italic;
    color: var(--gold);
    @supports (-webkit-text-fill-color: transparent) and (-webkit-background-clip: text) {
        background: -webkit-linear-gradient(135deg, var(--gold-lt), var(--gold));
        background: linear-gradient(135deg, var(--gold-lt), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
    }
}
.about-feature {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px 20px; background: var(--dark3);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: all 0.25s var(--ease); margin-bottom: 12px;
}
.about-feature:hover { border-color: var(--gold-border2); transform: translateX(4px); }
.about-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--gold-glow); border: 1px solid var(--gold-border);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.05rem;
    transition: all 0.25s var(--ease);
}
.about-feature:hover .about-icon { background: var(--gold-glow2); box-shadow: 0 0 20px rgba(188,154,120,0.2); }
.about-feature-title { font-family: 'Playfair Display',serif; font-size: 0.95rem; font-weight: 700; color: var(--text-white); margin-bottom: 3px; }
.about-feature p { font-size: 0.83rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gold-border); box-shadow: 0 30px 80px rgba(0,0,0,0.7); }
.about-img-wrap img { width: 100%; height: 440px; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.about-img-wrap:hover img { transform: scale(1.04); }

/* --- GALLERY ------------------------------------------- */
.gallery-section { padding: 96px 0; background: var(--dark1); border-top: 1px solid var(--border); }
.gallery-item {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); cursor: pointer;
    transition: all 0.28s var(--ease); position: relative;
}
.gallery-item:hover { border-color: var(--gold-border2); transform: translateY(-5px); box-shadow: 0 16px 50px rgba(0,0,0,0.5); }
.gallery-item img { width: 100%; object-fit: cover; display: block; filter: brightness(0.8); transition: all 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); filter: brightness(1); }
.gallery-item .cover-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,8,6,0.75) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.28s var(--ease);
}
.gallery-item:hover .cover-overlay { opacity: 1; }

/* --- RESERVATION --------------------------------------- */
.res-section { padding: 96px 0; background: var(--dark2); border-top: 1px solid var(--border); }
.res-card {
    background: var(--dark3); border: 1px solid var(--gold-border);
    border-radius: 24px; padding: 48px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    position: relative; overflow: hidden;
}
.res-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-lt), var(--gold), transparent);
}
.form-label { font-size: 0.83rem; font-weight: 600; color: var(--text-light); margin-bottom: 7px; letter-spacing: 0.3px; }
.form-control, .form-select {
    background: rgba(18,20,26,0.6) !important; border: 1px solid rgba(188,154,120,0.18) !important;
    border-radius: var(--radius) !important; color: var(--text-white) !important;
    padding: 12px 16px !important; font-family: 'Outfit', sans-serif; font-size: 0.9rem;
    transition: all 0.25s var(--ease) !important;
}
.form-control::placeholder { color: var(--text-muted) !important; }
.form-control:focus, .form-select:focus {
    border-color: var(--gold-border2) !important;
    box-shadow: 0 0 0 3px rgba(188,154,120,0.12) !important;
    outline: none !important;
}
.form-select option { background: var(--dark3); color: var(--text-white); }

/* --- CONTACT ------------------------------------------- */
.contact-section { padding: 96px 0; background: var(--dark1); border-top: 1px solid var(--border); }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.contact-icon {
    width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--radius);
    background: var(--gold-glow); border: 1px solid var(--gold-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.05rem; transition: all 0.25s var(--ease);
}
.contact-item:hover .contact-icon { background: var(--gold-glow2); box-shadow: 0 0 20px rgba(188,154,120,0.2); }
.contact-item h6 { font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.contact-item p { color: var(--text-light); margin: 0; font-size: 0.93rem; }
.map-frame {
    background: var(--dark3); border: 1px solid var(--gold-border); border-radius: var(--radius-lg);
    height: 360px; display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 14px; box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

/* --- FOOTER -------------------------------------------- */
.biz-footer { background: var(--dark2); border-top: 1px solid var(--border); padding: 72px 0 32px; }
.footer-brand {
    font-family: 'Cinzel', serif; font-size: 1.25rem; font-weight: 700;
    letter-spacing: 3px; 
    color: var(--gold);
    @supports (-webkit-text-fill-color: transparent) and (-webkit-background-clip: text) {
        background: -webkit-linear-gradient(135deg, var(--gold-lt), var(--gold));
        background: linear-gradient(135deg, var(--gold-lt), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
    }
    margin-bottom: 14px; display: block;
}
.footer-text { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-col-head { font-family: 'Cinzel',serif; font-size: 0.7rem; letter-spacing: 2.5px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.footer-divider { border-color: var(--border); margin: 48px 0 28px; }
.spinner-border { color: var(--gold) !important; }

/* --- PROMO STRIP --------------------------------------- */
.promo-strip {
    background: linear-gradient(135deg, rgba(188,154,120,0.08) 0%, var(--dark3) 100%);
    border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border);
    padding: 28px 0;
}
.promo-tag {
    display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 4px 12px; border-radius: var(--radius-pill);
    background: rgba(220,53,69,0.15); border: 1px solid rgba(220,53,69,0.3); color: #ff7d8a;
    margin-bottom: 8px;
}

/* Animations */
@keyframes fadeInUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeInUp 0.65s var(--ease) both; }
.d1 { animation-delay: 80ms; } .d2 { animation-delay: 180ms; }
.d3 { animation-delay: 280ms; } .d4 { animation-delay: 380ms; }

@media (max-width: 991px) { .res-card { padding: 28px 20px; } .hero-frame { inset: 16px; } }
@media (max-width: 767px) {
    .floating-items-row { padding: 0 10px; min-height: 120px; }
    .fi-circle.size-lg { width: 80px; height: 80px; }
    .fi-circle.size-md { width: 62px; height: 62px; }
    .fi-circle.size-sm { width: 48px; height: 48px; }
}

/* SHIMMER LOADING EFFECT */
.gallery-item, .about-img-wrap, .fi-circle {
    background: #151515;
    background-image: linear-gradient(90deg, #151515 0px, #222222 40px, #151515 80px);
    background-size: 600px;
    animation: shimmer 2s infinite linear;
    position: relative;
    overflow: hidden;
}

@keyframes shimmer {
    0% { background-position: -600px 0; }
    100% { background-position: 600px 0; }
}

.gallery-item img, .about-img-wrap img, .fi-circle img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.gallery-item img.loaded, .about-img-wrap img.loaded, .fi-circle img.loaded {
    opacity: 1;
}

/* SCROLL TO TOP BUTTON */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-lt), var(--gold) 60%, var(--gold-dk));
    color: var(--black);
    border: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 20px rgba(188,154,120,0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#scrollTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.7), 0 0 30px rgba(188,154,120,0.5);
    background: var(--gold-lt);
}

/* WHATSAPP FLOATING BUTTON */
#whatsappFab {
    position: fixed;
    bottom: 92px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: waPulse 2.5s infinite;
}
#whatsappFab:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0,0,0,0.4);
    color: #fff;
}
@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 4px 16px rgba(37, 211, 102, 0.45); }
    70%  { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 4px 16px rgba(37, 211, 102, 0.45); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 16px rgba(37, 211, 102, 0.45); }
}
