/* =========================================
   MADU SABRINA - CSS
   Color Palette:
   - Honey Gold: #D4A574
   - Dark Brown: #4A3828
   - Light Cream: #F5F1E8
   - Amber: #E8B86D
   - Deep Brown: #2D1F14
   ========================================= */

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --honey-gold: #D4A574;
    --dark-brown: #4A3828;
    --light-cream: #F5F1E8;
    --amber: #E8B86D;
    --deep-brown: #2D1F14;
    --white: #FFFFFF;
    --black: #000000;
    --shadow: rgba(74, 56, 40, 0.15);
    --shadow-dark: rgba(45, 31, 20, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-brown);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    width: 100%;
    padding: 0;
}

/* ========== LOADING SCREEN ========== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--dark-brown) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.loaded .loading-screen {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 4px solid rgba(212, 165, 116, 0.3);
    border-top-color: var(--honey-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: var(--light-cream);
    font-size: 18px;
    letter-spacing: 2px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ========== HEADER ========== */
/* ── NAVBAR — Luxury Refined ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px 0;
    background: transparent;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 5%; right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,165,116,0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.site-header.scrolled {
    background: rgba(18, 10, 5, 0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(212,165,116,0.15), 0 8px 40px rgba(0,0,0,0.4);
}

.site-header.scrolled::after {
    opacity: 1;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(212,165,116,0.6);
    object-fit: cover;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 0 rgba(212,165,116,0);
}

.logo:hover .logo-img {
    border-color: var(--honey-gold);
    box-shadow: 0 0 0 4px rgba(212,165,116,0.12);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: 0.5px;
}

.logo-text span {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    color: var(--honey-gold);
    letter-spacing: 4px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Nav links */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-link {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%; right: 50%;
    height: 1px;
    background: var(--honey-gold);
    transition: left 0.35s ease, right 0.35s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0; right: 0;
}

/* Phone CTA */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1002;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--deep-brown);
    text-decoration: none;
    padding: 9px 20px;
    background: linear-gradient(135deg, var(--honey-gold) 0%, #C9941F 100%);
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.phone-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E8B86D 0%, var(--honey-gold) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phone-link:hover::before { opacity: 1; }
.phone-link:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,165,116,0.4); }

.phone-icon, .phone-number {
    position: relative;
    z-index: 1;
}

.phone-number {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1003;
    position: relative;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background-color: var(--white);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    display: block;
}

.hamburger span:nth-child(2) { width: 16px; }

.hamburger:hover span { background-color: var(--honey-gold); }
.hamburger:hover span:nth-child(2) { width: 24px; }

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

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--deep-brown);
        flex-direction: column;
        padding: 100px 40px;
        gap: 30px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 20px var(--shadow-dark);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--honey-gold);
        transform: translateX(10px);
        border-color: var(--honey-gold);
    }

    .nav-link::after {
        display: none;
    }

    .phone-link {
        display: none;
    }
}

/* Navbar transparency fix for products.html - REMOVED !important rules */

/* Hero section styles for products.html */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--honey-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-tagline {
    font-size: 24px;
    color: var(--light-cream);
    font-style: italic;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

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

.dot:hover,
.dot.active {
    background: #C9A961;
    border-color: #C9A961;
    transform: scale(1.2);
}

/* Mobile Navigation for very small screens */
@media (max-width: 480px) {
    .nav-menu {
        width: 260px;
        padding: 80px 30px;
    }

    .nav-link {
        font-size: 16px;
        padding: 8px 0;
    }
}

/* Mobile Navigation for 340px screens */
@media (max-width: 340px) {
    .nav-menu {
        width: 240px;
        padding: 60px 20px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 6px 0;
    }
}

/* Back Button for Mobile Screens */
.back-button-container {
    display: none;
    margin-bottom: 20px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--dark-brown);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--dark-brown);
}

.back-button:hover {
    background-color: var(--honey-gold);
    color: var(--deep-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-dark);
}

.back-button i {
    font-size: 16px;
}

/* Show back button only on mobile screens */
@media (max-width: 768px) {
    .back-button-container {
        display: block;
    }
    
    .category-header {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .category-title,
    .category-desc {
        margin: 0;
    }
}

/* Responsive adjustments for very small screens */
@media (max-width: 480px) {
    .back-button {
        font-size: 13px;
        padding: 10px 16px;
    }
}

@media (max-width: 340px) {
    .back-button {
        font-size: 12px;
        padding: 8px 14px;
    }
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 31, 20, 0.8) 0%, rgba(74, 56, 40, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--honey-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-tagline {
    font-size: 24px;
    color: var(--light-cream);
    font-style: italic;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--honey-gold);
    width: 40px;
    border-radius: 6px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 120px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--shadow);
}

/* ========== MADU KLANCENG BANNER - SAMA SEPERTI HERO ========== */
.klanceng-banner {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.klanceng-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    /* INI yang bikin parallax otomatis kayak hero */
    opacity: 1;
}

.klanceng-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 31, 20, 0.6) 0%, rgba(74, 56, 40, 0.4) 100%);
}

/* Banner title with decorative lines */
.klanceng-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.klanceng-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
    text-align: center;
}

/* Decorative lines around title */
.klanceng-banner-title::before,
.klanceng-banner-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--honey-gold);
    margin: 25px auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .klanceng-banner {
        height: 60vh;
        min-height: 400px;
    }

    /* Di mobile, background-attachment fixed kadang bermasalah, jadi dinonaktifkan */
    .klanceng-banner-slide {
        background-attachment: scroll;
    }

    .klanceng-banner-title::before,
    .klanceng-banner-title::after {
        width: 60px;
        height: 2px;
        margin: 20px auto;
    }
}

/* ========== MADU KLANCENG SECTION ========== */
.klanceng-section {
    padding: 120px 0;
    background-color: var(--white);
}

.klanceng-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.klanceng-content {
    order: 2;
}

.klanceng-image {
    order: 1;
}

.klanceng-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--shadow);
}

.section-label {
    font-size: 14px;
    color: var(--honey-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--deep-brown);
    line-height: 1.3;
    margin-bottom: 30px;
}

.about-text {
    color: var(--dark-brown);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--light-cream);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.feature-text p {
    color: var(--dark-brown);
    font-size: 14px;
    line-height: 1.6;
}

/* Media Query untuk Mobile (Layar di bawah 768px) */
@media (max-width: 768px) {
    .klanceng-grid {
        /* Ubah jadi 1 kolom saja */
        grid-template-columns: 1fr;
        gap: 30px;
        /* Perkecil jarak antar elemen agar tidak terlalu jauh */
    }

    .klanceng-image {
        /* Memastikan gambar muncul paling atas */
        order: 1;
    }

    .klanceng-content {
        /* Teks muncul di bawah gambar */
        order: 2;
    }

    .section-title {
        font-size: 32px;
        /* Perkecil sedikit ukuran font judul di mobile */
    }
}

g

/* ========== PRODUCTS SECTION ========== */
.products-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-cream) 100%);
}

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

.product-category {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.category-desc {
    font-size: 18px;
    color: var(--dark-brown);
    opacity: 0.8;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Fix for single item grids to prevent stretching */
.product-grid:has(.product-card:nth-child(1):only-child) {
    grid-template-columns: repeat(2, 1fr);
}

.product-grid:has(.product-card:nth-child(1):only-child) .product-card {
    max-width: 320px;
    margin: 0 auto;
}

/* Responsive fix for single items */
@media (max-width: 768px) {
    .product-grid:has(.product-card:nth-child(1):only-child) {
        grid-template-columns: 1fr;
    }

    .product-grid:has(.product-card:nth-child(1):only-child) .product-card {
        max-width: none;
        margin: 0;
    }
}

/* ── PRODUCT CARDS — Luxury Refined ── */
.product-card {
    background: #FDFAF5;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212,165,116,0.15);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.45s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--honey-gold);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(45,31,20,0.14), 0 4px 16px rgba(212,165,116,0.1);
    border-color: rgba(212,165,116,0.35);
}

.product-card:hover::before { opacity: 1; }

.product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--deep-brown);
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(18,10,5,0.35), transparent);
    transition: height 0.4s ease;
}

.product-card:hover .product-image::after { height: 40px; }

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.96);
}

.product-card:hover .product-image img {
    transform: scale(1.06);
    filter: brightness(1.02);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(18,10,5,0.75);
    backdrop-filter: blur(8px);
    color: var(--honey-gold);
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid rgba(212,165,116,0.4);
    z-index: 2;
}

.product-info {
    padding: 28px 28px 24px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
    line-height: 1.25;
}

.product-unit {
    font-size: 11px;
    color: var(--honey-gold);
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-description {
    font-size: 13.5px;
    color: var(--dark-brown);
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.65;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 18px 28px 24px;
    border-top: 1px solid rgba(212,165,116,0.15);
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-brown);
    letter-spacing: -0.5px;
}

.product-price::before {
    content: '';
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--honey-gold);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.btn-add-cart {
    background: transparent;
    color: var(--dark-brown);
    border: 1px solid rgba(74,56,40,0.3);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-add-cart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark-brown), var(--deep-brown));
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-add-cart:hover {
    color: var(--honey-gold);
    border-color: var(--dark-brown);
    box-shadow: 0 4px 16px rgba(45,31,20,0.2);
}

.btn-add-cart:hover::before { transform: translateY(0); }

/* ========== Necropolis BANNER - SAMA SEPERTI HERO ========== */
.necro-banner {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.necro-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    /* INI yang bikin parallax otomatis kayak hero */
    opacity: 1;
}

.necro-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.50) 0%, rgba(107, 68, 35, 0.50) 100%);
}

/* Banner title with decorative lines */
.necro-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.necro-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
    text-align: center;
}

/* Decorative lines around title */
.necro-banner-title::before,
.necro-banner-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--honey-gold);
    margin: 25px auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .necro-banner {
        height: 60vh;
        min-height: 400px;
    }

    /* Di mobile, background-attachment fixed kadang bermasalah, jadi dinonaktifkan */
    .necro-banner-slide {
        background-attachment: scroll;
    }

    .necro-banner-title::before,
    .necro-banner-title::after {
        width: 60px;
        height: 2px;
        margin: 20px auto;
    }
}

/* ========== BENEFITS SECTION ========== */
.benefits-section {
    padding: 120px 0;
    background-color: var(--deep-brown);
    color: var(--white);
}

.benefits-section .section-label {
    color: var(--honey-gold);
}

.benefits-section .section-title {
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background-color: rgba(212, 165, 116, 0.1);
    transform: translateY(-10px);
    border-color: var(--honey-gold);
}

.benefit-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--honey-gold);
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== ORDER SECTION ========== */
.order-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--light-cream) 0%, var(--white) 100%);
}

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

.order-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--dark-brown);
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.order-form,
.cart-summary {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow);
}

.order-form h3,
.cart-summary h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--dark-brown);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(74, 56, 40, 0.2);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--honey-gold);
}

#cart-items {
    margin-bottom: 20px;
}

.cart-item {
    padding: 20px;
    background-color: var(--light-cream);
    border-radius: 8px;
    margin-bottom: 15px;
}

.cart-item-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.cart-item-name {
    font-weight: 600;
    color: var(--dark-brown);
}

.cart-item-price {
    color: var(--honey-gold);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-control-cart {
    display: flex;
    gap: 10px;
    align-items: center;
}

.quantity-control-cart button {
    width: 30px;
    height: 30px;
    border: none;
    background-color: var(--dark-brown);
    color: var(--white);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-control-cart button:hover {
    background-color: var(--honey-gold);
    color: var(--deep-brown);
}

.btn-remove {
    background-color: #dc2626;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background-color: #b91c1c;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--dark-brown);
    opacity: 0.6;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 2px solid rgba(74, 56, 40, 0.2);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.btn-order,
.btn-clear {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-order {
    background-color: var(--dark-brown);
    color: var(--white);
}

.btn-order:hover {
    background-color: var(--honey-gold);
    color: var(--deep-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-dark);
}

.btn-clear {
    background-color: transparent;
    color: var(--dark-brown);
    border: 2px solid var(--dark-brown);
}

.btn-clear:hover {
    background-color: var(--dark-brown);
    color: var(--white);
}

/* ========== ORDER MODAL ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 2px solid var(--light-cream);
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--dark-brown);
}

.close-modal {
    font-size: 36px;
    color: var(--dark-brown);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--honey-gold);
}

.modal-body {
    padding: 30px;
}

.modal-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--dark-brown);
    margin-bottom: 25px;
}

.quantity-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.quantity-control label {
    font-weight: 600;
    color: var(--dark-brown);
}

.quantity-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.quantity-buttons button {
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--dark-brown);
    color: var(--white);
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-buttons button:hover {
    background-color: var(--honey-gold);
    color: var(--deep-brown);
}

.quantity-buttons span {
    font-size: 20px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.price-total {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--light-cream);
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-brown);
}

.modal-footer {
    display: flex;
    gap: 15px;
    padding: 30px;
    border-top: 2px solid var(--light-cream);
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--dark-brown);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--honey-gold);
    color: var(--deep-brown);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-brown);
    border: 2px solid var(--dark-brown);
}

.btn-secondary:hover {
    background-color: var(--dark-brown);
    color: var(--white);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

/* ========== PRE-ORDER MODAL ========== */
.preorder-form {
    width: 100%;
}

.preorder-form .form-group {
    margin-bottom: 15px;
}

.preorder-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.preorder-form .form-group input,
.preorder-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.preorder-form .form-group input:focus,
.preorder-form .form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.preorder-options {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.preorder-options h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.preorder-option-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preorder-option-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.preorder-option-label:hover {
    border-color: #007bff;
    background: #f8f9ff;
}

.preorder-option-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.preorder-option-label span {
    flex: 1;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.agent-divider {
    text-align: center;
    color: #666;
    font-size: 12px;
    margin: 10px 0;
    font-style: italic;
}

.agent-label {
    background: #fff3cd !important;
    border-color: #ffeaa7 !important;
    border-left: 4px solid #ffc107;
}

.agent-label span {
    font-weight: 600;
    color: #856404;
}

.quantity-field {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #eee;
}

.quantity-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.quantity-field input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.quantity-field input[type="number"]:focus {
    outline: none;
    border-color: #007bff;
}

/* ========== OPEN PRE-ORDER SECTION STYLING ========== */
.price-list {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #eee;
}

.price-list h4 {
    margin: 0 0 20px 0;
    color: var(--dark-brown);
    font-size: 18px;
    font-weight: 600;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.price-item {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.price-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.price-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-brown);
}

.price-min {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    font-style: italic;
}

.agent-special {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.agent-special h4 {
    margin: 0 0 15px 0;
    color: #856404;
    font-size: 16px;
    font-weight: 700;
}

.agent-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.agent-value {
    font-size: 24px;
    font-weight: 800;
    color: #856404;
}

.agent-note {
    font-size: 14px;
    color: #856404;
    font-style: italic;
}

.agent-min {
    font-size: 12px;
    color: #856404;
    background: rgba(255, 193, 7, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.jerigen-price {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.jerigen-label {
    font-size: 14px;
    color: #856404;
    font-weight: 600;
}

.jerigen-value {
    font-size: 20px;
    font-weight: 700;
    color: #856404;
}

.jerigen-note {
    font-size: 12px;
    color: #856404;
    font-style: italic;
}

.order-info {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #eee;
}

.location-badge,
.quality-note,
.cs-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.location-badge {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 10px;
    border-radius: 8px;
}

.location-icon,
.quality-icon,
.cs-icon {
    font-size: 20px;
}

.location-text,
.quality-text,
.cs-text {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.cs-phone {
    font-size: 14px;
    color: var(--honey-gold);
    font-weight: 700;
    background: rgba(212, 165, 116, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

/* Responsive for Open Pre-Order */
@media (max-width: 768px) {
    .price-grid {
        grid-template-columns: 1fr;
    }

    .jerigen-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: 120px 0;
    background-color: var(--deep-brown);
    color: var(--white);
}

.gallery-section .section-label {
    color: var(--honey-gold);
}

.gallery-section .section-title {
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

.gallery-item.gallery-tall {
    grid-row: span 2;
    height: 615px;
}

.gallery-item.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 165, 116, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-icon {
    font-size: 40px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--honey-gold);
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--deep-brown);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--honey-gold);
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--honey-gold);
}

.footer-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--honey-gold);
    margin-bottom: 20px;
}

.contact-info p,
.working-hours p {
    font-size: 14px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--honey-gold);
}

.working-hours p {
    display: flex;
    justify-content: space-between;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    color: var(--honey-gold);
    transform: translateX(5px);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #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.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .about-grid,
    .order-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Responsive for Madu Klanceng Banner */
    .klanceng-banner {
        min-height: 350px;
        padding: 80px 0;
    }

    .klanceng-banner-title {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }

    .klanceng-banner-title::before,
    .klanceng-banner-title::after {
        width: 60px;
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 280px;
        height: 100vh;
        background-color: var(--deep-brown);
        flex-direction: column;
        padding: 100px 40px;
        gap: 30px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 20px var(--shadow-dark);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .phone-link {
        display: none;
    }

    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item.gallery-tall {
        height: 300px;
    }

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

    .modal-content {
        width: 95%;
    }

    /* Responsive for Madu Klanceng Banner */
    .klanceng-banner {
        min-height: 300px;
        padding: 60px 0;
        background-attachment: scroll;
        /* Disable parallax on mobile for performance */
    }

    .klanceng-banner-slide {
        background-attachment: scroll;
        background-position: center center;
    }

    .klanceng-banner-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        padding: 0 20px;
    }

    .klanceng-banner-title::before,
    .klanceng-banner-title::after {
        width: 60px;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .category-title {
        font-size: 28px;
    }

    .modal-header h3 {
        font-size: 22px;
    }

    /* Responsive for Madu Klanceng Banner */
    .klanceng-banner {
        min-height: 250px;
        padding: 50px 0;
    }

    .klanceng-banner-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .klanceng-banner-title::before,
    .klanceng-banner-title::after {
        width: 40px;
        margin: 15px auto;
    }
}
/* ========== PRE-ORDER TAB SECTION ========== */
.preorder-tab-section {
    padding: 80px 0;
    background: var(--light-cream);
}

.po-tab-bar {
    display: flex;
    gap: 12px;
    margin: 0 auto 40px;
    max-width: 600px;
    background: rgba(74, 56, 40, 0.08);
    border-radius: 14px;
    padding: 6px;
}

.po-tab-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: transparent;
    color: var(--dark-brown);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: background .25s, color .25s, box-shadow .25s;
    opacity: 0.55;
}

.po-tab-btn.active {
    background: var(--honey-gold);
    color: #fff;
    opacity: 1;
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.45);
}

.po-panel {
    display: none;
    animation: poFadeUp .3s ease;
}

.po-panel.active {
    display: block;
}

@keyframes poFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .po-tab-bar {
        flex-direction: column;
    }
}

/* ========== PRE-ORDER HERO BANNER ========== */
.po-hero-banner {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.po-hero-slide {
    position: absolute;
    inset: 0;
    background-size: 110%;
    background-position: center 30%;
    opacity: 0;
    transition: opacity 0.6s ease, background-position 0s;
    display: flex;
    align-items: flex-end;
    will-change: background-position;
}

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

.po-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(45, 31, 20, 0.92) 0%,
        rgba(45, 31, 20, 0.5) 50%,
        rgba(45, 31, 20, 0.15) 100%
    );
}

.po-hero-text {
    position: relative;
    z-index: 1;
    padding: 48px 60px;
    color: #fff;
}

.po-hero-label {
    display: inline-block;
    background: var(--honey-gold);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.po-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #fff;
}

.po-hero-title span {
    color: var(--honey-gold);
}

.po-hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 440px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .po-hero-banner {
        height: 340px;
    }
    .po-hero-text {
        padding: 32px 24px;
    }
    .po-hero-title {
        font-size: 32px;
    }
}
/* ===== SQUIRCLE FIX: Konsistensi UI - jangan hapus ===== */
.product-card {
    border-radius: 16px !important;
    overflow: hidden !important;
}
.product-card::before {
    border-radius: 16px !important;
}
.product-badge {
    border-radius: 6px !important;
}
.btn-add-cart {
    border-radius: 8px !important;
}
/* ==========================================
   REFACTOR v2 — CRO + Landing Page Upgrade
   Skill #1 (landing-page) + #3 (marketingskills CRO)
   ========================================== */

/* ── FONTS UPGRADE ── */
:root {
    --font-display: 'DM Serif Display', 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    /* Extended palette */
    --honey-light: #F0C97A;
    --honey-mid: #C9A44A;
    --cream-warm: #FAF6EE;
    --border-subtle: rgba(212,165,116,0.18);
    --text-muted: rgba(74,56,40,0.55);
    /* Shadows */
    --shadow-card: 0 2px 8px rgba(45,31,20,0.06), 0 12px 40px rgba(45,31,20,0.10);
    --shadow-hover: 0 8px 24px rgba(45,31,20,0.14), 0 32px 64px rgba(45,31,20,0.12);
    --glow-gold: 0 0 40px rgba(212,165,116,0.25);
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
    background: linear-gradient(90deg, var(--deep-brown) 0%, #3a2518 50%, var(--deep-brown) 100%);
    color: rgba(255,255,255,0.9);
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 0.3px;
    overflow: hidden;
    height: 38px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(212,165,116,0.2);
    position: relative;
    z-index: 1001;
}

.announcement-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: marqueeScroll 28s linear infinite;
    white-space: nowrap;
    padding: 0 40px;
}

.announcement-inner strong {
    color: var(--honey-gold);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ann-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--honey-gold);
    flex-shrink: 0;
    opacity: 0.7;
}

.ann-cta {
    color: var(--honey-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border: 1px solid rgba(212,165,116,0.4);
    border-radius: 3px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.ann-cta:hover {
    background: var(--honey-gold);
    color: var(--deep-brown);
}

/* Push header below announcement bar */
.site-header { top: 38px; }
#home { scroll-margin-top: 38px; }

/* ── HERO UPGRADES ── */
.hero-eyebrow {
    font-size: 12px;
    color: var(--honey-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 22px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.1s both;
}

.hero-title em {
    font-style: italic;
    color: var(--honey-gold);
    font-family: 'DM Serif Display', 'Playfair Display', serif;
}

/* Keep existing .hero-subtitle if needed */
.hero-subtitle {
    font-size: 15px;
    color: var(--honey-gold);
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    animation: fadeInUp 1s ease 0.2s both;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--honey-gold) 0%, #B8871A 100%);
    color: var(--deep-brown);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,165,116,0.5);
}

.hero-btn-primary:hover::after { opacity: 1; }

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 15px 32px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 4px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

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

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-btn-primary, .hero-btn-secondary { text-align: center; justify-content: center; }
}

/* ── TRUST STRIP ── */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border-subtle);
    border-top: 1px solid var(--border-subtle);
    padding: 28px 0;
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 160px;
}

.trust-icon {
    font-size: 26px;
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-text strong {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--dark-brown);
    letter-spacing: 0.2px;
}

.trust-text span {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: var(--border-subtle);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .trust-grid { justify-content: flex-start; gap: 20px; }
    .trust-divider { display: none; }
    .trust-item { min-width: 200px; }
}

@media (max-width: 600px) {
    .trust-item { min-width: 140px; }
    .trust-text strong { font-size: 11.5px; }
}

/* ── SOCIAL PROOF NUMBERS ── */
.social-proof-numbers {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 44px;
    margin-bottom: 32px;
    background: var(--cream-warm);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 20px 0;
    overflow: hidden;
}

.sp-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sp-number {
    font-family: 'DM Serif Display', 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--dark-brown);
    line-height: 1;
    letter-spacing: -1px;
}

.sp-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sp-divider {
    width: 1px;
    height: 48px;
    background: var(--border-subtle);
    flex-shrink: 0;
}

/* ── ABOUT CTA BUTTON ── */
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-brown);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 0;
    border-bottom: 2px solid var(--honey-gold);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.about-cta-btn:hover {
    color: var(--honey-mid);
    gap: 14px;
}

/* ── PRODUCTS SECTION UPGRADE ── */
/* Sticky "view all" CTA already exists, just enhance badge count indicator */
.product-badge {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--deep-brown) 100%) !important;
    color: var(--honey-gold) !important;
    font-size: 9px !important;
    letter-spacing: 2.5px !important;
}

/* Product card price anchoring - "mulai dari" hint */
.product-price-hint {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

/* ── SECTION LABEL UPGRADE ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px !important;
    letter-spacing: 3.5px !important;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background: var(--honey-gold);
}

/* ── BENEFIT CARDS UPGRADE ── */
.benefit-card {
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--honey-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover::before { opacity: 1; }

/* ── ORDER SECTION UPGRADE ── */
.order-section {
    background: var(--cream-warm);
    position: relative;
}

.order-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--honey-gold) 50%, transparent 100%);
}

.order-form, .cart-summary {
    border: 1px solid var(--border-subtle) !important;
}

/* Upgrade cart section header */
.order-header h2 {
    font-family: 'DM Serif Display', 'Playfair Display', serif !important;
}

/* ── PREORDER TAB SECTION UPGRADE ── */
.preorder-tab-section {
    background: var(--cream-warm);
}

.preorder-tab-section::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--honey-gold), transparent);
    margin-bottom: 0;
}

.po-tab-btn {
    font-size: 13px !important;
}

/* ── GALLERY SECTION UPGRADE ── */
.gallery-section {
    position: relative;
}

.gallery-section::before {
    content: '"Keaslian yang terasa, kemurnian yang terjaga"';
    display: block;
    text-align: center;
    font-family: 'DM Serif Display', 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--honey-gold);
    opacity: 0.7;
    padding: 0 0 48px;
    letter-spacing: 0.5px;
}

/* ── FOOTER UPGRADE ── */
.footer-bottom p:first-child {
    font-size: 13px;
}

/* ── WHATSAPP FLOAT UPGRADE ── */
.whatsapp-float {
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
}

/* Pulse label on WA float */
.whatsapp-float::after {
    content: 'Chat';
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--deep-brown);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    letter-spacing: 0.5px;
}

.whatsapp-float:hover::after { opacity: 1; }

/* ── MODAL UPGRADE ── */
.modal-content {
    border: 1px solid var(--border-subtle);
}

.modal-header {
    background: linear-gradient(135deg, var(--cream-warm) 0%, var(--white) 100%);
}

/* ── PREORDER OPTION UPGRADE ── */
.preorder-option-label:has(input:checked) {
    background: rgba(212,165,116,0.1) !important;
    border-color: var(--honey-gold) !important;
}

/* ── SECTION TRANSITIONS ── */
.about-section,
.klanceng-section,
#necropolis,
.benefits-section,
.products-section,
.order-section,
.gallery-section,
.preorder-tab-section {
    position: relative;
}

/* ── PRODUCT CARD — "MULAI DARI" label ── */
.product-price::before {
    content: 'Mulai dari';
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* ── FEATURE ITEM CRO ENHANCEMENT ── */
.feature-item {
    border-left: 3px solid transparent;
    transition: all 0.35s ease, border-color 0.35s ease;
}

.feature-item:hover {
    border-left-color: var(--honey-gold) !important;
}

/* ── STICKY WHATSAPP CTA ── */
@media (max-width: 768px) {
    .hero-actions {
        gap: 12px;
    }
    .hero-btn-primary, .hero-btn-secondary {
        padding: 13px 24px;
        font-size: 12px;
    }
    .social-proof-numbers {
        flex-direction: row;
    }
    .sp-number { font-size: 28px; }
}

/* ── SCROLL REVEAL ENHANCEMENT ── */
@keyframes fadeInScale {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.product-card.fade-in,
.benefit-card.fade-in {
    animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ── HERO SCROLL INDICATOR ── */
.hero::after {
    content: '';
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    animation: scrollLine 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: translateX(-50%) scaleY(0.5); }
    50%       { opacity: 1; transform: translateX(-50%) scaleY(1); }
}