/*
Theme Name: Clear Painéis
Theme URI: https://clearpaineis.com.br
Author: Clear Painéis Team
Author URI: https://clearpaineis.com.br
Description: Tema WordPress profissional para Clear Painéis - Especialistas em painéis de madeira maciça e mobiliário sob medida. Design moderno, otimizado para performance e SEO com integração RankMath.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clearpaines
Tags: business, corporate, e-commerce, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

Clear Painéis WordPress Theme
Copyright (C) 2024 Clear Painéis
*/

/* ===================================
           1. DESIGN TOKENS
           =================================== */
:root {
    /* Colors */
    --color-primary: #282828;
    --color-white: #FFFFFF;
    --color-accent: #C7A654;
    --color-accent-light: rgba(199, 166, 84, 0.1);
    --color-accent-glow: rgba(199, 166, 84, 0.3);

    /* Typography Scale - Fluid Responsive */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.875rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2.25rem);
    --text-4xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    --text-6xl: clamp(2.5rem, 2rem + 2.5vw, 4.5rem);

    /* Spacing Scale (8px base) */
    --space-1: 0.5rem;
    /* 8px */
    --space-2: 1rem;
    /* 16px */
    --space-3: 1.5rem;
    /* 24px */
    --space-4: 2rem;
    /* 32px */
    --space-6: 3rem;
    /* 48px */
    --space-8: 4rem;
    /* 64px */
    --space-12: 6rem;
    /* 96px */
    --space-16: 8rem;
    /* 128px */

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-accent: 0 8px 24px var(--color-accent-glow);

    /* Transitions */
    --transition-fast: 150ms ease-out;
    --transition-base: 200ms ease-out;
    --transition-slow: 600ms ease-in-out;

    /* Layout */
    --container-max: 1280px;
    --header-height: 80px;
}

@media (max-width: 1023px) {
    .hero__image {
        margin-left: 0;
        margin-right: 0;
        margin-top: var(--space-6);
    }
}

/* ===================================
           2. MODERN CSS RESET
           =================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Kanit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-primary);
    overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
}

p {
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===================================
           3. UTILITY CLASSES
           =================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-2);
}

/* Mobile: Increase padding for better breathing room */
@media (max-width: 767px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
}

/* ===================================
           4. HEADER & NAVIGATION
           =================================== */
.header {
    position: fixed;
    top: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: calc(100% - var(--space-8));
    background: var(--color-primary);
    z-index: 1000;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
    border-radius: 4px;
}

@media (max-width: 767px) {
    .header {
        top: 12px;
        width: calc(100% - 32px);
        padding: 10px 14px;
        /* Reduced for ~100px total height */
    }

    .header__container {
        padding: 0;
    }

    .header__logo {
        height: 28px;
        /* Slightly smaller */
    }
}

.header--scrolled {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
}

.header__container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
}

.header__logo {
    height: 44px;
    width: auto;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header__logo:hover {
    opacity: 0.85;
}

.header__logo img {
    height: 100%;
    width: auto;
    display: block;
}

.nav__list {
    display: none;
    list-style: none;
    gap: var(--space-6);
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .nav__list {
        display: flex;
    }
}

.nav__link {
    font-family: 'Kanit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    position: relative;
    padding: var(--space-2) 0;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover {
    color: var(--color-white);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

/* Header Actions */
.header__actions {
    display: none;
    align-items: center;
    gap: var(--space-4);
}

@media (min-width: 1024px) {
    .header__actions {
        display: flex;
    }
}

.header__contact {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-right: var(--space-4);
    border-right: 1px solid rgba(199, 166, 84, 0.2);
}

.header__contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Kanit', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header__contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.header__contact-item:hover {
    color: var(--color-white);
}

.header__contact-item:hover svg {
    transform: scale(1.1);
}

.header__contact-text {
    display: none;
}

@media (min-width: 1280px) {
    .header__contact-text {
        display: inline;
    }
}

/* Header CTA */
.header__cta {
    font-family: 'Kanit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.625rem 1.5rem;
    background-color: var(--color-accent);
    color: var(--color-primary);
    text-decoration: none;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--color-accent);
    border-radius: 4px;
    white-space: nowrap;
    cursor: pointer;
}

.header__cta:hover {
    background-color: transparent;
    color: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(199, 166, 84, 0.3);
}

.header__cta span {
    position: relative;
}

/* Mobile Menu Button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 48px;
    height: 48px;
    z-index: 10000;
    position: relative;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .header__cta {
        display: inline-block !important;
    }
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:hover span {
    background-color: var(--color-accent);
    transform: scaleX(1.1);
}

.menu-toggle:hover span:nth-child(2) {
    transform: scaleX(0.9);
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* ===================================
   PREMIUM MOBILE MENU v2.0 - B2B INDUSTRIAL
   =================================== */

/* Full-Screen Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* Premium Menu Panel - Wood DNA (Rectangular, Solid) */
.mobile-menu {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(420px, 90vw);
    background: linear-gradient(180deg, #1a1a1a 0%, #242424 50%, #282828 100%);
    border-left: 3px solid rgba(199, 166, 84, 0.5);
    box-shadow:
        -8px 0 32px rgba(0, 0, 0, 0.4),
        -4px 0 8px rgba(199, 166, 84, 0.1);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 0;
}

.mobile-menu-overlay.is-open .mobile-menu {
    transform: translateX(0);
}

/* Menu Header */
.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 2px solid rgba(199, 166, 84, 0.2);
    background: rgba(199, 166, 84, 0.05);
    border-radius: 0;
}

.mobile-menu__logo img {
    width: 160px;
    height: auto;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.2s forwards;
}

.mobile-menu__close {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.3s forwards;
    padding: 8px;
}

.mobile-menu__close span {
    width: 24px;
    height: 2.5px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu__close:hover span {
    background-color: var(--color-accent);
    transform: scaleX(1.1);
}

.mobile-menu__close:hover span:nth-child(2) {
    transform: scaleX(0.9);
}

.mobile-menu__close:hover {
    transform: scale(1.05);
}

/* Hamburger → X Animation when menu opens */
.mobile-menu-overlay.is-open .mobile-menu__close span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-overlay.is-open .mobile-menu__close span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-overlay.is-open .mobile-menu__close span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation */
.mobile-menu__nav {
    flex: 1;
    padding: 32px 0;
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 18px 16px;
    margin: 0 24px;
    border-radius: 4px;
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 56px;
    opacity: 0;
    transform: translateX(20px);
    gap: 12px;
}

.mobile-menu__link svg {
    display: block !important;
    min-width: 20px;
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    /* Permanent Gold */
    transition: all 0.3s ease;
    margin-right: 12px;
}

.mobile-menu__link:hover svg,
.mobile-menu__link:focus svg {
    color: var(--color-accent);
    transform: scale(1.1);
}

/* Staggered animation for links */
.mobile-menu-overlay.is-open .mobile-menu__link:nth-child(1) {
    animation: slideInRight 0.4s ease-out 0.15s forwards;
}

.mobile-menu-overlay.is-open .mobile-menu__link:nth-child(3) {
    animation: slideInRight 0.4s ease-out 0.25s forwards;
}

.mobile-menu-overlay.is-open .mobile-menu__link:nth-child(5) {
    animation: slideInRight 0.4s ease-out 0.35s forwards;
}

.mobile-menu-overlay.is-open .mobile-menu__link:nth-child(7) {
    animation: slideInRight 0.4s ease-out 0.45s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu__link:hover,
.mobile-menu__link:focus {
    background: rgba(199, 166, 84, 0.12);
    color: var(--color-accent);
}

/* Gold Dividers - Wood Veins (Stronger) */
.mobile-menu__divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 24px,
            rgba(199, 166, 84, 0.3) 24px,
            rgba(199, 166, 84, 0.3) calc(100% - 24px),
            transparent calc(100% - 24px));
    margin: 4px 0;
}

/* CTA Button */
.mobile-menu__cta {
    padding: 24px;
    border-top: 1px solid rgba(199, 166, 84, 0.15);
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.55s forwards;
}

/* CTA Button - Gold bg, White text/icon (AA Contrast) */
.btn--primary-mobile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #C7A654 0%, #B39449 100%);
    border: none;
    border-radius: 4px;
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(199, 166, 84, 0.3);
    min-height: 56px;
}

.btn--primary-mobile:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #D4B45D 0%, #C7A654 100%);
    box-shadow: 0 8px 24px rgba(199, 166, 84, 0.4);
}

.btn--primary-mobile svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-white);
    transition: all 0.3s ease;
}

.btn--primary-mobile:hover svg {
    transform: translateX(4px);
}

/* Social Media Section */
.mobile-menu__socials {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.6s forwards;
}

.social-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: transparent;
    border: 1px solid rgba(199, 166, 84, 0.3);
    /* Gold Border */
    border-radius: 4px;
    /* Industrial radius */
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-highlight svg {
    color: var(--color-accent);
    /* Gold Icon */
}

.social-highlight strong {
    color: var(--color-accent);
    font-weight: 600;
}

.social-highlight:hover {
    background: rgba(199, 166, 84, 0.1);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    /* Industrial radius */
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(199, 166, 84, 0.1);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* Contact Footer */
.mobile-menu__footer {
    padding: 24px;
    border-top: 1px solid rgba(199, 166, 84, 0.2);
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.7s forwards;
}

/* Unified Contact Buttons (Ghost Style - Industrial) */
.mobile-menu__contact {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 16px;
    padding: 12px 0;
    /* Clean list style */
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    /* No background */
    border: none;
    /* No border */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle separator */
    border-radius: 0;
    transition: all 0.3s ease;
}

.mobile-menu__contact:last-child {
    border-bottom: none;
}

.mobile-menu__contact:hover {
    background: transparent;
    color: var(--color-accent);
    transform: translateX(4px);
    /* Subtle movement */
    border-color: rgba(199, 166, 84, 0.2);
}

.mobile-menu__contact svg {
    color: var(--color-accent);
    /* Gold Icon */
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

/* Remove specific WhatsApp styling */
.mobile-menu__contact--whatsapp {
    background: transparent;
    border-color: transparent;
}

.mobile-menu__contact--whatsapp:hover {
    background: transparent;
    border-color: transparent;
}

/* Hide on desktop */
@media (min-width: 768px) {
    .mobile-menu-overlay {
        display: none;
    }
}

/* ===================================
           5. HERO SECTION
           =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(115deg, #FFFFFF 0%, #f5edd8 45%, #e8dcc4 75%, #dfd0b5 100%);
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 60% at 75% 20%, rgba(199, 166, 84, 0.08), transparent 55%),
        radial-gradient(90% 50% at 20% 80%, rgba(40, 40, 40, 0.06), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

/* Wood texture background - Desktop & Mobile */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.75), rgba(247, 243, 235, 0.85)),
        url('https://clearpaineis.com.br/wp-content/uploads/2025/12/comprar-Madeira-de-Pinus-Painel-de-Teca-Painel-de-Pinus-clear-paineis-clear-paineis-site-clear-site-scaled-1.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
}

@media (max-width: 767px) {
    .hero::after {
        opacity: 0.5;
        /* More visible on mobile */
    }
}

.hero__wrapper {
    max-width: var(--container-max);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 1;
    padding: var(--space-6) var(--space-2) var(--space-12);
}

@media (max-width: 767px) {
    .hero__wrapper {
        padding-bottom: 0;
        /* Let hero__left handle the bottom spacing */
    }
}

/* Mobile: Increase horizontal padding for better breathing room */
@media (max-width: 767px) {
    .hero__wrapper {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 1024px) {
    .hero__wrapper {
        grid-template-columns: 50% 50%;
    }
}

.hero__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--header-height) + var(--space-6) + var(--space-6));
    padding-bottom: var(--space-12);
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .hero__left {
        padding-top: 150px;
        /* Increased to ensure 24px gap from header */
        padding-bottom: var(--space-8);
        /* 64px - Matches Social Proof Top */
    }
}

.hero__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: var(--space-4);
    margin-top: var(--space-6);
    width: 100%;
    position: relative;
    z-index: 0;
    pointer-events: none;
    padding: var(--space-6);
}

@media (min-width: 1024px) {
    .hero__right {
        margin-top: 0;
        justify-content: center;
        /* Center vertically */
        align-items: flex-end;
    }
}

.hero__image {
    width: clamp(380px, 45vw, 700px);
    max-width: 750px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    opacity: 0;
    animation: fadeInFromTop 1.2s ease-out 0.6s forwards;
    display: block;
    margin-top: 0;
    margin-left: clamp(100px, 12vw, 250px);
    margin-right: -40px;
}

/* Hide mobile-only image on desktop */
.hero__image--mobile {
    display: none;
}

@media (max-width: 767px) {
    .hero__image {
        display: none;
        /* Hide desktop image on mobile */
    }

    /* Mobile Image Container - full width, escapes parent padding */
    /* Mobile Image Container - full viewport width */
    .hero__image-container--mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        margin-top: 24px;
        left: 0;
        right: 0;
    }

    .hero__image--mobile {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
    }

    .hero__right {
        display: none;
        /* Hide right column on mobile */
    }

    /* Industrial Specs Strip - Overlaying Image on Mobile */
    /* Industrial Specs Strip - Overlaying Image on Mobile */
    .hero__specs--mobile {
        display: flex;
        align-items: center;
        justify-content: center !important;
        /* Force center */
        gap: 0;
        padding: 16px 0;
        margin-top: 0;
        background: transparent;
        border: none;
        width: 100%;
        max-width: 100%;
        pointer-events: auto;
    }

    .hero__spec-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 0 16px;
        /* Equal padding both sides */
    }

    .hero__spec-item:first-child {
        padding-left: 16px;
        /* Same as others for centering */
    }

    .hero__spec-item:last-child {
        padding-right: 16px;
        /* Same as others for centering */
    }

    .hero__spec-icon {
        width: 20px;
        height: 20px;
        color: var(--color-accent);
        stroke-width: 2;
        flex-shrink: 0;
    }

    .hero__spec-label {
        font-family: 'Kanit', sans-serif;
        font-size: 0.875rem;
        /* 14px */
        font-weight: 500;
        color: rgba(26, 26, 26, 0.7);
        text-align: center;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        line-height: 1;
    }

    .hero__spec-divider {
        width: 1px;
        height: 36px;
        background: linear-gradient(to bottom,
                transparent,
                rgba(199, 166, 84, 0.35) 20%,
                rgba(199, 166, 84, 0.35) 80%,
                transparent);
        flex-shrink: 0;
    }

    /* Hide contact link on mobile */
    .hero__contact--desktop {
        display: none !important;
    }
}

@keyframes fadeInFromTop {
    from {
        opacity: 0;
        transform: translateY(-40px) rotate(-2deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

.hero__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-2);
    width: 100%;
}

@media (min-width: 768px) {
    .hero__inner {
        padding: 0 var(--space-4);
    }
}

@media (max-width: 767px) {
    .about {
        padding: var(--space-8) 0;
    }

    .about__ctas {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .about__cta {
        width: 100%;
        justify-content: center;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    margin-bottom: var(--space-4);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.1s forwards;
    width: fit-content;
    background: linear-gradient(135deg, rgba(199, 166, 84, 0.12) 0%, rgba(199, 166, 84, 0.06) 100%);
    border: 1px solid rgba(199, 166, 84, 0.3);
    border-left: 3px solid var(--color-accent);
    position: relative;
}

.hero__badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-accent) 0%, transparent 100%);
}

.hero__badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-accent);
    color: var(--color-primary);
    flex-shrink: 0;
}

.hero__badge-icon svg {
    width: 18px;
    height: 18px;
}

.hero__badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.hero__badge-label {
    font-family: 'Kanit', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(26, 26, 26, 0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

.hero__badge-text {
    font-family: 'Kanit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.hero__badge-highlight {
    color: var(--color-accent);
}


.hero__headline {
    font-family: 'Kanit', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    line-height: 1.1;
    color: #1a1a1a;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    letter-spacing: -0.01em;
}

@media (max-width: 767px) {
    .hero__headline {
        font-size: 2.5rem;
        /* 40px */
        line-height: 1.1;
        margin-bottom: var(--space-3);
    }
}

@media (max-width: 374px) {
    .hero__headline {
        font-size: 2rem;
    }
}

.hero__subheadline {
    font-family: 'Kanit', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #3a3a3a;
    margin-bottom: var(--space-4);
    line-height: 1.5;
    max-width: 580px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

@media (max-width: 767px) {
    .hero__subheadline {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: var(--space-3);
    }
}

/* Hero Features Pills */
.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
    align-items: center;
    max-width: 560px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.hero__feature {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    position: relative;
}

.hero__feature:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: rgba(26, 26, 26, 0.15);
}

.hero__feature-icon {
    width: 18px;
    height: 18px;
    color: #10B981;
    flex-shrink: 0;
}

.hero__feature-text {
    font-family: 'Kanit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.01em;
}

@media (max-width: 767px) {
    .hero__features {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: var(--space-6);
    }

    .hero__feature:not(:last-child)::after {
        display: none;
    }

    .hero__feature-icon {
        width: 16px;
        height: 16px;
    }

    .hero__feature-text {
        font-size: 0.9375rem;
        /* Keep readable size */
    }
}

/* CTA Buttons */
.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
    max-width: 620px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    flex-wrap: wrap;
}

@media (min-width: 640px) {
    .hero__cta {
        flex-direction: row;
        align-items: center;
        gap: var(--space-4);
    }
}

/* Industrial Specs Strip - Desktop Styles */
.hero__specs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin-top: 24px;
}

.hero__spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
}

.hero__spec-item:first-child {
    padding-left: 0;
}

.hero__spec-item:last-child {
    padding-right: 0;
}

.hero__spec-icon {
    width: 24px;
    /* Larger for desktop */
    height: 24px;
    color: var(--color-accent);
    stroke-width: 2;
    flex-shrink: 0;
}

.hero__spec-label {
    font-family: 'Kanit', sans-serif;
    font-size: 0.875rem;
    /* 14px - larger */
    font-weight: 500;
    color: rgba(26, 26, 26, 0.7);
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
}

.hero__spec-divider {
    width: 1px;
    height: 40px;
    /* Taller to match larger icons */
    background: linear-gradient(to bottom,
            transparent,
            rgba(199, 166, 84, 0.35) 20%,
            rgba(199, 166, 84, 0.35) 80%,
            transparent);
    flex-shrink: 0;
}

/* Responsive specs strip visibility */
.hero__specs--mobile {
    display: none;
    /* Hidden by default (desktop) */
}

.hero__specs--desktop {
    display: flex;
    margin-top: 24px;
    justify-content: center;
    /* Centered under image */
    align-items: center;
    width: 100%;
}

@media (max-width: 767px) {
    .hero__specs--mobile {
        display: flex;
        /* Shown on mobile */
    }

    .hero__specs--desktop {
        display: none;
        /* Hidden on mobile */
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    min-height: 58px;
    position: relative;
    overflow: hidden;
    font-family: 'Kanit', sans-serif;
    letter-spacing: 0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width var(--transition-slow), height var(--transition-slow);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn--primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
    box-shadow: 0 4px 14px rgba(199, 166, 84, 0.4);
}

.btn--primary:hover {
    background-color: #D4B564;
    border-color: #D4B564;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(199, 166, 84, 0.5);
}

.btn--primary:active {
    transform: translateY(-1px);
}

.btn--primary:focus-visible {
    outline: 3px solid rgba(199, 166, 84, 0.5);
    outline-offset: 4px;
}

/* Aliases para markup legado (.btn-primary / .btn-secondary) */
.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
    box-shadow: 0 4px 14px rgba(199, 166, 84, 0.4);
}

.btn-primary:hover {
    background-color: #D4B564;
    border-color: #D4B564;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(199, 166, 84, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(199, 166, 84, 0.5);
    outline-offset: 4px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
}

.product-card .btn-secondary {
    color: #1a1a1a;
    border-color: #E0E0E0;
    background-color: #fff;
    box-shadow: none;
}

.product-card .btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-primary);
}

.hero__link {
    font-family: 'Kanit', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    padding: 0.5rem 0;
}

.hero__link:hover {
    color: #1a1a1a;
    gap: 0.75rem;
}

/* New Contact Link - Industrial Style */
.hero__contact {
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(26, 26, 26, 0.75);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
    border-bottom: 1px solid transparent;
}

.hero__contact svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hero__contact-number {
    display: none;
    /* Hidden as requested */
}

.hero__contact:hover {
    color: #1a1a1a;
    gap: 12px;
}

.hero__contact:hover svg {
    transform: scale(1.1);
}

.hero__guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border: 1.5px solid rgba(199, 166, 84, 0.45);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    color: #1a1a1a;
    margin-top: var(--space-2);
    pointer-events: auto;
    backdrop-filter: blur(4px);
}

.hero__guarantee-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.hero__guarantee-text {
    font-size: 0.975rem;
    font-weight: 500;
    letter-spacing: -0.005em;
}

.hero__link svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.hero__link:hover svg {
    transform: translateX(4px);
}

.btn:active {
    transform: translateY(0);
}


/* ===================================
           6. SOCIAL PROOF SECTION
           =================================== */
.social-proof {
    background-color: #FFFFFF;
    padding: var(--space-16) 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #F5F5F5;
}

.social-proof__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.social-proof__header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.social-proof__badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(199, 166, 84, 0.1);
    border: 1px solid rgba(199, 166, 84, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: var(--space-3);
}

.social-proof__badge-text {
    font-family: 'Kanit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.social-proof__title {
    font-family: 'Kanit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: var(--space-2);
}

.social-proof__subtitle {
    font-family: 'Kanit', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials slider */
.testimonials {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #eee;
    background: linear-gradient(135deg, #fff 0%, #fbfbf8 100%);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.testimonials__track {
    display: flex;
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonials__slide {
    flex: 0 0 100%;
    padding: var(--space-6);
    display: grid;
    gap: var(--space-3);
}

.testimonial__header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(199, 166, 84, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(199, 166, 84, 0.3);
}

.testimonial__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial__name {
    font-family: 'Kanit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.testimonial__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(199, 166, 84, 0.12);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.testimonial__rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial__date {
    font-size: 0.9rem;
    color: #6b6b6b;
}

.testimonial__text {
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #2f2f2f;
    line-height: 1.7;
}

.testimonials__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: 0 var(--space-6) var(--space-6);
}

.testimonials__pager {
    display: inline-flex;
    gap: 6px;
}

.testimonials__dot {
    width: 32px;
    height: 6px;
    border-radius: 999px;
    background: rgba(199, 166, 84, 0.25);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonials__dot.is-active {
    background: var(--color-accent);
    width: 48px;
}

.testimonials__nav {
    display: inline-flex;
    gap: 10px;
}

.testimonials__button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(199, 166, 84, 0.35);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-accent);
    transition: all var(--transition-base);
}

.testimonials__button:hover {
    background: rgba(199, 166, 84, 0.1);
    transform: translateY(-1px);
}

.testimonials__button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .testimonials__slide {
        padding: var(--space-4);
    }

    .testimonials__footer {
        padding: 0 var(--space-4) var(--space-4);
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .social-proof {
        padding: var(--space-8) 0;
        /* Reduced from space-16 (128px) to 64px */
    }

    .social-proof__title {
        font-size: 1.5rem;
    }

    .social-proof__subtitle {
        font-size: 1rem;
    }
}

/* ===================================
           7. SHOWCASE SECTION
           =================================== */
.showcase {
    background-color: var(--color-primary);
    padding: var(--space-16) 0;
    position: relative;
}

.showcase__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 1024px) {
    .showcase__grid {
        grid-template-columns: 45% 55%;
        gap: var(--space-12);
    }
}

.showcase__content {
    order: 2;
}

@media (min-width: 1024px) {
    .showcase__content {
        order: 1;
    }
}

/* Badge padrão PILL (consistente com FAQ, Social Proof) */
.showcase__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(199, 166, 84, 0.15);
    border: 1px solid rgba(199, 166, 84, 0.4);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: var(--space-4);
    color: var(--color-accent);
}

.showcase__badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.showcase__badge-text {
    font-family: 'Kanit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.showcase__title {
    font-family: 'Kanit', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

@media (max-width: 1023px) {
    .showcase__title {
        font-size: 2rem;
    }
}

.showcase__description {
    font-family: 'Kanit', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #B8B8B8;
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.showcase__features {
    display: grid;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.showcase__feature {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
}

.showcase__feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    margin-top: 2px;
}

.showcase__feature-text {
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.6;
}

.showcase__feature-highlight {
    color: var(--color-accent);
    font-weight: 500;
}

.showcase__cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    width: 100%;
}

.showcase__cta .btn {
    width: 100%;
    justify-content: center;
}

.showcase__whatsapp {
    justify-content: center;
}

@media (min-width: 640px) {
    .showcase__cta {
        flex-direction: row;
        align-items: center;
        gap: var(--space-4);
    }
}

.showcase__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Kanit', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all var(--transition-base);
}

.showcase__whatsapp:hover {
    color: var(--color-accent);
    gap: 1rem;
}

.showcase__whatsapp-icon {
    width: 24px;
    height: 24px;
    color: #25D366;
    transition: transform var(--transition-base);
}

.showcase__whatsapp:hover .showcase__whatsapp-icon {
    transform: scale(1.1);
}

.showcase__gallery {
    order: 1;
    position: relative;
}

@media (min-width: 1024px) {
    .showcase__gallery {
        order: 2;
    }
}

/* === PREMIUM 2x3 GALLERY GRID === */
.showcase__gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* === GALLERY ITEM - PREMIUM INDUSTRIAL CARD === */
.showcase__gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4/3;
    /* All items same size - clean, professional */
    background-color: #1a1a1a;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(199, 166, 84, 0.08);
}

.showcase__gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(199, 166, 84, 0.2);
}

/* === GALLERY IMAGE === */
.showcase__gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase__gallery-item:hover .showcase__gallery-image {
    transform: scale(1.08);
}

/* === PREMIUM OVERLAY WITH GRADIENT === */
.showcase__gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            transparent 40%,
            rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.showcase__gallery-item:hover .showcase__gallery-overlay {
    opacity: 1;
}

/* === LABEL WITH INDUSTRIAL FEEL === */
.showcase__gallery-label {
    font-family: 'Kanit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 12px;
    background: rgba(199, 166, 84, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(199, 166, 84, 0.3);
    border-radius: 4px;
    width: fit-content;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase__gallery-item:hover .showcase__gallery-label {
    transform: translateY(0);
}

/* ===================================
           8. ABOUT SECTION
           =================================== */
.about {
    background-color: var(--color-primary);
    padding: clamp(var(--space-6), 8vw, var(--space-12)) 0;
    position: relative;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    align-items: center;
    padding: var(--space-6);
    border: 1.5px solid rgba(199, 166, 84, 0.25);
    border-radius: 12px;
}

@media (min-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
        padding: var(--space-8);
    }
}

.about__visual {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about__brand-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about__logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: var(--space-6);
}

.about__brand-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.about__subtitle {
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-accent);
    letter-spacing: 0.08em;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 1023px) {
    .about__subtitle {
        font-size: 0.875rem;
    }
}

.about__visual .about__title {
    font-family: 'Kanit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
    margin: 0;
}

.about__ctas {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--space-3);
    align-items: center;
}

/* MOBILE OVERRIDE - Must come AFTER desktop rule for CSS cascade */
@media (max-width: 767px) {
    .about__ctas {
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
        gap: 16px;
    }

    .about__cta {
        width: 100%;
        justify-content: center;
    }
}

.about__content {
    color: var(--color-white);
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.about__content .about__title,
.about__content .about__subtitle {
    display: none;
}

.about__text {
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(235, 235, 235, 0.88);
    line-height: 1.8;
    margin: 0;
    overflow-wrap: anywhere;
}

.about__text+.about__text {
    margin-top: var(--space-2);
}

.about__text strong {
    color: var(--color-white);
    font-weight: 600;
}

.about__highlight {
    color: var(--color-accent);
    font-weight: 500;
}

.about__ctas .about__cta {
    flex: 0 0 auto;
}

.about__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    border: 2px solid var(--color-accent);
    background: transparent;
    color: var(--color-white);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
}

.about__cta:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 166, 84, 0.4);
}

.about__cta-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.about__cta:hover .about__cta-icon {
    transform: scale(1.1);
}

.about__cta--primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.about__cta--primary:hover {
    background-color: #D4B564;
    border-color: #D4B564;
}

/* ===================================
           9. FOOTER
           =================================== */
.footer {
    /* Master Harmony Gradient: White -> Light Wood -> Warm Shadow -> Brand Dark */
    /* Adds a bridge color (#5E5950) to prevent muddy transitions and ensure softness */
    background: linear-gradient(240deg, #FFFFFF 0%, rgb(247, 243, 235) 60px, rgb(240, 231, 213) 140px, #5E5950 300px, #282828 480px, #282828 100%);
    padding: 200px 0 80px;
    color: #fff;
    position: relative;
    border-top: none;
}

.footer>.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    margin-bottom: 80px;
}

@media (min-width: 1024px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1.2fr;
        gap: 100px;
    }
}

/* Brand Column */
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 420px;
}

.footer__logo {
    width: 320px;
    /* User requested double size (approx) */
    height: auto;
    opacity: 1;
}

.footer__description {
    font-family: 'Kanit', sans-serif;
    font-size: 1.25rem;
    /* Increased size */
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* CTA Button in Footer */
.footer__cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.footer__cta-label {
    font-size: 0.8125rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(199, 166, 84, 0.05);
    /* Gold Tint */
    border: 1px solid rgba(199, 166, 84, 0.3);
    /* Gold Border */
    padding: 16px 32px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.footer__cta-btn:hover {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(199, 166, 84, 0.2);
}

@media (max-width: 767px) {
    .footer__cta-btn {
        width: 100%;
        justify-content: center;
        min-height: 56px;
    }
}

.footer__cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
    color: #25D366;
    /* WhatsApp Green Icon */
}

.footer__cta-btn:hover svg {
    transform: scale(1.1);
    color: #000;
    /* Icon turns black on hover to match text */
}

/* Columns & Titles */
.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__title {
    font-family: 'Kanit', sans-serif;
    font-size: 0.9375rem;
    /* Increased from 0.75rem */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 40px;
    border-left: 2px solid var(--color-accent);
    padding-left: 16px;
    display: inline-block;
    line-height: 1;
}

/* Navigation & Links */
.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__link {
    font-family: 'Kanit', sans-serif;
    font-size: 1.125rem;
    /* Increased from 1rem */
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.footer__link:hover {
    color: #fff;
    transform: translateX(8px);
}

.footer__link--icon {
    align-items: center;
}

.footer__link svg {
    color: var(--color-accent);
    opacity: 0.7;
    transition: opacity 0.3s;
    width: 18px;
    height: 18px;
}

.footer__link:hover svg {
    opacity: 1;
}

.footer__address {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__address svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--color-accent);
    opacity: 0.7;
    width: 20px;
    height: 20px;
}

/* Bottom Bar */
.footer__bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
    }
}

.footer__copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.02em;
}

/* Social Icons */
.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__social-link:hover {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(199, 166, 84, 0.25);
}

/* ===================================
           10. FAQ SECTION
           =================================== */
.faq {
    background-color: #FFFFFF;
    padding: var(--space-16) 0;
}

.faq__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.faq__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* Added gap for icon */
    background-color: rgba(199, 166, 84, 0.1);
    border: 1px solid rgba(199, 166, 84, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: var(--space-3);
    color: var(--color-accent);
    /* Ensure icon uses this color */
}

.faq__badge-text {
    font-family: 'Kanit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.faq__title {
    font-family: 'Kanit', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: var(--space-3);
}

@media (max-width: 767px) {
    .faq__title {
        font-size: 2rem;
    }
}


.faq__subtitle {
    font-family: 'Kanit', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.faq__list {
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid #E5E5E5;
    transition: all var(--transition-base);
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-base);
}

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

.faq__question:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 4px;
}

.faq__question-text {
    font-family: 'Kanit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    transition: color var(--transition-base);
}

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

.faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    transition: transform var(--transition-base);
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms ease-out, padding 400ms ease-out;
}

.faq__item.active .faq__answer {
    max-height: 1000px;
    padding-bottom: var(--space-4);
}

.faq__answer-text {
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.7;
}

.faq__answer-highlight {
    color: var(--color-accent);
    font-weight: 500;
}

.faq__cta-section {
    text-align: center;
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid #E5E5E5;
}

.faq__cta-text {
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: var(--space-6);
    line-height: 1.4;
}

.faq__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .faq__cta-wrapper {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-6);
    }
}

.faq__cta-subtext {
    font-family: 'Kanit', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #666666;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin: 0;
    max-width: 500px;
    text-align: left;
}

.faq__cta-whatsapp-icon {
    width: 32px;
    height: 32px;
    color: #25D366;
    flex-shrink: 0;
}

.faq__cta-arrow {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
    animation: bounce-right 2s ease-in-out infinite;
}

@keyframes bounce-right {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(8px);
    }
}

/* Mobile: Arrow points down, full-width button */
@media (max-width: 767px) {
    .faq__cta-arrow {
        transform: rotate(90deg);
        animation: bounce-down 2s ease-in-out infinite;
    }

    @keyframes bounce-down {

        0%,
        100% {
            transform: rotate(90deg) translateX(0);
        }

        50% {
            transform: rotate(90deg) translateX(8px);
        }
    }

    .faq__cta-wrapper .btn--primary {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
           9. PRODUCTS SECTION
           =================================== */
.products {
    background-color: #FFFFFF;
    padding: var(--space-16) 0;
}

.products__header {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .products__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.products__title {
    font-family: 'Kanit', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: var(--space-2);
}

@media (max-width: 767px) {
    .products__title {
        font-size: 2rem;
    }
}

.products__subtitle {
    font-family: 'Kanit', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .products__subtitle {
        font-size: 1rem;
    }
}

.products__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    align-items: stretch;
}

@media (min-width: 768px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E5E5E5;
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent);
}

.product-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background-color: #F5F5F5;
}

.product-card__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 400ms ease-out;
}

.product-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 400ms ease-out, transform var(--transition-slow);
}

.product-card__image.active {
    opacity: 1;
}

.product-card:hover .product-card__image.active {
    transform: scale(1.05);
}

.product-card__slider-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.product-card__slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.product-card__slider-dot.active {
    background-color: var(--color-accent);
    width: 24px;
    border-radius: 4px;
}

.product-card__slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.product-card__slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(40, 40, 40, 0.7);
    color: var(--color-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-base);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.product-card:hover .product-card__slider-arrow {
    opacity: 1;
}

.product-card__slider-arrow:hover {
    background-color: rgba(40, 40, 40, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.product-card__slider-arrow--prev {
    left: 1rem;
}

.product-card__slider-arrow--next {
    right: 1rem;
}

.product-card__slider-arrow:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.product-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.product-card__view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.product-card__image-wrapper:hover .product-card__view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.product-card__view-btn:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.product-card__content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card__title {
    font-family: 'Kanit', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.product-card__description {
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.product-card__specs {
    list-style: none;
    margin-bottom: var(--space-4);
    padding-left: 0;
    flex: 1;
}

.product-card__spec {
    font-family: 'Kanit', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #666666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.product-card__spec:last-child {
    border-bottom: none;
}

.product-card__spec-label {
    color: #666666;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-card__spec-value {
    color: #1a1a1a;
    font-weight: 500;
    text-align: right;
    flex: 1;
    min-width: 0;
}

/* Featured Spec Item - Exclusive Design */
.product-card__spec--featured {
    padding: 1rem 0;
    border-bottom: none;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, rgba(199, 166, 84, 0.03) 0%, rgba(199, 166, 84, 0.08) 100%);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(199, 166, 84, 0.15);
    transition: background 200ms ease-out, border-color 200ms ease-out;
}

.product-card__spec--featured:hover {
    background: linear-gradient(135deg, rgba(199, 166, 84, 0.06) 0%, rgba(199, 166, 84, 0.1) 100%);
    border-color: rgba(199, 166, 84, 0.2);
}

.product-card__spec--featured .product-card__spec-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.product-card__spec--featured-icon {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.product-card__spec--featured .product-card__spec-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.product-card__spec-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.product-card__spec-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    width: 100%;
    max-width: 100%;
    background: #FFFFFF;
    border: 1.5px solid rgba(199, 166, 84, 0.25);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1a1a1a;
    transition: border-color 200ms ease-out;
}

.product-card__spec-option:hover {
    border-color: var(--color-accent);
}

.product-card__spec-option-icon {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.product-card__spec-option-text {
    flex: 1;
}

.product-card__cta {
    width: 100%;
    margin-top: auto;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* ===================================
           11. ACCESSIBILITY
           =================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible styles */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

/* ===================================
           12. RESPONSIVE REFINEMENTS
           =================================== */

@media (max-width: 374px) {
    .container {
        padding: 0 var(--space-1);
    }
}


/* Modal, product-detail e reviews movidos para assets/css/modals.css (fonte de verdade). */

/* Product Grid */
.product-grid-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.product-radio-card {
    position: relative;
    cursor: pointer;
}

.product-radio-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.product-radio-visual {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: var(--space-3);
    transition: all 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-3);
}

.product-radio-card input:checked+.product-radio-visual {
    border-color: #111;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-radio-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

.product-radio-info h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.product-radio-info p {
    font-size: 0.75rem;
    color: #666;
}

/* Variant Chips */
.variant-selector-panel {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: var(--space-4);
    margin-bottom: var(--space-6);
    animation: fadeIn 0.3s ease;
}

.variant-selector-panel label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #111;
    margin-bottom: var(--space-3);
}

.variant-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-chip {
    cursor: pointer;
    position: relative;
}

.variant-chip input {
    position: absolute;
    opacity: 0;
}

.variant-chip-label {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #444;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.variant-chip input:checked+.variant-chip-label {
    background: #111;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Actions */
.industrial-actions {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.industrial-actions.split {
    justify-content: space-between;
}

.btn-industrial-primary,
.btn-industrial-secondary,
.btn-industrial-next,
.btn-industrial-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-industrial-primary {
    background: #111;
    color: #fff;
    flex: 1;
}

.btn-industrial-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-industrial-primary:hover:not(:disabled) {
    background: #333;
    transform: translateY(-1px);
}

.btn-industrial-secondary {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
}

.btn-industrial-secondary:hover {
    background: #f9f9f9;
    border-color: #ccc;
}

.btn-industrial-next {
    background: #f5f5f5;
    color: #111;
    width: 100%;
    margin-top: var(--space-4);
}

.btn-industrial-next:hover {
    background: #e5e5e5;
}

.btn-industrial-success {
    background: #25D366;
    color: #fff;
    flex: 1;
}

.btn-industrial-success:hover {
    background: #1ebc57;
    transform: translateY(-1px);
}

/* Cart Summary */
.industrial-cart-summary {
    margin-top: var(--space-6);
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: var(--space-4);
}

.cart-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    margin-bottom: var(--space-3);
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
}

.cart-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f9f9f9;
}

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

.cart-item-thumb {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
    background: #eee;
}

.cart-item-text h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111;
}

.cart-item-text p {
    font-size: 0.75rem;
    color: #666;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
}

.cart-item-remove:hover {
    color: #ff4444;
}

/* Form Grid */
.form-grid {
    display: grid;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.industrial-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.industrial-input:focus {
    outline: none;
    border-color: #111;
}

.industrial-view {
    display: none;
}

.industrial-view.is-active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
