/* ==========================================================================
   MCOFFEE - LUXURY COFFEE BRAND WEBSITE
   Theme: Luxury Dark Coffee, Black, Gold & Cream
   Typography: Cairo & Tajawal (Arabic RTL)
   ========================================================================== */

/* --- CSS Variables & Design System --- */
:root {
    --bg-dark: #0D0B0A;
    --bg-card: #161311;
    --bg-card-hover: #1F1B18;
    --bg-surface: #1A1614;
    
    --primary-brown: #2C1A14;
    --accent-gold: #D4AF37;
    --accent-gold-light: #F3E5AB;
    --accent-gold-dark: #AA820A;
    
    --text-white: #FFFFFF;
    --text-cream: #F5EBE6;
    --text-muted: #A39791;
    
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.35);
    
    --font-heading: 'Cairo', sans-serif;
    --font-body: 'Tajawal', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 1px rgba(212, 175, 55, 0.2);
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-cream);
    font-family: var(--font-body);
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

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

button, input, textarea {
    font-family: inherit;
    outline: none;
    border: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Scroll Progress Bar --- */
#scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s linear;
}

/* --- Loading Screen --- */
#loader {
    position: fixed;
    inset: 0;
    background-color: var(--bg-dark);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.cup-wrapper {
    font-size: 3.5rem;
    color: var(--accent-gold);
    animation: pulse 1.5s infinite ease-in-out;
    margin-bottom: 1rem;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.loader-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    margin: 0 auto;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0%;
    background: var(--gold-gradient);
    animation: fillLoader 2s ease-in-out forwards;
}

@keyframes fillLoader {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 15px var(--accent-gold)); }
}

/* --- Typography Helpers --- */
.sub-heading {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.8rem;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 1.5rem;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.gold-divider span {
    color: var(--accent-gold);
    padding: 0 1rem;
    font-size: 0.9rem;
}

.gold-text {
    color: var(--accent-gold);
}

/* --- Buttons & Ripples --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.btn-card {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
}

.btn-card:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
}

.btn-block {
    width: 100%;
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: rippleAnimation 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 40px;
    right: 0;
    left: 0;
    height: 90px;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    top: 0;
    height: 75px;
    background: rgba(13, 11, 10, 0.92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-cream);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: transparent;
    color: var(--text-white);
    font-size: 1.6rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 11, 10, 0.7) 0%,
        rgba(13, 11, 10, 0.85) 50%,
        rgba(13, 11, 10, 1) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    margin-top: 3rem;
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent-gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-cream);
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.scroll-down-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse-icon {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 2px;
    animation: scrollWheel 1.8s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* --- Section Container --- */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

/* --- Products Section --- */
.products-section {
    background-color: var(--bg-dark);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-premium);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    background: var(--bg-card-hover);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.15);
}

.product-card.centered-card {
    grid-column: span 2;
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
}

.card-image-wrap {
    position: relative;
    height: 320px;
    background: #000;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(13, 11, 10, 0.85);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: var(--gold-gradient);
    color: #000;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.coffee-type {
    color: var(--accent-gold);
    font-size: 0.88rem;
    font-weight: 600;
}

.rating {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.6rem;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.spec-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
}

.spec-chip i {
    font-size: 0.75rem;
}

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

.price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.price-val {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
}

.price-val small {
    font-size: 0.85rem;
    color: var(--accent-gold);
}

/* --- About Section --- */
.about-section {
    background-color: var(--bg-surface);
    position: relative;
}

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

.about-img-frame {
    position: relative;
}

.main-about {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.small-img-floating {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 220px;
    height: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--bg-surface);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.small-img-floating img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gold-gradient);
    color: #000;
    padding: 1.2rem 1.8rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.85rem;
    font-weight: 700;
}

.about-description {
    font-size: 1.15rem;
    color: var(--text-cream);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.feature-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-info h3 {
    font-size: 1.05rem;
    color: var(--text-white);
    margin-bottom: 0.2rem;
}

.feature-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --- Map Section --- */
.map-section {
    background-color: var(--bg-dark);
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-wrapper iframe {
    filter: grayscale(80%) invert(90%) contrast(120%);
    transition: filter 0.5s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) invert(0%) contrast(100%);
}

.map-overlay-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(13, 11, 10, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    max-width: 320px;
}

.gold-icon {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.map-overlay-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 0.4rem;
}

.map-overlay-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

/* --- Contact Section --- */
.contact-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
}

.contact-card-glass {
    background: rgba(22, 19, 17, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-premium);
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-buttons-group {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-md);
    min-width: 280px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wa-btn {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.wa-btn:hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.ig-btn {
    background: rgba(225, 48, 108, 0.1);
    color: #E1306C;
    border-color: rgba(225, 48, 108, 0.3);
}

.ig-btn:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: right;
    flex-grow: 1;
}

.btn-sub {
    font-size: 0.75rem;
    opacity: 0.8;
}

.btn-main {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
}

.arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.contact-btn:hover .arrow {
    transform: translateX(-5px);
}

/* --- Footer --- */
.footer {
    background: #080605;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-links h4, .footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 1.2rem;
    position: relative;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
    padding-right: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--gold-gradient);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* --- Floating WhatsApp & Back to Top --- */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    z-index: 990;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.7);
}

.wa-tooltip {
    position: absolute;
    left: 70px;
    background: #000;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-whatsapp:hover .wa-tooltip {
    opacity: 1;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 990;
    transition: var(--transition-smooth);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-gradient);
    color: #000;
    transform: translateY(-4px);
}

/* --- Order Modal --- */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: var(--transition-smooth);
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-backdrop.open .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);

}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    color: var(--text-cream);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.form-group .req {
    color: var(--accent-gold);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.summary-box {
    background: rgba(212, 175, 55, 0.08);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    text-align: right;
    white-space: pre-line;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
    padding-top: 0.7rem;
    margin-top: 0.7rem;
    margin-bottom: 0;
}

/* --- Product Details Modal --- */
.details-card {
    max-width: 480px;
    padding: 0;
    overflow: hidden;
}

.details-image-wrap {
    position: relative;
    height: 280px;
    background: #000;
}

.details-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-content {
    padding: 1.8rem 2rem 2rem;
    text-align: center;
}

.details-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}

.details-price {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.25rem 1.2rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.2rem;
}

.details-desc {
    color: var(--text-cream);
    font-size: 0.95rem;
    line-height: 1.9;
    text-align: right;
    white-space: pre-line;
    margin-bottom: 1.2rem;
}

.details-specs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.details-spec-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 0.7rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.details-spec-label {
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
}

.details-spec-value {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 700;
}

@media (max-width: 480px) {
    .details-specs {
        grid-template-columns: 1fr;
    }
}

/* --- Scroll Animations --- */
[data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll].animated {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card.centered-card {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        z-index: 999;
    }

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

    .mobile-toggle {
        display: block;
        z-index: 1000;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

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

    .modal-card {
        padding: 1.5rem 1.2rem;
        max-height: 85vh;
    }

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

    .small-img-floating {
        display: none;
    }

    .contact-btn {
        width: 100%;
    }
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR (MARQUEE)
   ========================================================================== */

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #111111;
    height: 40px;
    width: 100%;
    overflow: hidden;
    z-index: 1001;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.announcement-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.announcement-bar:hover .announcement-track {
    animation-play-state: paused;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-right: 2rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-white);
}

.announcement-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.announcement-content .divider {
    color: rgba(212, 175, 55, 0.4);
    font-weight: 400;
}

.icon-green {
    color: #2ecc71;
    font-size: 0.95rem;
}

.icon-truck {
    color: var(--accent-gold);
    font-size: 1rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(50%);
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        height: 38px;
    }
    .navbar {
        top: 38px;
    }
    .navbar.scrolled {
        top: 0;
    }
    .announcement-content {
        font-size: 0.82rem;
        gap: 1rem;
        padding-right: 1.2rem;
    }
    .announcement-track {
        animation-duration: 18s;
    }
}

/* ==========================================================================
   CART NAVBAR BUTTON & CART DRAWER STYLES
   ========================================================================== */
.nav-cart-wrapper {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.nav-cart-btn {
    position: relative;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--accent-gold-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-cart-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: var(--gold-glow);
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e74c3c;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.bump {
    transform: scale(1.3);
}

/* Cart Drawer Sliding Modal */
.cart-backdrop {
    justify-content: flex-start;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    z-index: 100001;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .cart-drawer {
    transform: translateX(-450px);
}

@media (max-width: 480px) {
    .cart-drawer {
        right: -100%;
        max-width: 100%;
    }
    .modal-backdrop.open .cart-drawer {
        transform: translateX(-100%);
    }
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.cart-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-title h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-white);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.cart-empty i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: rgba(212, 175, 55, 0.3);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-surface);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 10px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.cart-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.cart-item-img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--accent-gold-light);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.cart-qty-btn {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.cart-qty-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.cart-qty-val {
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.cart-remove-btn {
    background: transparent;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1rem;
    padding: 6px;
    transition: var(--transition-fast);
}

.cart-remove-btn:hover {
    color: #ff6b6b;
    transform: scale(1.1);
}

.cart-footer {
    padding: 1.2rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0,0,0,0.4);
}

.shipping-notice {
    background: rgba(212, 175, 55, 0.1);
    border: 1px dashed var(--accent-gold);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.shipping-notice.free {
    background: rgba(46, 204, 113, 0.1);
    border-color: #2ecc71;
    color: #2ecc71;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.cart-total-line {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.2rem;
}


