:root {
    --bg-color: #FAFCFF;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --accent-color: #D4AF37;
    --accent-gradient: linear-gradient(135deg, #E6C875 0%, #C59A3F 100%);
    --accent-glow: rgba(212, 175, 55, 0.3);
    --card-bg: #FFFFFF;
    --card-border: #F1F5F9;
    --bg-alt: #ffffff;
    --shadow-soft: 0 4px 15px -2px rgba(15, 23, 42, 0.05);
    --shadow-hover: 0 15px 30px -5px rgba(212, 175, 55, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
}

body {
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
}

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

/* Navbar - Premium E-commerce Full Cover */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 2.5rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

@keyframes logoBlink {
    0% { opacity: 1; text-shadow: 0 0 5px var(--accent-glow); }
    50% { opacity: 0.7; text-shadow: 0 0 15px var(--accent-color); }
    100% { opacity: 1; text-shadow: 0 0 5px var(--accent-glow); }
}

.logo span {
    color: var(--accent-color);
    animation: logoBlink 2.5s infinite ease-in-out;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 0.4rem;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--text-primary);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 0 0 600px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8rem 0 4rem 0;
    z-index: 3;
    position: relative;
}

.hero-content h1 {
    font-size: 4.8rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -2px;
    font-weight: 800;
}

.hero-content h1 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 540px;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: #ffffff;
    padding: 1.1rem 2.8rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--accent-glow);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

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

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #ffffff;
}

.hero-image-wrapper::after {
    display: none;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    z-index: 1;
}

.hero-img.slide {
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 6s ease-out;
    transform: scale(1.05); /* Subtle zoom out effect */
}

.hero-img.slide.active {
    opacity: 1;
    transform: scale(1);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--accent-color);
    filter: blur(100px);
    opacity: 0.2;
    z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Category Sections */
.category-section {
    padding: 5rem 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    display: block;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 4px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* Mobile query moved to end of card sections */

.card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.3);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    padding: 2rem;
    background-color: #f8fafc;
    border-bottom: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    mix-blend-mode: darken;
}

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

.card-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: 
        "title title"
        "price button";
    align-items: center;
    row-gap: 1rem;
}

.card-info h3 {
    grid-area: title;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.price {
    grid-area: price;
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.btn-secondary {
    grid-area: button;
    margin-top: 0;
    background: #ffffff;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.btn-secondary:hover {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 5px 15px var(--accent-glow);
}

@media (max-width: 550px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 5px;
    }
    
    .card {
        border-radius: 8px;
    }
    
    .card-info {
        padding: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 5px;
    }
    
    .card-info h3 {
        font-size: 0.85rem;
        line-height: 1.3;
        margin: 0;
        text-align: center;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        width: 100%;
    }
    
    .price {
        font-size: 1rem;
        margin: 0;
        font-weight: 800;
        color: var(--accent-color);
        text-align: center;
    }
    
    .btn-secondary {
        width: 100%;
        padding: 6px 0;
        font-size: 0.8rem;
        margin-top: 5px;
        border-radius: 6px;
        white-space: nowrap;
        text-align: center;
        min-height: 32px;
    }
    
    .card img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        padding: 0;
        border-radius: 8px 8px 0 0;
        border-bottom: 1px solid var(--card-border);
    }
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all {
    display: inline-block;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-view-all:hover {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 25px -5px var(--accent-glow);
    transform: translateY(-3px);
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: var(--bg-alt);
    overflow: hidden; /* Hide horizontal scroll */
}

.review-grid {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.review-grid:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

.review-card {
    flex: 0 0 350px; /* Fixed width to make scroll calculation work */
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.5);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.google-icon {
    width: 24px;
    margin-left: auto;
}

.reviewer-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.reviewer-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}
.faq-question:hover {
    background: var(--bg-alt);
}
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}
.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}
.faq-question .icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--accent-gradient);
    color: white;
    text-align: center;
}
.cta-content {
    max-width: 800px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}
.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.cta-buttons .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: #ffffff;
    padding: 1.1rem 2.8rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--accent-glow);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

/* About & Contact */
.about-section, .contact-section {
    padding: 5rem 0;
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #fff;
}

footer {
    background: #f8fafc;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--card-border);
    color: var(--text-secondary);
}

/* Dropdown CSS */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: 8px;
    top: 100%;
    left: 0;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.dropdown-content a {
    color: var(--text-primary) !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
    font-size: 0.9rem !important;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--bg-alt);
    color: var(--accent-color) !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .nav-links li a {
        font-size: 0.75rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 8rem 5% 4rem;
        justify-content: center;
    }
    
    .hero-content {
        padding: 0;
        text-align: center;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-image-wrapper::after {
        display: none;
    }
    
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        margin: 0;
        padding: 6rem 0 2rem 0;
        overflow-y: auto;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    .nav-links li {
        text-align: center;
        margin: 1rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
        width: 100%;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    
    .nav-links li a {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--text-primary);
        letter-spacing: -0.02em;
        display: block;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
    }
    
    /* Disable desktop hover logic on mobile */
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        background-color: transparent;
        display: none;
        margin: 0;
        width: 100%;
        padding: 0;
    }
    
    .dropdown-content.show {
        display: block !important;
    }
    
    .dropdown-content a {
        text-align: center;
        border-bottom: none;
        padding: 10px 16px;
        font-size: 1.2rem !important;
        color: var(--text-secondary) !important;
        font-weight: 500;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
    }
}

/* Main Footer */
.main-footer {
    background: #ffffff;
    color: #4b5563;
    padding: 5rem 0 2rem;
    border-top: 1px solid #e5e7eb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-col .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    color: #111827 !important;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    text-align: left;
}

.about-col .logo img {
    height: 65px !important;
    width: auto;
    object-fit: contain;
    margin-top: 10px; /* Pushes image down, shifting text up relative to center */
}

.about-col p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #111827;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.social-links a:hover {
    background: var(--accent-gradient);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
}

.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col ul li {
    margin-bottom: 0.8rem;
}

.links-col ul a {
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.links-col ul a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.contact-col p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.contact-col strong {
    color: #111827;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 550px) {
    .review-card {
        flex: 0 0 300px;
        padding: 1.5rem;
    }
}

/* Subpage Hero Section */
.subpage-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero_slider_1.png') center/cover;
    padding: 200px 5% 100px;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}



.subpage-hero h1 {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    color: var(--accent-color);
    text-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.subpage-hero p {
    font-size: 1.2rem;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .subpage-hero h1 {
        font-size: 2.5rem;
    }
    .subpage-hero p {
        font-size: 1.1rem;
    }
}

/* About Articles Section */
.about-articles {
    padding: 4rem 0;
}

.article-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.article-row:nth-child(even) {
    flex-direction: row-reverse;
}

.article-text {
    flex: 1;
}

.article-text h3 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.article-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.article-image {
    flex: 1;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-row:hover .article-image img {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

@media (max-width: 768px) {
    .article-row, .article-row:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .article-image img {
        height: 250px;
    }
    
    .article-text h3 {
        font-size: 1.8rem;
    }
}

/* Checkout Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.modal-box {
    background: var(--card-bg);
    border: none;
    border-radius: 0;
    padding: 2.5rem;
    width: 100%;
    height: 100vh;
    max-width: none;
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: none;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.modal-product-info {
    background: var(--bg-alt);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-product-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.modal-product-info span {
    font-weight: 800;
    color: var(--accent-color);
    font-size: 1.2rem;
}

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

.modal-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.modal-form input, .modal-form select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    background: var(--bg-alt);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s;
}

.modal-form input:focus, .modal-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: #fff;
}

.modal-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
    padding: 1.2rem;
}

@media (max-width: 550px) {
    .modal-box {
        padding: 1.5rem;
    }
}

/* Image Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fff;
    padding: 10px;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

/* Floating Action Buttons */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.live-indicator {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #25d366;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: bounce-slight 2s infinite ease-in-out;
    border: 1px solid rgba(37, 211, 102, 0.2);
}
.live-dot {
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    animation: blink-live 1.5s infinite;
    box-shadow: 0 0 5px #25d366;
}
@keyframes blink-live {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}
@keyframes bounce-slight {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: white;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-2px);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: 2px solid rgba(255, 255, 255, 0.8);
    animation: pulse-wa 2s infinite;
}

.floating-call {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: 2px solid rgba(255, 255, 255, 0.8);
    animation: pulse-call 2s infinite;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-call {
    0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(0, 123, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

@media (max-width: 768px) {
    .whatsapp-container { bottom: 20px; right: 20px; }
    .floating-call { bottom: 20px; left: 20px; }
    .floating-btn { width: 55px; height: 55px; }
    .floating-btn svg { width: 26px !important; height: 26px !important; }
}

/* Google Translate Customization */
body { top: 0 !important; }
.skiptranslate iframe { display: none !important; }
#google_translate_element select {
    background-color: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    padding: 8px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}
#google_translate_element select:hover {
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}
.goog-te-gadget { color: transparent !important; }
.translate-li {
    margin-left: 15px;
    display: flex;
    align-items: center;
}
@media (max-width: 992px) {
    .translate-li {
        margin: 1rem 0 !important;
    }
}
@media (max-width: 550px) { .modal-box { padding: 1.5rem; max-height: 100vh; height: 100vh; border-radius: 0; overflow-y: auto; } .modal-product-info { padding: 0.8rem 1rem !important; margin-bottom: 0.8rem !important; } .modal-product-info h4 { font-size: 0.95rem !important; } .modal-product-info span { font-size: 1rem !important; } #modalTotalPrice { font-size: 1.1rem !important; } .form-group label { font-size: 0.9rem; } .form-group input, .form-group select { padding: 0.8rem; } }


@media (max-width: 550px) {
    .logo {
        font-size: 1.2rem;
        gap: 8px;
    }
    .nav-logo-img {
        height: 45px;
    }
    .nav-container {
        padding: 0 15px;
    }
}


/* Enhanced touch targets for mobile */
.hamburger {
    padding: 12px;
    margin-right: -12px;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
}

/* Google Translate Customization */
.translate-li {
    margin-left: 1rem;
    display: flex;
    align-items: center;
}

#google_translate_element select {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23D4AF37%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.65rem auto;
    padding-right: 2rem;
}

#google_translate_element select:hover {
    background-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-1px);
}

/* Hide Google branding */
.goog-te-gadget {
    color: transparent !important;
    font-size: 0;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
}

body {
    top: 0 !important;
}
.skiptranslate iframe {
    display: none !important;
}

@media (max-width: 768px) {
    .translate-li {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }
}
/* Hide translate button as requested */
.translate-li { display: none !important; }
