:root {
    --gold: #c5a028;
    --gold-dark: #9a7b1a;
    --gold-light: #e8d48a;
    --brown: #2b1b17;
    --brown-soft: #4a342e;
    --cream: #faf8f4;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 4px 24px rgba(43, 27, 23, 0.08);
    --radius: 6px;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Source Sans 3', system-ui, sans-serif;
    --header-h: 88px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --anim-duration: 0.7s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--brown-soft);
    background: var(--cream);
    line-height: 1.6;
    font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--brown);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 12px auto 0;
    transform: scaleX(0);
    transition: transform 0.8s var(--ease-out) 0.2s;
}

.section-title.is-visible::after {
    transform: scaleX(1);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--brown-soft);
}

/* Header */
.site-header {
    background: var(--black);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.35s var(--ease-out), padding 0.35s var(--ease-out);
}

.site-header.is-scrolled {
    box-shadow: 0 6px 28px rgba(43, 27, 23, 0.12);
}

.site-header.is-scrolled .header-main {
    padding-top: 8px;
    padding-bottom: 8px;
}

.site-header.is-scrolled .logo-img {
    width: 100px;
    height: 100px;
}

.header-top {
    background: var(--gold);
    color: var(--black);
    font-size: 0.85rem;
}

.header-top-inner {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    padding: 6px 0;
}

.header-contact { color: var(--black); }
.header-contact:hover { color: var(--white); }
.header-contact span { color: var(--black); }

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 1rem;
    transition: padding 0.35s var(--ease-out);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
}

.logo-link:hover { color: inherit; }

.logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), transform 0.4s var(--ease-out);
}

.logo-link:hover .logo-img {
    transform: scale(1.05) rotate(-2deg);
}

.logo-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
}

.logo-tagline {
    display: block;
    font-size: 0.75rem;
    font-style: italic;
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--white);
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.main-nav > ul > li > a {
    display: block;
    padding: 10px 16px;
    font-weight: 500;
    color: var(--white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--gold);
}

.has-dropdown { position: relative; }

.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.25s;
    flex-direction: column;
    display: flex;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    padding: 0px 18px;
    border-bottom: 1px solid #f0ebe3;
    text-transform: none;
    letter-spacing: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s;
    font-family: var(--font-sans);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 27, 23, 0.15);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--gold-dark);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: var(--white);
}

.btn-call {
    background: var(--brown);
    color: var(--white);
    border-color: var(--brown);
}

.btn-call:hover {
    background: var(--brown-soft);
    color: var(--white);
}

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1rem;
}

/* Banner — image slider */
.hero-banner {
    position: relative;
    color: var(--white);
}

.hero-slider {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s var(--ease-out), visibility 0.9s;
    z-index: 0;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 6s var(--ease-out);
}

.hero-slide.is-active img {
    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(105deg, rgba(43, 27, 23, 0.82) 0%, rgba(43, 27, 23, 0.45) 55%, rgba(43, 27, 23, 0.25) 100%);
    pointer-events: none;
}

.hero-content-wrap {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-content-wrap .hero-content {
    pointer-events: auto;
}

.hero-content {
    max-width: 680px;
    padding: 4rem 0;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(43, 27, 23, 0.45);
    color: var(--white);
    font-size: 1.75rem;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 4px 0;
}

.hero-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown);
    transform: translateY(-50%) scale(1.05);
}

.hero-nav-prev { left: 16px; }
.hero-nav-next { right: 16px; }

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s, width 0.3s;
}

.hero-dot.is-active,
.hero-dot:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.15);
}

.hero-dot.is-active {
    width: 28px;
    border-radius: 6px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--brown);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    border-radius: var(--radius);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-alt {
    background: var(--white);
}

/* Content block */
.content-block {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    align-items: center;
}

.content-block img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.25rem;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--gold-light);
}

.feature-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold-dark);
    margin-bottom: 4px;
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.75rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(43, 27, 23, 0.12);
}

.product-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #eee;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
}

.product-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 1.05rem;
}

.product-price span {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--brown-soft);
}

/* Why choose us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-left-width 0.35s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(43, 27, 23, 0.1);
    border-left-width: 6px;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gold-dark);
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.category-card:hover img { transform: scale(1.08); }

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43,27,23,0.85), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.category-card-overlay h3 {
    color: var(--white);
    font-size: 1.15rem;
}

/* Reviews */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--gold);
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.review-author {
    font-weight: 600;
    color: var(--gold-dark);
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.review-role {
    font-size: 0.85rem;
    color: var(--brown-soft);
}

/* Page hero (inner pages) */
.page-hero {
    background: linear-gradient(135deg, var(--brown), var(--brown-soft));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--gold-light);
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.breadcrumb {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.breadcrumb a { color: var(--gold-light); }

/* Product detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
    align-items: start;
}

.gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    aspect-ratio: 1;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.gallery-thumbs button {
    width: 72px;
    height: 72px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: none;
}

.gallery-thumbs button.active,
.gallery-thumbs button:hover {
    border-color: var(--gold);
}

.gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-info .product-price {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.sticky-cta {
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

/* Category page intro */
.category-intro {
    padding: 2.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gold-light);
}

.category-intro h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold-dark);
}

/* Gallery page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img { transform: scale(1.05); }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-info-card h3 {
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.contact-info-card li {
    list-style: none;
    padding: 8px 0;
    border-bottom: 1px solid #f0ebe3;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.contact-form label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    color: var(--brown);
}

/* About */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.about-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 3rem 0;
    text-align: center;
}

.stat-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--gold-light);
}

.stat-box strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold-dark);
}

/* Footer */
.site-footer {
    background: var(--brown);
    color: rgba(255,255,255,0.85);
    padding-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-logo {
    width: 80px;
    margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-about { margin-top: 0.75rem; opacity: 0.8; }

.site-footer h4 {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,0.8);
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--gold-light); }

.footer-cta {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.open {
    display: flex;
    animation: fadeIn 0.35s var(--ease-out);
}

.lightbox.open img {
    animation: scaleIn 0.4s var(--ease-out);
}

.lightbox img {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: white;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: transform 0.25s var(--ease-out);
    animation: floatPulse 2.5s ease-in-out infinite;
}

.floating-wa:hover { transform: scale(1.08); color: white; }

.floating-wa svg { width: 28px; height: 28px; fill: white; }

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55); }
}

/* Scroll & load animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(32px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.anim-ready [data-animate] {
    opacity: 0;
    will-change: opacity, transform;
}

.anim-ready [data-animate="fade-up"] {
    transform: translateY(28px);
}

.anim-ready [data-animate="fade-left"] {
    transform: translateX(-28px);
}

.anim-ready [data-animate="fade-right"] {
    transform: translateX(28px);
}

.anim-ready [data-animate="fade-in"] {
    transform: none;
}

.anim-ready [data-animate="scale-in"] {
    transform: scale(0.94);
}

[data-animate].is-visible {
    animation: fadeUp var(--anim-duration) var(--ease-out) forwards;
    animation-delay: var(--anim-delay, 0s);
}

[data-animate="fade-left"].is-visible {
    animation-name: fadeLeft;
}

[data-animate="fade-right"].is-visible {
    animation-name: fadeRight;
}

[data-animate="fade-in"].is-visible {
    animation-name: fadeIn;
}

[data-animate="scale-in"].is-visible {
    animation-name: scaleIn;
}

/* Hero load — no scroll needed */
.hero-banner [data-animate].is-visible {
    animation-duration: 0.9s;
}
.product-card .product-card-body {
    opacity: 1 !important;
    transform: none !important;
}
.feature-item {
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 160, 40, 0.15);
}

.review-card {
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(43, 27, 23, 0.1);
}

.stat-box {
    transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.stat-box:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.gallery-main img {
    transition: opacity 0.4s var(--ease-out);
}

.gallery-main.is-changing img {
    opacity: 0.7;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .hero-slide img,
    .floating-wa {
        animation: none;
        transition: none;
    }

    .hero-slide.is-active img {
        transform: none;
    }

    .anim-ready [data-animate] {
        opacity: 1;
        transform: none;
    }

    [data-animate].is-visible {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .section-title::after {
        transform: scaleX(1);
    }

    .btn:hover,
    .product-card:hover,
    .why-card:hover,
    .feature-item:hover,
    .review-card:hover,
    .stat-box:hover {
        transform: none;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .content-block,
    .product-detail,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .content-features { grid-template-columns: 1fr 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        background: var(--black);
        box-shadow: -4px 0 24px rgba(0,0,0,0.15);
        transition: right 0.3s;
        padding: 5rem 1.5rem 2rem;
        z-index: 1001;
    }

    .main-nav.open { right: 0; }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        display: none;
        padding-left: 1rem;
    }

    .has-dropdown.open .dropdown { display: flex; }

    .content-features { grid-template-columns: 1fr; }
    .header-top-inner { justify-content: center; flex-wrap: wrap; }
    .logo-text { display: none; }

    .hero-slider,
    .hero-slide img {
        min-height: 150px;
    }

    .hero-nav {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }

    .hero-nav-prev { left: 8px; }
    .hero-nav-next { right: 8px; }

    .hero-content { padding: 3rem 0 4.5rem; }
}
