/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* CSS Variables for Quiet Luxury Theme */
:root {
    --color-bg: #F9F8F6; /* Soft natural linen */
    --color-text: #2C2C2C; /* Dark charcoal */
    --color-accent: #879275; /* Sage green / Olive */
    --color-gold: #C5A880; /* Muted champagne gold */
    --color-white: #FFFFFF;
    --color-dark: #1A1A1A;

    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

p {
    font-weight: 300;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.page-header {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: white;
}

.page-header h1 {
    color: var(--color-white);
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-dark);
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--color-dark);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--color-dark);
    letter-spacing: 3px;
}

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

.btn-light:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(249, 248, 246, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 15px 50px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-dark);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-text);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
    border-left: 1px solid #ddd;
    padding-left: 20px;
    margin-left: 10px;
}

.lang-dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-dark);
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.4s ease;
}

.lang-dropdown-content {
    visibility: hidden;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-white);
    min-width: 130px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 4px;
    z-index: 1001;
    overflow: hidden;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-dropdown:hover .lang-dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    margin-top: 15px; /* Slight slide up effect */
}

.lang-dropdown-content a {
    color: #555;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.lang-dropdown-content a:hover {
    background-color: var(--color-bg);
    color: var(--color-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    color: var(--color-dark);
    line-height: 1;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 248, 246, 0.65); /* Increased opacity for readability */
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    color: var(--color-dark);
    /* 1.5s duration, 1s delay, 'both' ensures it stays invisible before it starts */
    animation: fadeInUp 1.5s ease-out 1s both;
}

/* Sections */
section {
    padding: 100px 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Split Section (Image Left, Text Right) */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-section:hover .split-image {
    transform: scale(1.02);
}

.split-content {
    padding-left: 40px;
}

/* Grid Section (Products) */
.grid-section {
    text-align: center;
    background-color: var(--color-white);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    text-align: left;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-15px);
}

.product-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* Footer */
footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 80px 50px 40px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto 40px;
}

.footer-content p {
    color: #bbb;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.85rem;
    color: #888;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-in-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

.reveal-image {
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-image.fade-in-visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes subtleZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 992px) {
    .split-section {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column; /* Default: Content then Image */
    }

    /* For sections where the image was on the left, we need to ensure content stays first on mobile */
    .split-section.image-left {
        flex-direction: column-reverse; 
    }
    
    .split-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .lang-dropdown {
        border-left: none;
        border-top: 1px solid #ddd;
        padding-left: 0;
        padding-top: 15px;
        margin-top: 10px;
        margin-left: 0;
    }
    
    .lang-dropdown-content {
        position: static;
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        display: none; /* Hide by default on mobile, can be toggled via JS if needed */
    }
    
    .lang-dropdown.active .lang-dropdown-content {
        display: block;
    }

    .mobile-menu-btn {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

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

    section {
        padding: 60px 20px;
    }
}

/* Blog Premium UI */
.blog-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover, .category-btn.active {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.read-time {
    font-size: 0.8rem;
    color: #888;
    margin-left: 10px;
    position: relative;
}

.read-time::before {
    content: "•";
    margin-right: 10px;
}

/* Blog Grid & Cards (Moved from blog.html) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.blog-card {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.blog-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.newsletter-section {
    background-color: var(--color-bg);
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 80px;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.newsletter-form {
    display: flex;
    margin-top: 30px;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    border-color: var(--color-dark);
}

/* Blog Article Post View */
.article-header {
    padding-top: 180px;
    padding-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--color-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-hero-image {
    width: 100%;
    max-width: 750px;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    margin: 0 auto 40px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.article-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px 80px;
    font-size: 1.15rem;
    color: #333;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 2rem;
    color: #333;
}

.article-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.article-content ul {
    margin-bottom: 2rem;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
}


.related-posts-section {
    background: var(--color-white);
    padding: 80px 20px;
    border-top: 1px solid #eee;
}

.related-posts-section .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-posts-section .blog-img {
    height: 200px;
}

.related-posts-section .blog-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-posts-section .blog-content {
    padding: 20px;
}

.related-posts-section .blog-content p {
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .related-posts-section .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .related-posts-section .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Specific Styles & Lightbox */
.product-specs span {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.product-specs strong {
    font-size: 1.1rem;
    color: var(--color-dark);
    font-weight: 500;
}
#product-desc h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--color-dark);
    font-weight: 300;
}
#product-desc p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

/* Lightbox Modal */
.lightbox-trigger {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}
.lightbox-trigger:hover {
    transform: scale(1.02);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

/* Fix for You May Also Like images */
.related-product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
}
.lightbox.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-dark);
    font-size: 40px;
    font-weight: 100;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* =============================
   WHATSAPP FLOATING BUTTON
   ============================= */
.whatsapp-float {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* Tooltip on hover */
.whatsapp-float::before {
    content: 'WhatsApp';
    position: absolute;
    right: 66px;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

/* =============================
   FOOTER SOCIAL MEDIA
   ============================= */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    margin-bottom: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: rgba(255,255,255,0.8);
    color: #fff;
    transform: translateY(-2px);
    background: rgba(255,255,255,0.08);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* =============================
   ABOUT PAGE — STATS BLOCK
   ============================= */
.stats-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin: 30px 0;
}

.stat-item .stat-number {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stat-item .stat-label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    font-weight: 400;
}

/* About — Values Block */
.values-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 20px 0 60px;
}

.value-card {
    padding: 36px;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 4px;
    background: var(--color-white);
    transition: all 0.4s ease;
}

.value-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.value-card .value-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    display: block;
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.value-card p {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Contact page product notice */
.product-notice {
    background: rgba(135, 146, 117, 0.12);
    border-left: 3px solid var(--color-accent);
    padding: 14px 20px;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-family: var(--font-sans);
}

/* =============================
   MOBILE RESPONSIVE FIXES
   ============================= */
@media (max-width: 768px) {
    /* Fix mobile lang dropdown */
    .lang-dropdown-content {
        position: static !important;
        box-shadow: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        display: none;
        border-top: 1px solid rgba(0,0,0,0.06);
        margin-top: 10px;
        border-radius: 0;
    }

    .lang-dropdown:hover .lang-dropdown-content,
    .lang-dropdown.active .lang-dropdown-content {
        display: block;
    }

    /* Stats block mobile — 2 columns */
    .stats-block {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 50px 0;
    }

    .stat-item .stat-number {
        font-size: 2.4rem;
    }

    /* Values block mobile — 1 column */
    .values-block {
        grid-template-columns: 1fr;
    }

    /* WhatsApp button repositioned on mobile */
    .whatsapp-float {
        bottom: 24px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float::before {
        display: none;
    }

    /* Contact grid single column on mobile */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .contact-info, .contact-form-container {
        padding: 20px !important;
    }

    /* Production section mobile */
    .production-grid {
        flex-direction: column;
    }
}

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

    h2 {
        font-size: 1.8rem;
    }

    .page-header {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .stats-block {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }
}

/* Product Page Actions Mobile Fix */
.product-actions {
    text-align: center;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.product-actions .btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .product-actions .btn {
        width: 100%;
        margin-left: 0 !important;
    }
}

/* Splash Video Mobile Fix */
#splash-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills screen without stretching */
}

@media (max-width: 768px) {
    #splash-screen {
        height: 100dvh; /* Dynamic viewport height for mobile browsers */
    }
}

/* --- EXPERT MOBILE UX FIXES --- */

/* 1. Fix Button Overlaps (WhatsApp vs Mute) */
@media (max-width: 768px) {
    .whatsapp-float {
        right: 20px !important;
        bottom: 20px !important;
    }
    
    #mute-toggle {
        left: 20px !important;
        right: auto !important;
        bottom: 20px !important;
        background: rgba(255,255,255,0.2) !important;
        padding: 10px !important;
        border-radius: 50% !important;
    }
}

/* 2. Fix Accessibility (Request a Sample Button visibility) */
.product-actions .btn-light {
    border: 1px solid var(--color-dark) !important;
    color: var(--color-dark) !important;
    background-color: transparent !important;
}

/* 3. Fix Image Distortion in 'You May Also Like' */
.catalog-item img,
.related-product-img,
.product-image-placeholder {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: auto !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 4px;
}

/* 4. Reduce dominant blue vignette on mobile */
@media (max-width: 768px) {
    body::before {
        opacity: 0.3 !important; /* Soften the glow to keep header clean */
    }
    
    /* Shrink related product text on mobile */
    .catalog-overlay {
        padding: 10px 15px !important;
    }
    .catalog-overlay h3 {
        font-size: 0.9rem !important;
    }
}

/* 5. Mobile Menu Backdrop Blur Enhancement */
.nav-links.active {
    background-color: rgba(249, 248, 246, 0.98) !important;
    backdrop-filter: blur(15px);
}

/* 6. Mobile-Only Splash Screen Hint */
@media (max-width: 768px) {
    #splash-screen::after {
        content: 'TAP TO ENTER';
        position: absolute;
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        color: var(--color-gold);
        font-family: var(--font-sans);
        font-size: 0.7rem;
        letter-spacing: 3px;
        opacity: 0.6;
        animation: pulse 2s infinite;
        pointer-events: none;
    }
}

@keyframes pulse {
    0% { opacity: 0.3; }
    50% { opacity: 0.7; }
    100% { opacity: 0.3; }
}



