/* Bloomy Elite - Premium Stylesheet */

:root {
    /* Rosé Wine Color Palette */
    --cream: #FFF9F9;
    --cream-light: #FFFAFA;
    --blush: #FFE4E6;
    --blush-dark: #FECDD3;
    --rose: #F9A8D4;
    --rose-dark: #EC4899;
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --gold-dark: #B8942E;
    --forest: #881337;
    --forest-light: #9F1239;
    --charcoal: #0A0A0A;
    --charcoal-light: #525252;
    --white: #FFFFFF;
    --black: #000000;
    --error: #DC2626;
    --success: #059669;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Fluid Typography Base */
    --base-font-size: clamp(14px, 1.2vw, 16px);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar {
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 50%, #0A0A0A 100%);
    color: var(--cream);
    text-align: center;
    padding: 12px var(--space-md);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    animation: shimmer 4s infinite;
}

.announcement-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

@keyframes shimmer {
    100% { left: 100%; }
}

.announcement-bar span {
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.announcement-bar strong {
    color: #D4AF37;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.announcement-bar .announcement-icon {
    margin: 0 12px;
    color: #D4AF37;
    opacity: 0.6;
}

/* ========== HEADER ========== */
header {
    background: #FFF9F5;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px var(--space-xl);
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    gap: var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 15px;
    background: #FFEFEF;
    border: 1px solid #DDC6A4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #FFF5F5;
    border-color: #E5D4B8;
}

.logo-icon {
    font-size: 2.4rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFDCDC;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transform: rotate(5deg);
    transition: all 0.3s ease;
    position: relative;
}

.logo:hover .logo-icon {
    transform: rotate(8deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.logo-bloomy {
    color: #61182B;
    transition: color 0.3s ease;
}

.logo:hover .logo-bloomy {
    color: #7F1E3A;
}

.logo-elite {
    background: linear-gradient(135deg, #61182B 0%, #98572A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo:hover .logo-elite {
    background: linear-gradient(135deg, #7F1E3A 0%, #B05000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: #8C6C6C;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.logo:hover .logo-tagline {
    color: #A07070;
}

/* Main Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #FFF9F5;
    padding: 8px 12px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

nav .mobile-nav-close {
    display: none;
}

nav a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: #1F2937;
    text-decoration: none;
    letter-spacing: 0.1px;
    position: relative;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    z-index: 1;
}

nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: linear-gradient(135deg, #881337 0%, #BE123C 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
    box-shadow: 0 2px 8px rgba(136, 19, 55, 0.3);
}

nav a:hover {
    color: #1F2937;
}

nav a.active {
    color: white;
    font-weight: 600;
}

nav a.active::before {
    opacity: 1;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-action-btn,
.search-toggle {
    position: relative;
    background: #FFFFFF;
    border: none;
    font-size: 1.1rem;
    color: #881337;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.header-action-btn:hover,
.search-toggle:hover {
    background: #FFFFFF;
    color: #881337;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.cart-btn {
    position: relative;
    background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    border: none;
    font-size: 1.15rem;
    color: #000000;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5), 0 2px 8px rgba(212, 175, 55, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.cart-btn i {
    color: #000000;
}

.cart-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6), 0 3px 10px rgba(212, 175, 55, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    color: #000;
    background: linear-gradient(135deg, #E5C158 0%, #F4E4BC 100%);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #881337 0%, #BE123C 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 3px 10px rgba(136, 19, 55, 0.3);
    animation: cartPulse 0.3s ease;
}

@keyframes cartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: var(--charcoal);
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: var(--blush);
    color: #881337;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, #881337 0%, #BE123C 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(136, 19, 55, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(136, 19, 55, 0.4);
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: #881337;
    border: 2px solid #D4AF37;
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 6px;
}

.btn-secondary:hover {
    color: #000;
    border-color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover::after {
    opacity: 1;
}

/* GOLD Button */
.btn-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #B8942E 50%, #D4AF37 100%);
    background-size: 200% 200%;
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
    animation: goldShimmer 3s ease infinite;
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255,255,255,0.4);
}

/* White Button */
.btn-white {
    background: white;
    color: #881337;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background: #FFF5F6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Button Sizes */
.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 10px; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; border-radius: 6px; }
.btn-xl { padding: 20px 48px; font-size: 1.1rem; border-radius: 12px; }
.btn i { font-size: 0.9em; }

/* ========== UTILITIES ========== */
.container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 var(--space-xl);
    width: 100%;
    box-sizing: border-box;
}
.section { 
    padding: var(--space-4xl) var(--space-xl);
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
}

.section-header::before {
    content: '✦';
    display: block;
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: var(--space-md);
    animation: pulse 2s ease infinite;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    border-radius: 2px;
}

.section-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: var(--charcoal-light);
    max-width: 600px;
    margin: var(--space-lg) auto 0;
}

.text-center { text-align: center; }
.text-gold { color: #D4AF37 !important; }
.text-forest { color: var(--forest); }

/* Gold Decorative Elements */
.gold-accent { color: #D4AF37; }
.gold-border { border: 2px solid #D4AF37 !important; }
.gold-underline { position: relative; }
.gold-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #E5C158);
}

/* Premium Card Styling */
.premium-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #E5C158, #D4AF37);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(136, 19, 55, 0.15);
    border-color: #D4AF37;
}

/* Gold Badge */
.gold-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Gold Divider */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: var(--space-xl) 0;
}

/* ========== PRODUCTS GRID ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    width: 100%;
    box-sizing: border-box;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(136, 19, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
    width: 100%;
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
    padding: 0;
    margin: 0;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.product-info { padding: var(--space-lg); }

.product-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.product-description {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    margin-bottom: var(--space-sm);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: var(--space-sm);
}

.product-tag {
    background: linear-gradient(135deg, rgba(255, 228, 230, 0.8) 0%, rgba(254, 205, 211, 0.5) 100%);
    color: var(--forest);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--forest);
}

.product-price.original {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
}

.add-to-cart-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #881337 0%, #BE123C 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(136, 19, 55, 0.25);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
    color: var(--cream);
    padding: var(--space-4xl) var(--space-xl) var(--space-xl);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #881337, #D4AF37, #881337);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    width: 100%;
    box-sizing: border-box;
}

.footer-brand { max-width: 300px; }

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo span:first-child { font-size: 2rem; }

.footer-logo-text {
    background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.footer-column h4 {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: #D4AF37;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column h4::before {
    content: '✦';
    font-size: 0.7rem;
}

.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: var(--space-sm); }

.footer-column a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.7;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    opacity: 1;
    color: #D4AF37;
    transform: translateX(5px);
}

.footer-contact p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-contact i {
    color: #D4AF37;
    width: 20px;
}

.footer-bottom {
    max-width: 1400px;
    margin: var(--space-3xl) auto 0;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    font-size: 0.85rem;
    opacity: 0.6;
    position: relative;
    z-index: 100;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-copyright {
    flex: 1;
}

.footer-policies {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.footer-credit-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10002; /* Above FAB buttons */
    margin-top: var(--space-sm);
}

.footer-credit {
    font-size: 0.9rem;
    opacity: 1;
    color: var(--cream);
    line-height: 1.5;
    text-align: center;
}

.credit-link {
    color: #D4AF37 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    position: relative;
    z-index: 10003 !important; /* Highest z-index for clickability */
    pointer-events: auto !important; /* Ensure link is clickable */
    cursor: pointer !important;
    touch-action: manipulation; /* Better touch handling on mobile */
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3); /* Mobile tap highlight */
    min-height: 32px; /* Better touch target */
    line-height: 1.5;
}

.credit-link:hover {
    color: #E5C158 !important;
    text-decoration: underline !important;
    background: rgba(212, 175, 55, 0.1);
}

.credit-link:active {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(0.98);
}

.footer-bottom a {
    color: var(--cream);
    text-decoration: none;
    margin-left: var(--space-lg);
    transition: color 0.3s ease;
}

.footer-bottom a:hover { color: #D4AF37; }

/* Credit Link - Removed duplicate rules, using .credit-link class instead */

/* ========== QUICK ACTION BUTTONS - DESKTOP ========== */
.footer-quick-actions-desktop {
    display: none; /* Hidden by default, shown on desktop */
}

@media (min-width: 768px) {
    .footer-quick-actions-desktop {
        display: flex;
        gap: var(--space-lg);
        justify-content: center;
        align-items: center;
        margin: var(--space-2xl) auto var(--space-xl);
        max-width: 1400px;
        padding: 0 var(--space-xl);
    }
    
    .footer-quick-action-btn-desktop {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-sm);
        padding: var(--space-lg) var(--space-xl);
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
        border: 2px solid rgba(212, 175, 55, 0.2);
        border-radius: 16px;
        text-decoration: none !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        min-width: 140px;
        position: relative;
        overflow: hidden;
    }
    
    .footer-quick-action-btn-desktop::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
        transition: left 0.3s ease;
    }
    
    .footer-quick-action-btn-desktop:hover::before {
        left: 0;
    }
    
    .footer-quick-action-btn-desktop i {
        font-size: 2rem !important;
        color: #D4AF37 !important;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
    }
    
    .footer-quick-action-btn-desktop span {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: var(--cream) !important;
        position: relative;
        z-index: 1;
        text-decoration: none !important;
    }
    
    .footer-quick-action-btn-desktop:hover {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
        border-color: rgba(212, 175, 55, 0.4);
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
    }
    
    .footer-quick-action-btn-desktop:hover i {
        transform: scale(1.2);
        color: #E5C158 !important;
    }
    
    .footer-quick-action-btn-desktop:hover span {
        color: #D4AF37 !important;
    }
}

/* ========== FLOATING ACTION BUTTONS ========== */
.fab-container {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-end;
    z-index: 10001;
}

/* On mobile, ensure FAB doesn't obstruct footer credit */
@media (max-width: 768px) {
    .fab-container {
        bottom: max(var(--space-lg), env(safe-area-inset-bottom));
        right: var(--space-md);
    }
}

/* Chat with Rose Button - Brand Gold Gradient */
.chat-rose-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    color: #000000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.chat-rose-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #E5C158 0%, #F4E4BC 100%);
}

.chat-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-icon-wrapper i {
    font-size: 1.2rem;
    color: var(--forest);
}

.chat-notification-dot {
    position: absolute;
    top: -2px;
    right: -4px;
    width: 10px;
    height: 10px;
    background: #881337;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.chat-btn-text {
    color: #000;
    font-weight: 600;
}

/* WhatsApp FAB - Circular Golden Button */
.whatsapp-fab {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #B8942E 100%);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    z-index: 10001;
}

.whatsapp-fab:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%);
}

/* Desktop: Side by Side */
@media (min-width: 768px) {
    .fab-container {
        flex-direction: row;
        gap: var(--space-md);
        align-items: center;
    }
    
    .chatbot-window {
        bottom: 100px;
    }
}

.chatbot-window {
    position: fixed;
    bottom: 120px;
    right: var(--space-xl);
    width: 400px;
    height: 550px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(212, 175, 55, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 10000;
    animation: fadeInUp 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.chatbot-window.active { display: flex; }

.chatbot-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    border-bottom: 2px solid #D4AF37;
}

.chatbot-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.chatbot-info h4 {
    font-family: var(--font-elegant);
    font-size: 1.15rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.chatbot-info span {
    font-size: 0.75rem;
    opacity: 0.8;
    color: #D4AF37;
}

.chatbot-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.8;
}

.chatbot-close:hover { opacity: 1; }

.chatbot-messages {
    flex: 1;
    padding: var(--space-lg);
    overflow-y: auto;
    background: linear-gradient(180deg, #FFFAFA 0%, #FFF5F6 100%);
}

.chat-message { margin-bottom: var(--space-md); display: flex; gap: var(--space-sm); }
.chat-message.bot { justify-content: flex-start; }
.chat-message.user { justify-content: flex-end; }

.chat-bubble {
    max-width: 85%;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    line-height: 1.55;
}

.chat-message.bot .chat-bubble {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(255, 228, 230, 0.5);
}

.chat-message.user .chat-bubble {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.chat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.chat-chip {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(229, 193, 88, 0.1) 100%);
    color: var(--charcoal);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.chat-chip:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    color: #000;
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Chatbot Product Cards */
.chat-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: var(--space-sm);
}

.chat-product-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #eee;
    transition: all 0.2s ease;
}

.chat-product-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.chat-product-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.chat-product-info {
    flex: 1;
    min-width: 0;
}

.chat-product-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-product-desc {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-product-price {
    font-weight: 700;
    font-size: 0.85rem;
    color: #D4AF37;
}

.chat-product-original {
    font-size: 0.75rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 6px;
}

.chat-product-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.chat-product-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.chatbot-input {
    padding: var(--space-md);
    background: var(--white);
    border-top: 1px solid var(--blush);
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid var(--blush-dark);
    border-radius: 50px;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.chatbot-input input:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.chatbot-input button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #000;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chatbot-whatsapp {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    font-size: 1.2rem;
}

.chatbot-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.chatbot-input button:hover {
    background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
    transform: scale(1.05);
}

/* ========== SECRET ADMIN ========== */
.secret-admin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.secret-admin-overlay.active { display: flex; }

.secret-admin-panel {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    position: relative;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.secret-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal-light);
}

.secret-logo { font-size: 3rem; margin-bottom: 1rem; }

.secret-admin-panel h2 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.secret-admin-panel p {
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
}

.secret-form input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #eee;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.secret-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.secret-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #881337 0%, #BE123C 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secret-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(136, 19, 55, 0.3);
}

/* ========== TOAST NOTIFICATIONS ========== */
.toast-container {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: 9999;
}

.toast {
    background: var(--charcoal);
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    animation: slideIn 0.3s ease;
    max-width: 350px;
}

.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid var(--error); }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ========== RESPONSIVE ========== */

/* Large Desktops (27" and above) - Already optimized */
/* Medium Desktops / Large Laptops (1600px - 1920px) */
@media (max-width: 1600px) {
    .container,
    .header-main,
    .footer-content,
    .footer-bottom {
        max-width: 1200px;
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }
    
    .section {
        padding: var(--space-3xl) var(--space-lg);
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

/* Standard Laptops (1366px - 1600px) */
@media (max-width: 1400px) {
    .container,
    .header-main,
    .footer-content,
    .footer-bottom {
        max-width: 1100px;
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
    
    .section {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

/* Small Laptops (1280px - 1366px) - Critical breakpoint */
@media (max-width: 1366px) {
    :root {
        --space-xl: 1.5rem;
        --space-2xl: 2.5rem;
        --space-3xl: 3rem;
        --space-4xl: 4rem;
    }
    
    .container,
    .header-main,
    .footer-content,
    .footer-bottom {
        max-width: 100%;
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
    
    .section {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .header-main {
        padding: 12px var(--space-md);
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
}

/* Smaller Laptops (1024px - 1280px) */
@media (max-width: 1280px) {
    :root {
        --space-xl: 1.25rem;
        --space-2xl: 2rem;
        --space-3xl: 2.5rem;
        --space-4xl: 3.5rem;
    }
    
    .container,
    .header-main,
    .footer-content,
    .footer-bottom {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-brand {
        grid-column: span 3;
        max-width: 100%;
        text-align: center;
    }
    
    .social-links { justify-content: center; }
}

@media (max-width: 992px) {
    .menu-toggle { display: flex; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 80px 24px 24px;
        gap: 8px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-radius: 0;
        border: none;
    }
    
    nav.mobile-open { right: 0; }
    
    nav a {
        padding: 16px 20px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    nav a:hover::before,
    nav a.active::before { opacity: 0; }
    
    nav a:hover,
    nav a.active {
        background: linear-gradient(135deg, rgba(136, 19, 55, 0.1) 0%, rgba(190, 18, 60, 0.1) 100%);
        color: var(--charcoal);
    }
    
    nav .mobile-nav-close {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--blush);
        border: none;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: #881337;
        transition: all 0.3s ease;
    }
    
    nav .mobile-nav-close:hover {
        background: #881337;
        color: white;
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 2.5rem;
        --space-4xl: 3.5rem;
    }
    
    .announcement-bar {
        font-size: 0.72rem;
        padding: 10px 12px;
    }
    
    .header-main { padding: 10px 14px; }
    
    .logo {
        padding: 6px 12px 6px 6px;
        gap: 10px;
    }
    
    .logo-icon { font-size: 2rem; padding: 6px; }
    .logo-text { font-size: 1.4rem; }
    .logo-tagline { font-size: 0.55rem; letter-spacing: 1.5px; }
    
    .header-action-btn,
    .search-toggle { width: 40px; height: 40px; font-size: 1rem; }
    .cart-btn { width: 42px; height: 42px; font-size: 0.95rem; }
    
    .section { padding: var(--space-2xl) var(--space-md); }
    .section-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 0.95rem; }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
    
    .footer-brand { grid-column: span 2; }
    .footer-column h4 { font-size: 1rem; margin-bottom: var(--space-md); }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .chatbot-trigger { width: 56px; height: 56px; bottom: 20px; right: 16px; }
    
    .chatbot-window {
        width: calc(100% - 32px);
        height: calc(100vh - 140px);
        right: 16px;
        bottom: 90px;
    }
    
    nav { background: white; padding: 0; border: none; border-radius: 0; }
}

/* Desktop: Pill-shaped bubbles (elongated, very rounded) */
/* Mobile: More circular/compact bubbles */
@media (max-width: 768px) {
    .chat-bubble {
        border-radius: 30px;
        padding: 12px 16px;
        max-width: 85%;
    }
    
    .chatbot-input input {
        border-radius: 50px;
        padding: 10px 16px;
    }
    
    .chatbot-input button,
    .chatbot-whatsapp {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .products-grid { grid-template-columns: 1fr; }
    
    /* ========== MOBILE FOOTER ENHANCEMENTS ========== */
    footer {
        padding: var(--space-2xl) var(--space-md) var(--space-xl);
        background: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: left;
    }
    
    .footer-brand {
        grid-column: span 1;
        text-align: center;
        padding-bottom: var(--space-lg);
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        margin-bottom: var(--space-md);
    }
    
    .footer-logo {
        justify-content: center;
        font-size: 1.4rem;
        margin-bottom: var(--space-md);
    }
    
    .footer-logo span:first-child { font-size: 1.8rem; }
    
    .footer-brand p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: var(--space-md);
        padding: 0 var(--space-sm);
    }
    
    .social-links {
        justify-content: center;
        gap: var(--space-md);
        margin-top: var(--space-md);
    }
    
    .social-links a {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        font-size: 1.2rem;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    }
    
    /* Collapsible Footer Columns for Mobile */
    .footer-column {
        grid-column: span 1;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        padding-bottom: var(--space-md);
        margin-bottom: var(--space-md);
    }
    
    .footer-column:last-of-type {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: var(--space-md);
        color: #D4AF37;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        user-select: none;
        -webkit-user-select: none;
        padding: var(--space-sm) 0;
        transition: color 0.2s ease;
    }
    
    .footer-column h4:active {
        color: #E5C158;
    }
    
    .footer-column h4::after {
        content: '+';
        font-size: 1.2rem;
        font-weight: 300;
        color: #D4AF37;
        transition: transform 0.3s ease;
        margin-left: auto;
        padding-left: var(--space-sm);
    }
    
    .footer-column.expanded h4::after {
        transform: rotate(45deg);
    }
    
    .footer-column ul {
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .footer-column.expanded ul {
        max-height: 500px;
        padding: var(--space-sm) 0 var(--space-md);
    }
    
    .footer-column li {
        margin-bottom: 0;
    }
    
    .footer-column a {
        color: var(--cream);
        text-decoration: none;
        opacity: 0.8;
        font-size: 0.9rem;
        transition: all 0.2s ease;
        display: block;
        padding: var(--space-xs) 0;
        min-height: 44px; /* Better touch target */
        display: flex;
        align-items: center;
        border-radius: 6px;
        padding-left: var(--space-sm);
        margin-left: calc(-1 * var(--space-sm));
    }
    
    .footer-column a:active {
        opacity: 1;
        color: #D4AF37;
        background: rgba(212, 175, 55, 0.1);
        transform: translateX(4px);
    }
    
    /* Contact Column - Always Expanded on Mobile */
    .footer-contact {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .footer-contact h4 {
        cursor: default;
    }
    
    .footer-contact h4::after {
        display: none;
    }
    
    .footer-contact ul {
        max-height: none !important;
        padding: 0 !important;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
        opacity: 0.85;
        margin-bottom: var(--space-sm);
        padding: var(--space-xs) 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .footer-contact i {
        color: #D4AF37;
        width: 24px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    /* Make contact info clickable */
    .footer-contact p:has(a) {
        cursor: pointer;
    }
    
    .footer-contact p:active {
        opacity: 1;
        transform: translateX(2px);
    }
    
    /* Footer Bottom - Mobile Optimized */
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
        padding-top: var(--space-lg);
        padding-bottom: calc(var(--space-3xl) + 80px); /* Extra space for FAB buttons */
        margin-top: var(--space-lg);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        font-size: 0.8rem;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .footer-copyright {
        order: 1;
        text-align: center;
    }
    
    .footer-policies {
        order: 2;
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
    }
    
    .footer-credit-row {
        order: 3;
        margin-top: var(--space-md);
    }
    
    .footer-credit {
        display: inline !important;
        white-space: nowrap !important;
    }
    
    .credit-link {
        pointer-events: auto !important; /* Make link clickable */
        z-index: 10003 !important;
        touch-action: manipulation !important; /* Better touch handling */
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3) !important;
        display: inline !important;
        padding: 0 2px !important;
    }
    
    .footer-bottom a:not(.credit-link) {
        margin-left: 0;
        padding: var(--space-sm) var(--space-md);
        border-radius: 8px;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.2);
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }
    
    /* Credit link - inline, no button styling */
    .footer-bottom a.credit-link {
        background: transparent !important;
        border: none !important;
        padding: 0 4px !important;
        min-height: auto !important;
        display: inline !important;
        margin-left: 0 !important;
        text-decoration: none !important;
    }
    
    .footer-bottom a:active {
        background: rgba(212, 175, 55, 0.2);
        transform: scale(0.98);
    }
    
    /* Quick Action Buttons for Mobile */
    .footer-quick-actions {
        display: flex;
        gap: var(--space-lg) !important; /* Better spacing between buttons */
        margin-top: var(--space-xl);
        padding: var(--space-lg) var(--space-md);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        background: rgba(212, 175, 55, 0.05);
        border-radius: 20px 20px 0 0;
    }
    
    /* Override any global link styles that might conflict */
    .footer-quick-actions a {
        color: inherit !important;
        text-decoration: none !important;
    }
    
    .footer-quick-actions a:visited {
        color: inherit !important;
    }
    
    .footer-quick-actions a:link {
        color: inherit !important;
    }
    
    /* Hide quick actions on desktop */
    @media (min-width: 577px) {
        .footer-quick-actions {
            display: none;
        }
    }
    
    .footer-quick-action-btn {
        flex: 1;
        padding: var(--space-lg) var(--space-md);
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 16px;
        text-decoration: none !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-md) !important; /* Better spacing between icon and text */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        min-height: 80px;
        position: relative;
        overflow: hidden;
    }
    
    .footer-quick-action-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
        transition: left 0.3s ease;
    }
    
    .footer-quick-action-btn:hover::before,
    .footer-quick-action-btn:active::before {
        left: 0;
    }
    
    .footer-quick-action-btn i {
        font-size: 1.8rem !important;
        color: #D4AF37 !important; /* Gold icons */
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
        margin-bottom: 0 !important;
        display: block !important;
    }
    
    .footer-quick-action-btn span {
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        color: #FFFFFF !important; /* White text */
        position: relative;
        z-index: 1;
        transition: color 0.3s ease;
        display: block !important;
        text-decoration: none !important;
    }
    
    .footer-quick-action-btn:hover {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
        border-color: rgba(212, 175, 55, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    }
    
    .footer-quick-action-btn:hover i {
        transform: scale(1.15);
        color: #E5C158 !important; /* Lighter gold on hover */
    }
    
    .footer-quick-action-btn:hover span {
        color: #FFFFFF !important; /* Keep text white on hover */
    }
    
    .footer-quick-action-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
    }
    
    .footer-quick-action-btn:active i {
        color: #D4AF37 !important;
    }
    
    .footer-quick-action-btn:active span {
        color: #FFFFFF !important;
    }
    
    .header-main { padding: 10px 12px; }
    .logo-text { font-size: 1.2rem; }
    .logo-tagline { display: none; }
    .section-title { font-size: 1.4rem; }
    
    .chatbot-window {
        width: 100%;
        height: calc(100vh - 120px);
        right: 0;
        bottom: 70px;
        border-radius: 20px 20px 0 0;
    }
}

/* Touch-friendly */
@media (hover: none) and (pointer: coarse) {
    .btn:active { transform: scale(0.98); }
    nav a:active { background: rgba(136, 19, 55, 0.1); }
    .social-links a { width: 48px; height: 48px; }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
    .fab-container { bottom: max(20px, env(safe-area-inset-bottom)); }
    .chatbot-window { bottom: max(100px, calc(90px + env(safe-area-inset-bottom))); }
    footer { padding-bottom: max(var(--space-xl), env(safe-area-inset-bottom)); }
}

/* Print styles */
@media print {
    .fab-container,
    .chatbot-window,
    .announcement-bar,
    .menu-toggle { display: none !important; }
}
