/* ===== Reset & Variables ===== */
:root {
    --gold: #c49b6a;
    --gold-dark: #a87d4f;
    --gold-light: #e8d5c4;
    --gold-pale: #faf6f0;
    --black: #1a1a1a;
    --charcoal: #2a2a2a;
    --gray: #6b6b6b;
    --gray-light: #a0a0a0;
    --white: #ffffff;
    --cream: #faf8f5;
    --border: #e8e3dc;
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.04);
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
    --shadow-gold: 0 8px 32px rgba(196,155,106,0.25);
    --font: "Segoe UI", system-ui, -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --nav-height: 68px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== Typography ===== */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -0.5px; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.nav.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.logo span { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--charcoal);
}

.nav-links a {
    position: relative;
    transition: color var(--transition);
    padding: 4px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--gold);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(196,155,106,0.3);
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(196,155,106,0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, #faf6f0 0%, #f2ebe0 25%, #e8d9c5 60%, #dcc9aa 100%);
    overflow: hidden;
    padding: 120px 28px 80px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,155,106,0.12) 0%, transparent 70%);
}

.hero-bg-circle.c1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.hero-bg-circle.c2 { width: 400px; height: 400px; bottom: -100px; left: -80px; }
.hero-bg-circle.c3 {
    width: 300px; height: 300px;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(196,155,106,0.06) 0%, transparent 70%);
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--gold-dark);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero h1 { color: var(--black); margin-bottom: 20px; }

.hero-accent {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(196,155,106,0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--black);
    color: var(--black);
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat strong {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: -0.5px;
}

.stat span {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ===== Section Common ===== */
section { padding: 100px 28px; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 { margin-bottom: 14px; color: var(--black); }

.section-desc {
    max-width: 560px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.02rem;
}

.section-hint {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--gray-light);
}

.section-hint code {
    background: var(--gold-pale);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.78rem;
    color: var(--gold-dark);
}

/* ===== Products ===== */
.products { background: var(--white); }

.product-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.product-card.featured {
    background: linear-gradient(160deg, #fdf9f3, #faf3e8);
    border-color: var(--gold-light);
}

.product-tag {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

/* Product Image */
.product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #f5efe8, #ede3d6);
    border-bottom: 1px solid var(--border);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-img-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gray-light);
    position: absolute;
    top: 0; left: 0;
}

.product-img-placeholder svg {
    width: 56px; height: 56px;
    opacity: 0.5;
}

.product-img-placeholder span {
    font-size: 0.78rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.product-body {
    padding: 28px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.product-specs {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
}

.product-specs li {
    font-size: 0.82rem;
    color: var(--charcoal);
}

.product-specs li span {
    color: var(--gray-light);
    margin-right: 6px;
    font-weight: 500;
}


/* ===== Color Chart / Shades ===== */
.shades { background: var(--cream); }

.shades-gallery {
    max-width: var(--max-width);
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

.shades-main,
.shades-side {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
    position: relative;
}

.shades-main:hover,
.shades-side:hover { transform: translateY(-2px); }

.shades-main img,
.shades-side img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.shades-placeholder {
    display: none;
    width: 100%;
    min-height: 300px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray-light);
    background: linear-gradient(135deg, #faf6f0, #f5efe8);
    padding: 40px 20px;
}

.shades-placeholder svg {
    width: 80px; height: 64px;
    opacity: 0.4;
}

.shades-placeholder span {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

.shades-placeholder small {
    display: block;
    font-weight: 400;
    color: var(--gray-light);
    margin-top: 4px;
}

.shades-caption {
    padding: 14px 20px;
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.shades-cta {
    text-align: center;
    padding: 32px 0 0;
}

.shades-cta p {
    color: var(--gray);
    margin-bottom: 16px;
}

/* ===== Why Us ===== */
.why-us { background: var(--white); }

.why-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.why-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all var(--transition);
}

.why-card:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.why-card h4 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}


/* ===== FAQ ===== */
.faq { background: var(--cream); }

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover { border-color: var(--gold-light); }

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
    color: var(--black);
    transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform var(--transition);
    margin-left: 16px;
    flex-shrink: 0;
}

.faq-item[open] summary { color: var(--gold-dark); }
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-item[open] { border-color: var(--gold-light); box-shadow: var(--shadow-sm); }

.faq-item p {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== Contact ===== */
.contact { background: var(--white); }

.contact-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start;
}

/* WhatsApp Card */
.wa-card {
    background: linear-gradient(160deg, #fdf9f3, #faf3e8);
    border: 1px solid var(--gold-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
}

.wa-icon-wrap {
    width: 72px; height: 72px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.wa-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }

.wa-card > p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

.btn-wa:hover {
    background: #1fa855;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

.wa-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--gray-light);
}

/* Contact Form */
.contact-form {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}

.contact-form h3 { font-size: 1.2rem; margin-bottom: 22px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: all var(--transition);
    color: var(--black);
    font-size: 0.92rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196,155,106,0.1);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form input,
.contact-form select { margin-bottom: 12px; }

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
    margin-bottom: 20px;
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray-light);
    text-align: center;
    margin-top: 14px;
}


/* ===== Footer ===== */
.footer {
    background: var(--black);
    color: var(--gray-light);
    padding: 72px 28px 0;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 14px;
    display: block;
}

.footer-brand .logo span { color: var(--gold); }

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 360px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.8rem;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    padding: 5px 0;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 22px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.25);
    text-align: center;
}

/* ===== WhatsApp Float ===== */
.wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 999;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: all var(--transition);
    animation: wa-float-pulse 2.5s infinite;
}

.wa-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37,211,102,0.6);
    animation: none;
}

@keyframes wa-float-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 4px 36px rgba(37,211,102,0.7); }
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Form Success ===== */
.form-success {
    display: none;
    text-align: center;
    padding: 24px 12px;
}

.form-success.show { display: block; }

.form-success .check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--gold-pale);
    margin: 0 auto 16px;
    font-size: 2rem;
    color: var(--gold);
}

.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--gray); font-size: 0.9rem; }


/* ===== Responsive ===== */
@media (max-width: 900px) {
    .nav-links { gap: 20px; font-size: 0.82rem; }
    .shades-gallery { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: repeat(3, 1fr); }
}

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

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .nav-links.open { display: flex; }
    .hamburger { display: flex; }

    .hero { padding: 100px 20px 60px; min-height: auto; }
    .hero-stats { gap: 24px; }
    .stat strong { font-size: 1.3rem; }

    .product-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .product-img-wrap {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 480px) {
    .hero { padding: 80px 16px 48px; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-outline { text-align: center; justify-content: center; width: 100%; }
    .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .wa-float { bottom: 16px; right: 16px; width: 48px; height: 48px; }
    .wa-float svg { width: 22px; height: 22px; }

    .footer-links { grid-template-columns: 1fr 1fr; }

    .product-img-wrap {
        aspect-ratio: 4 / 3;
    }
}


/* ===== Hero Carousel ===== */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0.35) 0%, rgba(26,26,26,0.15) 50%, rgba(26,26,26,0.45) 100%);
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel dots */
.hero-dots {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: var(--white);
    border-color: var(--white);
}

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.2);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.6);
}

.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

@media (max-width: 768px) {
    .hero-dots { bottom: 120px; }
    .hero-arrow { width: 36px; height: 36px; font-size: 1rem; }
    .hero-arrow.prev { left: 12px; }
    .hero-arrow.next { right: 12px; }
}


/* ===== Product Image Carousel ===== */
.product-img-wrap.pc-enabled {
    cursor: pointer;
}

.product-img-wrap .pc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    backdrop-filter: blur(2px);
}

.product-img-wrap:hover .pc-arrow { display: flex; }

.product-img-wrap .pc-arrow:hover {
    background: rgba(0,0,0,0.55);
}

.product-img-wrap .pc-prev { left: 8px; }
.product-img-wrap .pc-next { right: 8px; }

.product-img-wrap .pc-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: none;
    gap: 6px;
}

.product-img-wrap:hover .pc-dots { display: flex; }

.product-img-wrap .pc-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.25s ease;
}

.product-img-wrap .pc-dots span.active {
    background: #fff;
    transform: scale(1.2);
}
