/* ================================================
   VELORA BEAUTY — MAIN STYLESHEET
   PT. Velora Beauty Indonesia
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* === VARIABLES === */
:root {
    --gold:        #D4AF37;
    --gold-light:  #E8C94A;
    --gold-dark:   #B8960C;
    --gold-pale:   #F7EFC6;
    --red:         #8B1E2D;
    --red-dark:    #6B1522;
    --white:       #FAFAFA;
    --beige:       #F5E9DA;
    --beige-dark:  #EDD8C0;
    --dark:        #1A1A1A;
    --dark2:       #2D1219;
    --text:        #333333;
    --text-muted:  #6B7280;

    --font-heading: 'Playfair Display', serif;
    --font-body:    'Poppins', sans-serif;

    --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:  0 4px 24px rgba(0,0,0,0.12);
    --shadow-lg:  0 12px 48px rgba(0,0,0,0.16);
    --shadow-gold: 0 4px 20px rgba(212,175,55,0.3);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    --transition: all 0.3s ease;
    --container:  1200px;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.1rem; }
p  { line-height: 1.75; color: var(--text-muted); }

/* === LAYOUT === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-bg { background: var(--beige); }
.section-dark { background: var(--dark2); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }

/* === SECTION HEADING === */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: var(--gold-pale);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 14px;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}
.title-underline {
    display: inline-block;
    position: relative;
}
.title-underline::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(212,175,55,0.45);
}
.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold-dark);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}
.btn-red {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    box-shadow: 0 4px 20px rgba(139,30,45,0.3);
}
.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(139,30,45,0.4);
}
.btn-white {
    background: #fff;
    color: var(--red);
    font-weight: 700;
}
.btn-white:hover { background: var(--beige); transform: translateY(-2px); }
.btn-lg { padding: 18px 44px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-full { width: 100%; }

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.navbar-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.navbar-logo span:first-child {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
}
.navbar-logo span:last-child {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 1px;
}
.navbar.scrolled .navbar-logo span:last-child { color: var(--text-muted); }
.navbar-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.navbar-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}
.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}
.navbar-links a:hover::after,
.navbar-links a.active::after { width: 100%; }
.navbar-links a:hover { color: var(--gold-light); }
.navbar-links a.active { color: var(--gold); }
.navbar.scrolled .navbar-links a { color: var(--text); }
.navbar.scrolled .navbar-links a:hover { color: var(--gold-dark); }
.navbar.scrolled .navbar-links a.active { color: var(--gold-dark); }
.navbar-links a.btn { padding-bottom: revert; }
.navbar-links a.btn-sm { padding: 10px 22px; }
.navbar-links a.btn::after { display: none; }
.navbar-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.navbar-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}
.navbar.scrolled .navbar-hamburger span { background: var(--dark); }

/* === HERO - HOMEPAGE === */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #180810 0%, #2D1219 40%, #1A0E04 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(212,175,55,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 80% at 20% 80%, rgba(139,30,45,0.2) 0%, transparent 60%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
}
.hero-content {}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero-tag::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--gold);
}
.hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.18;
    margin-bottom: 20px;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    max-width: 460px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(212,175,55,0.2);
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    letter-spacing: 0.05em;
}
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-mockup {
    width: 480px;
    height: 340px;
    background: linear-gradient(145deg, rgba(212,175,55,0.15), rgba(139,30,45,0.1));
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}
.hero-mockup::before {
    content: '';
    position: absolute;
    top: -30%; left: -30%;
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(212,175,55,0.2), transparent 70%);
    border-radius: 50%;
}
.hero-product-circle {
    width: 200px; height: 200px;
    background: linear-gradient(145deg, #D4AF37, #8B1E2D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 0 60px rgba(212,175,55,0.3);
}
.hero-product-inner {
    width: 160px; height: 160px;
    background: linear-gradient(145deg, #F5E9DA, #EDD8C0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero-product-inner span:first-child {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.05em;
}
.hero-product-inner span:last-child {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.hero-product-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.1em;
}
.hero-product-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 6px;
}
.hero-badge {
    position: absolute;
    top: 32px; right: -16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    box-shadow: var(--shadow-gold);
}
.hero-badge-2 {
    position: absolute;
    bottom: 48px; left: -20px;
    background: rgba(255,255,255,0.95);
    color: var(--dark);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-badge-2 .dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

/* === HERO - INNER PAGES === */
.hero-inner {
    padding: 130px 0 60px;
    background: linear-gradient(135deg, #180810 0%, #2D1219 60%, #1A0E04 100%);
    position: relative;
    overflow: hidden;
}
.hero-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(212,175,55,0.1) 0%, transparent 70%);
}
.hero-inner-content { position: relative; z-index: 1; }
.hero-inner h1 { color: #fff; margin-bottom: 14px; }
.hero-inner p { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 560px; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* === BENEFIT CARDS === */
.benefit-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212,175,55,0.1);
    transition: var(--transition);
    text-align: center;
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-pale);
}
.benefit-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--gold-pale), var(--beige));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}
.benefit-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--dark);
}
.benefit-card p { font-size: 0.875rem; }

/* === STEPS === */
.step-card {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}
.step-number {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-gold);
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step-card p { font-size: 0.875rem; }
.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 28px;
    color: var(--gold);
    font-size: 1.4rem;
    opacity: 0.4;
}

/* === TESTIMONIALS === */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212,175,55,0.1);
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.testimonial-text {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold-pale), var(--beige-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red);
}
.testimonial-name { font-weight: 600; font-size: 0.875rem; color: var(--dark); }
.testimonial-role { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--dark2), #1A0808);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    text-align: center;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,175,55,0.1) 0%, transparent 70%);
}
.cta-section .section-tag { color: var(--red); background: rgba(139,30,45,0.15); }
.cta-section h2 { color: #fff; margin-bottom: 16px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.6); margin-bottom: 36px; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* === RESELLER SCHEME === */
.scheme-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.scheme-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.scheme-badge {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 99px;
}
.scheme-tier {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.scheme-min { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.scheme-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 4px;
}
.scheme-price-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 20px; }
.scheme-profit {
    background: var(--beige);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 20px;
}
.scheme-features { text-align: left; }
.scheme-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.83rem;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid var(--beige);
}
.scheme-features li:last-child { border-bottom: none; }
.scheme-features li::before {
    content: '✓';
    color: var(--gold-dark);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* === INCOME SIMULATION === */
.sim-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.sim-table th {
    background: linear-gradient(135deg, var(--dark2), #2a1218);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 16px 20px;
    text-align: left;
}
.sim-table td {
    padding: 16px 20px;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--beige);
    color: var(--text);
}
.sim-table tr:last-child td { border-bottom: none; }
.sim-table tr:nth-child(even) td { background: #FDFAF5; }
.sim-highlight { font-weight: 700; color: var(--red); }

/* === FAQ === */
.faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212,175,55,0.15);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: var(--gold-pale); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    user-select: none;
}
.faq-icon {
    width: 28px; height: 28px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--gold-dark);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold-pale); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.875rem; }

/* === FORMS === */
.form-section {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212,175,55,0.1);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.form-label .req { color: var(--red); margin-left: 2px; }
.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-control::placeholder { color: #C1C4CC; }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 6px; }

/* Payment radio */
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.payment-option:has(input:checked) {
    border-color: var(--gold);
    background: var(--gold-pale);
}
.payment-option input { accent-color: var(--gold-dark); }
.payment-icon { font-size: 1.4rem; }
.payment-label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.payment-sub { font-size: 0.72rem; color: var(--text-muted); }

/* === SHOP / PRODUCT === */
.product-gallery {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: start;
}
.product-thumbs { display: flex; flex-direction: column; gap: 12px; }
.product-thumb {
    width: 72px; height: 72px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
    transition: var(--transition);
}
.product-thumb.active { border-color: var(--gold); }
.product-main-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}
.product-img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}
.product-img-1 { background: linear-gradient(145deg, #F5E9DA, #EDD8C0); }
.product-img-2 { background: linear-gradient(145deg, #E8D5F0, #D4B8E0); }
.product-img-3 { background: linear-gradient(145deg, #D4E8DA, #B8D4C0); }
.product-img-4 { background: linear-gradient(145deg, #D4D8E8, #B8BED4); }
.product-brand-label {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    opacity: 0.2;
}
.product-badge-promo {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 99px;
}
.product-info-section h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 8px; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.product-rating-stars { color: var(--gold); font-size: 0.9rem; }
.product-rating-count { font-size: 0.8rem; color: var(--text-muted); }
.product-price-wrap { margin-bottom: 20px; }
.product-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--red);
}
.product-price-orig {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 10px;
}
.product-price-save {
    display: inline-block;
    background: var(--beige);
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
    margin-left: 10px;
}
.product-benefits {
    background: var(--beige);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}
.product-benefits h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.product-benefits ul li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.83rem; color: var(--text-muted);
    padding: 4px 0;
}
.product-benefits ul li::before { content: '✦'; color: var(--gold); font-size: 0.7rem; margin-top: 3px; flex-shrink: 0; }
.qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #E5E7EB;
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: fit-content;
    margin-bottom: 20px;
}
.qty-btn {
    width: 44px; height: 44px;
    background: var(--beige);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    transition: var(--transition);
}
.qty-btn:hover { background: var(--beige-dark); }
.qty-input {
    width: 60px; height: 44px;
    border: none; border-left: 1.5px solid #E5E7EB; border-right: 1.5px solid #E5E7EB;
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    outline: none;
    background: #fff;
}
.buy-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* === ORDER SUMMARY === */
.order-card {
    background: var(--beige);
    border-radius: var(--radius-md);
    padding: 28px;
    position: sticky;
    top: 100px;
}
.order-card h3 { font-size: 1.1rem; margin-bottom: 20px; color: var(--dark); }
.order-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--beige-dark); font-size: 0.875rem; }
.order-item:last-of-type { border-bottom: none; }
.order-total { display: flex; justify-content: space-between; padding-top: 16px; margin-top: 8px; border-top: 2px solid var(--gold); }
.order-total-label { font-weight: 700; color: var(--dark); }
.order-total-price { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--red); }
.order-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 12px; }

/* === ABOUT === */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.about-stat {
    text-align: center;
    padding: 24px 16px;
    background: var(--beige);
    border-radius: var(--radius-md);
}
.about-stat-num { font-family: var(--font-heading); font-size: 2.2rem; color: var(--red); font-weight: 700; }
.about-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }
.value-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212,175,55,0.15);
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-icon {
    width: 52px; height: 52px;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.value-card h3 { font-size: 1rem; margin-bottom: 6px; }
.value-card p { font-size: 0.83rem; }

/* === PRODUCT CARDS === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212,175,55,0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-pale);
}
.product-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: var(--beige);
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img {
    transform: scale(1.06);
}
.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 99px;
    letter-spacing: 0.03em;
}
.product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-card-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
}
.product-card-cat {
    font-size: 0.72rem;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.product-card-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 2px;
}
.product-card-orig {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 14px;
}
.product-card-actions {
    margin-top: auto;
    display: flex;
    gap: 8px;
}
.product-card-actions .btn {
    padding: 10px 16px;
    font-size: 0.78rem;
    flex: 1;
}
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .product-card-actions { flex-direction: column; }
}

/* === PRODUCT CARD ELEGANT (Homepage) === */
.product-card-elegant {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.product-card-elegant .product-card-img {
    position: relative;
}
.product-card-elegant .product-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,14,4,0) 50%, rgba(26,14,4,0.35) 100%);
    opacity: 0.6;
    transition: var(--transition);
}
.product-card-elegant:hover .product-card-img::after {
    opacity: 1;
    background: linear-gradient(180deg, rgba(26,14,4,0.1) 0%, rgba(26,14,4,0.55) 100%);
}
.product-card-elegant .product-card-badge.badge-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
}
.product-card-elegant .product-card-badge.badge-red {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
}
.product-card-elegant .product-card-badge.badge-green {
    background: linear-gradient(135deg, #3d8b4e, #2a6b3a);
    color: #fff;
}
.product-card-elegant .product-card-badge.badge-dark {
    background: linear-gradient(135deg, var(--dark2), var(--dark));
    color: var(--gold-light);
}
.product-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,14,4,0.45);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}
.product-card-elegant:hover .product-card-overlay {
    opacity: 1;
}
.product-card-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.95);
    color: var(--dark);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    transform: translateY(12px);
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0;
    box-shadow: var(--shadow-md);
}
.product-card-elegant:hover .product-card-view {
    transform: translateY(0);
    opacity: 1;
}
.product-card-elegant .product-card-body {
    padding: 24px;
}
.product-card-elegant .product-card-cat {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.product-card-elegant .product-card-name {
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.product-card-elegant:hover .product-card-name {
    color: var(--red);
}
.product-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(212,175,55,0.15);
}
.product-card-elegant .product-card-price {
    font-size: 1.25rem;
    margin-bottom: 0;
}
.product-card-elegant .product-card-orig {
    margin-bottom: 0;
}

/* ================================================
   PRODUK UNGGULAN SLIDER — REDESIGN
   ================================================ */

/* Section background */
.produk-unggulan-section {
    background: linear-gradient(160deg, #fff 0%, var(--beige) 60%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.produk-unggulan-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.produk-unggulan-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(139,30,45,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* === Keunggulan Badges === */
.produk-keunggulan-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.keunggulan-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid rgba(212,175,55,0.25);
    border-radius: 99px;
    padding: 10px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.keunggulan-badge:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}
.keunggulan-icon {
    font-size: 1.1rem;
    line-height: 1;
}

/* === Slider Wrapper === */
.produk-slider-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #fff;
    border: 1px solid rgba(212,175,55,0.15);
    margin-bottom: 24px;
}

/* === Slides === */
.produk-slider {
    position: relative;
    width: 100%;
    min-height: 480px;
}
.produk-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
    transform: translateX(40px);
}
.produk-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    position: relative;
}
.produk-slide.exit-left {
    opacity: 0;
    transform: translateX(-40px);
}

/* === Slide Inner Layout === */
.produk-slide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 480px;
}

/* === Image Side === */
.produk-slide-img-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(145deg, var(--beige) 0%, var(--beige-dark) 100%);
    padding: 32px 32px 24px;
    gap: 16px;
}
.produk-slide-img-frame {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    flex-shrink: 0;
}
.produk-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}
.produk-slide.active .produk-slide-img {
    transform: scale(1.02);
}
.produk-slide-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: 99px;
    color: #fff;
    z-index: 2;
}
.produk-slide-badge.badge-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.produk-slide-badge.badge-red {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.produk-slide-badge.badge-green {
    background: linear-gradient(135deg, #3d8b4e, #2a6b3a);
}
.produk-slide-badge.badge-dark {
    background: linear-gradient(135deg, var(--dark2), var(--dark));
    color: var(--gold-light);
}
.produk-slide-rating-pill {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    border-radius: 99px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}
.star-icon {
    color: var(--gold);
    font-size: 0.9rem;
}
.produk-slide-sold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    border-radius: 99px;
    padding: 8px 18px;
    font-size: 0.82rem;
    color: var(--text);
    border: 1px solid rgba(212,175,55,0.2);
}
.sold-fire { font-size: 1rem; }
.produk-slide-sold strong { color: var(--red); }

/* === Info Side === */
.produk-slide-info {
    padding: 48px 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}
.produk-slide-cat {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
}
.produk-slide-name {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 14px;
}
.produk-slide-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* === Highlights === */
.produk-slide-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--beige);
    border-radius: var(--radius-md);
    border: 1px solid rgba(212,175,55,0.15);
}
.produk-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 500;
}
.produk-highlight-check {
    color: var(--gold-dark);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* === Footer (CTA) === */
.produk-slide-footer {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212,175,55,0.2);
}
.produk-slide-footer .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 0.92rem;
    border-radius: var(--radius-lg);
}

/* === Slider Buttons === */
.produk-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1.5px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    color: var(--dark);
}
.produk-slider-btn svg {
    width: 20px;
    height: 20px;
}
.produk-slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    box-shadow: var(--shadow-gold);
    transform: translateY(-50%) scale(1.08);
}
.produk-slider-prev { left: -24px; }
.produk-slider-next { right: -24px; }

/* === Dots === */
.produk-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.produk-dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: rgba(212,175,55,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.produk-dot.active {
    width: 28px;
    background: var(--gold);
}

/* === Thumbnail Nav === */
.produk-thumbs-nav {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.produk-thumb-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid rgba(212,175,55,0.15);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    cursor: pointer;
    transition: var(--transition);
    width: 120px;
    text-align: center;
}
.produk-thumb-nav img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-sm);
    display: block;
}
.produk-thumb-nav span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.3;
    transition: color 0.3s ease;
}
.produk-thumb-nav:hover {
    border-color: var(--gold-pale);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.produk-thumb-nav.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    background: var(--gold-pale);
}
.produk-thumb-nav.active span {
    color: var(--gold-dark);
}

/* === Responsive: Produk Slider === */
@media (max-width: 900px) {
    .produk-slide-inner {
        grid-template-columns: 1fr;
    }
    .produk-slide-img-wrap {
        padding: 28px 28px 16px;
        min-height: 320px;
    }
    .produk-slide-img-frame {
        max-width: 260px;
        aspect-ratio: 4 / 4;
    }
    .produk-slide-info {
        padding: 28px 28px 32px;
    }
    .produk-slider-prev { left: 8px; }
    .produk-slider-next { right: 8px; }
    .produk-thumbs-nav { gap: 8px; }
    .produk-thumb-nav { width: 90px; padding: 8px 10px; }
    .produk-thumb-nav img { width: 52px; height: 52px; }
}
@media (max-width: 600px) {
    .produk-slide-img-frame {
        max-width: 200px;
        aspect-ratio: 1 / 1;
    }
    .produk-slide-info {
        padding: 20px 20px 28px;
    }
    .produk-slide-highlights {
        grid-template-columns: 1fr;
    }
    .produk-slide-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .produk-slide-footer .btn {
        width: 100%;
        justify-content: center;
    }
    .produk-keunggulan-badges {
        gap: 8px;
    }
    .keunggulan-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
    .produk-thumbs-nav {
        gap: 6px;
    }
    .produk-thumb-nav {
        width: 72px;
        padding: 6px 8px;
    }
    .produk-thumb-nav img {
        width: 44px;
        height: 44px;
    }
    .produk-thumb-nav span {
        font-size: 0.62rem;
    }
}

/* === CONTACT === */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212,175,55,0.15);
    margin-bottom: 16px;
    transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-sm); }
.contact-info-icon {
    width: 48px; height: 48px;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-value { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.contact-info-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.map-placeholder {
    height: 240px;
    background: linear-gradient(135deg, var(--beige), var(--beige-dark));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    border: 2px dashed var(--beige-dark);
    margin-top: 24px;
}

/* === SUCCESS / ALERT === */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* === WA FLOAT === */
.wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 999;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* === FOOTER === */
.footer {
    background: #100508;
    color: rgba(255,255,255,0.75);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand span:first-child {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 4px;
}
.footer-brand span:last-child {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    display: block;
    margin-bottom: 16px;
}
.footer-desc { font-size: 0.83rem; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-social:hover { background: var(--gold); color: #fff; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item span:first-child { font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item span:last-child { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}
.animate-fade-up { animation: fadeInUp 0.7s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.float-anim { animation: floatY 5s ease-in-out infinite; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .navbar-links { display: none; }
    .navbar-hamburger { display: flex; }
    .navbar-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(26,8,16,0.97);
        backdrop-filter: blur(12px);
        padding: 24px;
        gap: 20px;
    }
    .navbar-links.open a { color: rgba(255,255,255,0.85); font-size: 1rem; }
    .navbar-hamburger span { background: #fff !important; }
    .navbar.scrolled .navbar-hamburger span { background: var(--dark) !important; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
    .hero-stats { gap: 24px; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .payment-options { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .product-gallery { grid-template-columns: 1fr; }
    .product-thumbs { flex-direction: row; }
    .product-thumb { width: 60px; height: 60px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .form-section { padding: 28px 20px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .cta-btns { flex-direction: column; align-items: center; }
    .buy-actions { flex-direction: column; }
    .buy-actions .btn { width: 100%; }
    .scheme-card { margin-top: 12px; }
}
