:root {
    --bg-main: #ffffff;
    --bg-soft: #fbfbfd;
    --text-main: #1d1d1f;
    --text-dim: #6e6e73;
    --accent: #007AFF;
    --accent-glow: rgba(0, 122, 255, 0.15);
    --glass: rgba(255, 255, 255, 0.7);
    --border: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Section Controllers */
section.light {
    background: var(--bg-light);
    color: var(--text-dark);
}

section.light h2, section.light h3 {
    color: var(--text-dark);
}

section.light p {
    color: #48484a;
}

/* Common UI Components */
.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px var(--accent-glow);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px var(--accent-glow);
    background: #0066CC;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 32px;
}

/* Gallery Styles */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-thumbnails {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.gallery-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
}

.gallery-thumbnails img.active {
    border-color: var(--accent);
}


.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 150%;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: #aaa;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.btn-contact {
    padding: 10px 24px;
    background: #fff;
    color: #000;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
}

.hamburger {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1100;
}

/* MOBILE MENU - Styles are managed in header.php inline style */
.mobile-menu {
    display: none;
}

.mobile-overlay {
    display: none;
}

/* HERO */
.hero {
    height: 100vh;
    width: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    position: relative;
}

.hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
}

/* SECTIONS */
section {
    padding: 120px 10%;
    width: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 150px;
}

.text-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.link-arrow {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.img-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4/3;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

/* STATS */
.stats-section {
    background: #f5f5f7;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: #000;
    margin-bottom: 10px;
    font-family: 'Manrope', sans-serif;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* FOOTER */
footer {
    background-color: var(--black);
    color: #fff;
    padding: 80px 10% 30px;
    width: 100%;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .f-logo {
    font-family: 'Goldman', cursive;
    font-size: 24px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: #444;
    font-size: 12px;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 1200;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .desktop-nav { display: none !important; }
}

@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    section {
        padding: 80px 5%;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .order-rev {
        order: -1;
    }

    .hero {
        background-attachment: scroll !important;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}