/* ============================================
   ENHANCED PIE NANA STYLES WITH OPTIMIZED CART
   Premium chocolate design with fast loading
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Enhanced Color Palette */
    --primary-color: #6B4423;
    --secondary-color: #D4A574;
    --accent-color: #F4E4C1;
    --dark-chocolate: #3E2723;
    --cream: #FCF8F4;
    --gold: #C9A961;
    --text-dark: #241C10;
    --text-light: #666;
    --white: #FFFFFF;
    --success-green: #25D366;
    --error-red: #dc2626;

    /* Typography */
    --font-heading: 'Cormorant', 'Playfair Display', serif;
    --font-body: 'Heebo', 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Animation Durations - Faster for better UX */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;

    /* Shadows - Softer & More Natural */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ============================================
   OPTIMIZED ANIMATIONS
   ============================================ */

/* Faster Image Loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Scroll Reveal - Lighter */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation */
.scroll-reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.scroll-reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.scroll-reveal:nth-child(3) {
    transition-delay: 0.15s;
}

.scroll-reveal:nth-child(4) {
    transition-delay: 0.2s;
}

.scroll-reveal:nth-child(5) {
    transition-delay: 0.25s;
}

.scroll-reveal:nth-child(6) {
    transition-delay: 0.3s;
}

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    opacity: 0;
    animation: pageLoad 0.3s ease forwards;
    font-size: 16px;
}

@keyframes pageLoad {
    to {
        opacity: 1;
    }
}

/* ============================================
   OPTIMIZED PRELOADER - FASTER LOADING
   ============================================ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-chocolate) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.preloader-text {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInOut 1.2s ease-in-out infinite;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
    margin-bottom: 0.8em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.8rem;
    font-weight: 400;
}

h3 {
    font-size: 2rem;
    font-weight: 400;
}

p {
    margin-bottom: 1.2em;
    line-height: 1.8;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #3E2723;
    box-shadow: 0 2px 20px rgba(62, 39, 35, 0.3);
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(62, 39, 35, 0.4);
}

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

.logo img {
    height: 85px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 75px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-chocolate) 0%, var(--primary-color) 100%);
    margin-top: 90px;
    padding: 80px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.5) 0%, rgba(107, 68, 35, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.2);
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border: 2px solid var(--gold);
    animation: zoomIn 0.6s ease 0.2s both;
}

.hero-title {
    color: var(--white);
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-title .highlight {
    color: var(--gold);
    display: block;
    font-weight: 400;
    font-size: 6rem;
    margin-top: 15px;
}

.hero-subtitle {
    color: var(--gold);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.35s both;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.5s both;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary-color) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-order {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-chocolate) 100%);
    color: var(--white);
    padding: 12px 30px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(107, 68, 35, 0.2);
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 68, 35, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    font-size: 16px;
    min-width: 280px;
    justify-content: center;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 80px 0;
    background: var(--cream);
}

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

.feature-box {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-box h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

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

.content-badge {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-title.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CONTENT LAYOUTS
   ============================================ */

.dark-chocolate-section,
.about-process-section,
.why-company-section {
    padding: 120px 0;
    background: var(--white);
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 650px;
}

.content-layout.reverse {
    direction: rtl;
}

.content-layout.reverse>* {
    direction: ltr;
}

.content-text {
    padding: 60px 80px 60px 0;
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.content-text.revealed {
    opacity: 1;
    transform: translateX(0);
}

.content-layout.reverse .content-text {
    padding: 60px 0 60px 80px;
    transform: translateX(-80px);
}

.content-layout.reverse .content-text.revealed {
    transform: translateX(0);
}

.content-header {
    margin-bottom: 40px;
}

.content-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

.icon-feature-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.icon-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.icon-feature-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation untuk setiap item */
.icon-feature-item:nth-child(1) {
    transition-delay: 0.2s;
}

.icon-feature-item:nth-child(2) {
    transition-delay: 0.4s;
}

.icon-feature-item:nth-child(3) {
    transition-delay: 0.6s;
}

.feature-icon-outline {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.icon-feature-item:hover .feature-icon-outline {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.05);
}

.icon-feature-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.icon-feature-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.content-image {
    position: relative;
    height: 100%;
    min-height: 650px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.content-image.revealed {
    opacity: 1;
    transform: translateX(0);
}

.content-layout.reverse .content-image {
    transform: translateX(80px);
}

.content-layout.reverse .content-image.revealed {
    transform: translateX(0);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
    transition: transform 0.6s ease;
    border-radius: 50px;
}

.content-image:hover img {
    transform: scale(1.05);
    border-radius: 50px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products-section {
    padding: 100px 0;
    background: var(--cream);
}

.products-section .section-header::before {
    content: 'CHOCOLATE SERIES';
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.product-content {
    padding: 30px;
}

.product-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature-tag {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--error-red);
    font-family: var(--font-heading);
}

/* ============================================
   SHOPPING CART STYLES
   ============================================ */

/* Floating Cart Button */
.cart-float-btn {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-chocolate) 100%);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(107, 68, 35, 0.4);
    cursor: pointer;
    z-index: 998;
    transition: all 0.3s ease;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.cart-float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(107, 68, 35, 0.5);
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--error-red);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 3px solid var(--white);
    animation: pulse 2s infinite;
}

/* Add to Cart Button */
.btn-add-cart {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-chocolate) 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(107, 68, 35, 0.2);
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 68, 35, 0.3);
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex !important;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 25px;
    padding: 35px;
    max-width: 450px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.quantity-input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background: var(--cream);
    border-radius: 15px;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-chocolate) 100%);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 68, 35, 0.2);
}

.quantity-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 18px rgba(107, 68, 35, 0.3);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-display {
    font-size: 28px;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* Cart Checkout Section */
.cart-checkout-section {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    margin: 60px 0;
    box-shadow: var(--shadow-lg);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: var(--cream);
}

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

.cart-item-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cart-item-btn.minus {
    background: #fee2e2;
    color: var(--error-red);
}

.cart-item-btn.minus:hover {
    background: var(--error-red);
    color: white;
    transform: scale(1.1);
}

.cart-item-btn.plus {
    background: #dcfce7;
    color: #16a34a;
}

.cart-item-btn.plus:hover {
    background: #16a34a;
    color: white;
    transform: scale(1.1);
}

.cart-total {
    font-size: 28px;
    font-weight: 700;
    color: var(--error-red);
    text-align: right;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--accent-color) 100%);
    border-radius: 15px;
    font-family: var(--font-heading);
}

/* Checkout Form */
.checkout-form {
    margin: 30px 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-checkout {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--success-green) 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

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

.btn-checkout:disabled {
    background: linear-gradient(135deg, #ccc 0%, #999 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.empty-cart-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    background: var(--cream);
    border-radius: 15px;
    margin: 20px 0;
}

.empty-cart-message i {
    display: block;
    margin-bottom: 15px;
    font-size: 3.5rem;
    color: var(--secondary-color);
    opacity: 0.5;
}

.empty-cart-message p {
    font-size: 1.1rem;
    margin: 0;
}

/* ============================================
   INGREDIENTS SECTION
   ============================================ */

.ingredients-section {
    padding: 100px 0;
    background: var(--white);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.ingredient-card {
    text-align: center;
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
}

.ingredient-image {
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
}

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

.ingredient-card:hover .ingredient-image img {
    transform: scale(1.1);
}

.ingredient-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.ingredient-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.ingredients-summary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-chocolate) 100%);
    background-size: cover;
    background-position: center;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ingredients-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 68, 35, 0.9) 0%, rgba(62, 39, 35, 0.9) 100%);
}

.ingredients-summary h3,
.ingredients-summary p {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.ingredients-summary h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.ingredients-summary p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}



/* ============================================
   ORDER SECTION
   ============================================ */

.order-section {
    padding: 100px 0;
    background: var(--white);
}

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

.step-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.step-icon {
    font-size: 3.5rem;
    margin: 30px 0 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.order-cta {
    text-align: center;
    margin: 50px 0;
}

.order-note {
    margin-top: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.order-note strong {
    color: var(--primary-color);
}

.order-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.info-box h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.info-box p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ============================================
   FEATURES SECTION (BOTTOM)
   ============================================ */

.features-section {
    padding: 80px 0;
    background: var(--cream);
}

.features-section .features-grid {
    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    text-align: center;
    padding: 35px 20px;
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--dark-chocolate) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 70px 0 30px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.85) 0%, rgba(107, 68, 35, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 25px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-contact h4,
.footer-menu h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--gold);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

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

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

.footer-menu ul {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-title .highlight {
        font-size: 5rem;
    }
}

@media (max-width: 1024px) {

    .features-grid,
    .products-grid,
    .order-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .content-text,
    .content-layout.reverse .content-text {
        padding: 0;
    }

    .content-image {
        min-height: 400px;
    }

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

@media (max-width: 768px) {

    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 20px;
        z-index: 999;
    }

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

    .nav-toggle {
        display: flex;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 80vh;
        margin-top: 90px;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .hero-title .highlight {
        font-size: 3rem;
        margin-top: 10px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Content Layout Mobile */
    .content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }

    .content-text {
        padding: 0;
    }

    .content-image {
        min-height: 300px;
    }

    /* Grid Layouts Mobile */
    .features-grid,
    .products-grid,
    .ingredients-grid,
    .order-steps,
    .order-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Features Section Mobile */
    .features-section .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        text-align: center;
        padding: 35px 20px;
    }

    .feature-icon-large {
        font-size: 4rem;
        margin-bottom: 20px;
        display: block;
    }

    .feature-item h3 {
        font-size: 1.3rem;
        color: var(--text-dark);
        margin-bottom: 12px;
        font-weight: 600;
    }

    .feature-item p {
        color: var(--text-light);
        font-size: 0.95rem;
        margin-bottom: 0;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Floating Buttons Mobile */
    .cart-float-btn,
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    /* Cart Section Mobile */
    .cart-checkout-section {
        padding: 20px;
        border-radius: 15px;
        margin: 40px 0;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 2rem;
    }

    /* Modal Mobile */
    .modal-content {
        padding: 20px;
        max-width: 95vw;
        margin: 20px;
    }

    .quantity-input-group {
        gap: 15px;
        padding: 15px;
    }

    .quantity-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .quantity-display {
        font-size: 24px;
    }

    /* Product Cards Mobile */
    .product-card {
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .product-content {
        padding: 20px;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .product-price {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {

    /* Typography Mobile */
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 0;
    }

    .hero-title .highlight {
        font-size: 2.2rem;
    }

    /* Buttons Mobile */
    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }

    .btn-whatsapp {
        padding: 15px 35px;
        font-size: 14px;
    }

    /* Modal Mobile */
    .modal-content {
        padding: 15px;
        max-width: 98vw;
        margin: 10px;
    }

    .quantity-input-group {
        gap: 10px;
        padding: 12px;
    }

    .quantity-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .quantity-display {
        font-size: 20px;
    }

    /* Product Cards Mobile */
    .product-card {
        border-radius: 12px;
    }

    .product-content {
        padding: 15px;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 1.2rem;
    }

    /* Cart Items Mobile */
    .cart-item {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cart-total {
        font-size: 22px;
        padding: 15px;
    }

    /* Checkout Form Mobile */
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .btn-checkout {
        padding: 15px;
        font-size: 15px;
    }
}

/* ============================================
   PACKAGING SECTION
   ============================================ */

/* ============================================
   PACKAGING SECTION - HYBRID VERSION WITH HERO SHOWCASE
   Tambahkan CSS ini ke style.css (REPLACE yang lama)
   ============================================ */

.packaging-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.packaging-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.02;
    z-index: 1;
}

.packaging-section .container {
    position: relative;
    z-index: 2;
}

/* ========================================
   HERO SHOWCASE STYLING
   ======================================== */

.packaging-hero-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 80px;
}

/* Main Hero Image - Large */
.hero-image-large {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 68, 35, 0.2);
    min-height: 500px;
    background: var(--dark-chocolate);
}

.hero-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-large:hover img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(62, 39, 35, 0.95) 0%, rgba(62, 39, 35, 0.7) 50%, transparent 100%);
    padding: 50px 40px 40px;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

.badge-text {
    color: #000000;
    /* Ganti warna text di sini */
}

.badge-icon {
    font-size: 1.3rem;
}

.hero-overlay h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.hero-overlay p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 600px;
}

/* Secondary Hero Image */
.hero-image-secondary {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(107, 68, 35, 0.18);
    background: var(--white);
}

.hero-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-secondary:hover img {
    transform: scale(1.08);
}

.hero-badge-float {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 215, 0, 0.95);
    backdrop-filter: blur(10px);
    color: var(--dark-chocolate);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

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

    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   CONTENT GRID
   ======================================== */

.packaging-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 80px;
}

/* Text Content Styling */
.packaging-text {
    padding: 20px 0;
}

.packaging-header {
    margin-bottom: 25px;
}

.packaging-header h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0;
    font-family: var(--font-heading);
}

.packaging-lead {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.6);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
}

.packaging-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.packaging-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(107, 68, 35, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.packaging-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(107, 68, 35, 0.15);
    border-color: var(--gold);
}

.packaging-feature-item .feature-icon-outline {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--cream) 100%);
    border-radius: 15px;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 68, 35, 0.1);
}

.packaging-feature-item:hover .feature-icon-outline {
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary-color) 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

.packaging-feature-content h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.packaging-feature-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========================================
   CTA BOX FOR BULK ORDERS
   ======================================== */

.packaging-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-chocolate) 100%);
    padding: 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 15px 50px rgba(107, 68, 35, 0.25);
    position: relative;
    overflow: hidden;
}

.packaging-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(201, 169, 97, 0.2), transparent 60%);
    z-index: 1;
}

.packaging-cta-box>* {
    position: relative;
    z-index: 2;
}

.packaging-cta-box .cta-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

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

    50% {
        transform: translateY(-15px);
    }
}

.packaging-cta-box h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.packaging-cta-box>p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.cta-benefits li {
    padding: 12px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.9;
}

.cta-benefits li:last-child {
    border-bottom: none;
}

.btn-cta-primary {
    background: #FFD700;
    color: var(--dark-chocolate);
    font-weight: 700;
    padding: 16px 36px;
    font-size: 1.05rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    width: 100%;
}

.btn-cta-primary:hover {
    background: #FFC700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* ========================================
   PACKAGING PROCESS
   ======================================== */

.packaging-process {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-chocolate) 100%);
    color: white;
    padding: 80px 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 68, 35, 0.2);
}

.packaging-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(201, 169, 97, 0.15), transparent 60%),
        radial-gradient(circle at bottom left, rgba(62, 39, 35, 0.3), transparent 60%);
    z-index: 1;
}

.packaging-process h3 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 1px;
}

.packaging-process h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto 0;
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.process-step {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.process-step:hover::before {
    opacity: 1;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary-color) 100%);
    color: var(--white);
    margin: 0 auto 20px;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
}

.process-step h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 600;
    line-height: 1.3;
}

.process-step p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .packaging-hero-showcase {
        gap: 20px;
    }

    .hero-image-large {
        min-height: 450px;
    }

    .hero-overlay h3 {
        font-size: 2.2rem;
    }

    .packaging-content {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .packaging-hero-showcase {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero-image-large {
        min-height: 400px;
    }

    .hero-image-secondary {
        min-height: 350px;
    }

    .packaging-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .packaging-section {
        padding: 80px 0;
    }

    .packaging-hero-showcase {
        margin-bottom: 60px;
    }

    .hero-image-large {
        min-height: 350px;
    }

    .hero-overlay {
        padding: 40px 30px 30px;
    }

    .hero-overlay h3 {
        font-size: 1.8rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .hero-image-secondary {
        min-height: 300px;
    }

    .packaging-header h3 {
        font-size: 1.8rem;
    }

    .packaging-lead {
        font-size: 1rem;
        padding: 20px;
    }

    .packaging-feature-item {
        padding: 20px;
    }

    .packaging-cta-box {
        padding: 35px 25px;
    }

    .packaging-cta-box h4 {
        font-size: 1.5rem;
    }

    .packaging-process {
        padding: 50px 30px;
        border-radius: 20px;
    }

    .packaging-process h3 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-image-large {
        min-height: 300px;
        border-radius: 16px;
    }

    .hero-overlay {
        padding: 30px 20px 20px;
    }

    .hero-overlay h3 {
        font-size: 1.5rem;
    }

    .hero-overlay p {
        font-size: 0.95rem;
    }

    .hero-badge {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .hero-image-secondary {
        min-height: 250px;
        border-radius: 16px;
    }

    .hero-badge-float {
        top: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .packaging-feature-item .feature-icon-outline {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    .packaging-cta-box {
        padding: 30px 20px;
    }

    .packaging-cta-box .cta-icon {
        font-size: 3rem;
    }

    .packaging-cta-box h4 {
        font-size: 1.3rem;
    }

    .btn-cta-primary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .packaging-process {
        padding: 40px 20px;
    }

    .packaging-process h3 {
        font-size: 1.6rem;
    }
}

/* ============================================
   PREMIUM CHOCOLATE BANNER SECTION
   ============================================ */

.premium-chocolate-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    overflow: hidden;
    margin: 0;
    padding: 100px 0;
}

/* Dark Overlay untuk membuat text lebih jelas */
.premium-chocolate-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.50) 0%, rgba(107, 68, 35, 0.50) 100%);
    z-index: 1;
}

/* Noise texture overlay untuk aesthetic touch */
.premium-chocolate-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.03;
    z-index: 1;
}

.premium-chocolate-banner .container {
    position: relative;
    z-index: 2;
}

.premium-chocolate-banner .banner-title {
    color: var(--white);
    font-size: 4.5rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    font-family: var(--font-heading);
    line-height: 1.2;
}

/* Decorative lines around title */
.premium-chocolate-banner .banner-title::before,
.premium-chocolate-banner .banner-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 25px auto;
    animation: expandWidth 1s ease;
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 80px;
        opacity: 1;
    }
}

/* Responsive untuk Premium Chocolate Banner */
@media (max-width: 1024px) {
    .premium-chocolate-banner {
        min-height: 350px;
        padding: 80px 0;
    }

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

@media (max-width: 768px) {
    .premium-chocolate-banner {
        min-height: 300px;
        padding: 60px 0;
        background-attachment: scroll;
        /* Disable parallax on mobile for performance */
    }

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

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

@media (max-width: 480px) {
    .premium-chocolate-banner {
        min-height: 250px;
        padding: 50px 0;
    }

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

    .premium-chocolate-banner .banner-title::before,
    .premium-chocolate-banner .banner-title::after {
        width: 40px;
        margin: 15px auto;
    }
}

/* ============================================
   CUSTOM ORDER MODAL STYLES
   ============================================ */

.order-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.order-modal {
    background: transparent;
    border-radius: 25px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(107, 68, 35, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.order-modal-overlay.active .order-modal {
    transform: scale(1);
}

.order-modal-header {
    background: linear-gradient(135deg, #6B4423 0%, #3E2723 100%);
    color: white;
    padding: 30px;
    border-radius: 25px 25px 0 0;
    text-align: center;
    position: relative;
}

.order-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.order-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.order-modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.order-modal-subtitle {
    font-size: 15px;
    opacity: 0.9;
}

.order-modal-body {
    padding: 30px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FCF8F4 100%);
}

.product-select-item {
    background: white;
    border: 2px solid #F4E4C1;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.product-select-item:hover {
    border-color: #D4A574;
    box-shadow: 0 8px 25px rgba(107, 68, 35, 0.15);
}

.product-select-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.product-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #D4A574;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #6B4423;
}

.product-info {
    flex: 1;
}

.product-name {
    font-weight: 600;
    color: #3E2723;
    font-size: 16px;
    margin-bottom: 4px;
}

.product-price {
    color: #6B4423;
    font-weight: 600;
    font-size: 15px;
}

.quantity-control {
    display: none;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #F4E4C1;
}

.product-select-item.selected .quantity-control {
    display: flex;
}

.quantity-label {
    font-weight: 600;
    color: #3E2723;
    font-size: 14px;
}

.quantity-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn.minus {
    background: #FEE2E2;
    color: #DC2626;
}

.quantity-btn.minus:hover {
    background: #DC2626;
    color: white;
}

.quantity-btn.plus {
    background: #DCFCE7;
    color: #16A34A;
}

.quantity-btn.plus:hover {
    background: #16A34A;
    color: white;
}

.quantity-input {
    width: 70px;
    height: 40px;
    text-align: center;
    border: 2px solid #D4A574;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #3E2723;
}

.quantity-input:focus {
    outline: none;
    border-color: #6B4423;
    box-shadow: 0 0 0 3px rgba(107, 68, 35, 0.1);
}

.order-summary {
    background: linear-gradient(135deg, #6B4423 0%, #3E2723 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 15px;
}

.summary-note {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 10px;
    font-style: italic;
}

.order-modal-footer {
    padding: 0 30px 30px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FCF8F4 100%);
    border-radius: 0 0 25px 25px;
}

.btn-submit-order {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.btn-submit-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.btn-submit-order:disabled {
    background: #CCC;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.empty-order-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.empty-order-message svg {
    width: 80px;
    height: 80px;
    opacity: 0.3;
    margin-bottom: 15px;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .order-modal {
        margin: 15px;
        max-height: 80vh;
        width: 95vw;
    }

    .order-modal-header {
        padding: 20px;
    }

    .order-modal-title {
        font-size: 20px;
    }

    .order-modal-subtitle {
        font-size: 13px;
    }

    .order-modal-body {
        padding: 20px;
    }

    .product-select-item {
        padding: 15px;
    }

    /* Fix checkbox alignment on mobile */
    .product-select-header {
        flex-direction: row;
        align-items: center;
    }

    /* Ensure modal scrolls properly on mobile */
    .order-modal-overlay {
        padding: 15px;
    }

    /* Fix quantity controls on mobile */
    .quantity-input-group {
        flex-wrap: wrap;
        gap: 10px;
    }

    .quantity-btn {
        flex: 1;
        min-width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .quantity-input {
        flex: 2;
        min-width: 60px;
        height: 35px;
        font-size: 16px;
    }

    /* Fix order summary on mobile */
    .order-summary {
        padding: 15px;
    }

    .summary-row {
        font-size: 13px;
    }

    .summary-row.total {
        font-size: 16px;
    }

    /* Fix empty message on mobile */
    .empty-order-message {
        padding: 30px 15px;
    }

    .empty-order-message svg {
        width: 60px;
        height: 60px;
    }

    /* Fix footer button on mobile */
    .order-modal-footer {
        padding: 0 20px 20px;
    }

    .btn-submit-order {
        padding: 15px;
        font-size: 15px;
    }
}

/* ============================================
   ICON FEATURE LIST STYLES
   ============================================ */

.icon-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.icon-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FCF8F4 100%);
    border-radius: 15px;
    border: 2px solid #F4E4C1;
    transition: all 0.3s ease;
}

.icon-feature-item:hover {
    border-color: #D4A574;
    box-shadow: 0 8px 25px rgba(107, 68, 35, 0.15);
    transform: translateY(-2px);
}

.feature-icon-outline {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6B4423 0%, #3E2723 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(107, 68, 35, 0.3);
}

.icon-feature-content {
    flex: 1;
}

.icon-feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #3E2723;
    margin-bottom: 8px;
}

.icon-feature-content p {
    font-size: 15px;
    color: #6B4423;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Icon Feature List */
@media (max-width: 768px) {
    .icon-feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }

    .feature-icon-outline {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .icon-feature-content h4 {
        font-size: 16px;
    }

    .icon-feature-content p {
        font-size: 14px;
    }
}

/* ============================================
   CONTENT GRID LAYOUT STYLES
   ============================================ */

/* Content Grid Layout for Dark Chocolate Section */
.dark-chocolate-section .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Content Grid Layout for Why Company Section */
.why-company-section .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Mobile Responsive for Content Grid */
@media (max-width: 768px) {

    .dark-chocolate-section .content-grid,
    .why-company-section .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Additional mobile fixes for overall layout */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

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

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

    .order-steps {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LEFT BADGE STYLES
   ============================================ */

/* Left Badge Styles */
.product-badge-left {
    position: absolute;
    top: 240px;
    left: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

/* Mobile responsive for left badges */
@media (max-width: 768px) {
    .product-badge-left {
        top: 250px;
        left: 8px;
        font-size: 10px;
        padding: 3px 7px;
    }
}

/* ============================================
   TESTIMONI SECTION - BASE STYLES
   ============================================ */

.testimoni-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimoni-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.02;
    z-index: 1;
}

.testimoni-section .container {

    position: relative;
    z-index: 2;
}


/* ============================================
   STYLE 1: CARD GRID (MODERN & CLEAN)
   ============================================ */

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

.testimonial-card {
    background: var(--cream);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: var(--accent-color);
    font-family: Georgia, serif;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-rating {
    font-size: 1rem;
    color: var(--gold);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .testimonial-slider {
        padding: 60px 40px;
    }

    .featured-testimonial {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .testimoni-section {
        padding: 60px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-slider {
        padding: 40px 25px;
        min-height: 500px;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .slider-navigation {
        gap: 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .testimonial-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .featured-testimonial {
        padding: 40px 25px;
    }

    .quote-large {
        font-size: 100px;
    }

    .featured-text {
        font-size: 1.05rem;
    }

    .testimonial-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .masonry-item.short,
    .masonry-item.medium,
    .masonry-item.tall {
        grid-row: auto;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-slider {
        padding: 30px 20px;
        min-height: 550px;
    }

    .quote-icon {
        font-size: 80px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .author-image {
        width: 60px;
        height: 60px;
    }

    .author-name {
        font-size: 1.1rem;
    }

    .featured-author img {
        width: 60px;
        height: 60px;
    }

    .featured-author h3 {
        font-size: 1.1rem;
    }
}

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

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

/* ============================================
   PIE SUSU SECTION
   ============================================ */

.pie-susu-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fffdf7 0%, #fdf8f0 100%);
}

.pie-susu-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 48px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(107, 68, 35, 0.10);
}

.pie-susu-hero-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.pie-susu-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pie-susu-hero:hover .pie-susu-hero-image img {
    transform: scale(1.05);
}

.pie-susu-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(62, 39, 35, 0.75) 0%, transparent 100%);
    padding: 32px 24px 24px;
    color: white;
}

.pie-susu-hero-badge {
    display: inline-block;
    background: #C9A961;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.pie-susu-hero-overlay h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 6px;
    font-family: 'Playfair Display', serif;
}

.pie-susu-hero-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

.pie-susu-hero-info {
    padding: 40px;
}

.pie-susu-hero-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3E2723;
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
}

.pie-susu-hero-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pie-susu-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.pie-susu-price-label {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.pie-susu-price-label strong {
    color: #C9A961;
    font-size: 1.2rem;
}

/* Responsive Pie Susu */
@media (max-width: 768px) {
    .pie-susu-hero {
        grid-template-columns: 1fr;
    }

    .pie-susu-hero-image {
        height: 260px;
    }

    .pie-susu-hero-info {
        padding: 24px;
    }

    .pie-susu-hero-info h3 {
        font-size: 1.4rem;
    }

    .pie-susu-section {
        padding: 50px 0;
    }
}

/* ============================================
   PIE SUSU CAROUSEL + KEN BURNS + PARALLAX
   ============================================ */

.pie-susu-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    height: 380px;
    overflow: hidden;
}

/* Ken Burns: setiap slide punya animasi zoom+pan berbeda */
.carousel-slide img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    transform: scale(1.08) translate(0px, 0px);
    transition: transform 0.6s ease;
    will-change: transform;
}

.carousel-slide.active img {
    animation: kenBurns1 8s ease-in-out forwards;
}

.carousel-slide:nth-child(2).active img {
    animation: kenBurns2 8s ease-in-out forwards;
}

.carousel-slide:nth-child(3).active img {
    animation: kenBurns3 8s ease-in-out forwards;
}

@keyframes kenBurns1 {
    0% {
        transform: scale(1.08) translate(0%, 0%);
    }

    100% {
        transform: scale(1.18) translate(-3%, -2%);
    }
}

@keyframes kenBurns2 {
    0% {
        transform: scale(1.12) translate(-2%, 0%);
    }

    100% {
        transform: scale(1.20) translate(2%, -3%);
    }
}

@keyframes kenBurns3 {
    0% {
        transform: scale(1.15) translate(2%, -2%);
    }

    100% {
        transform: scale(1.08) translate(-1%, 1%);
    }
}

/* Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    border: none;
    color: white;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    line-height: 1;
}

.carousel-arrow:hover {
    background: rgba(201, 169, 97, 0.75);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
    background: #C9A961;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .carousel-slide {
        height: 260px;
    }
}

.pie-susu-section .section-header::before {
    content: 'OTHER SERIES';
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 600;
}

.packaging-carousel-wrap {
    position: relative;
    overflow: hidden;
}

.packaging-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pkg-carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.pkg-carousel-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pkg-carousel-slide img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    will-change: transform;
}

.pkg-carousel-slide.active img {
    animation: kenBurns1 8s ease-in-out forwards;
}

.pkg-carousel-slide:nth-child(2).active img {
    animation: kenBurns2 8s ease-in-out forwards;
}

.pkg-carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.pkg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.pkg-dot.active {
    background: #C9A961;
    transform: scale(1.3);
}

.signature-hero-banner {
    position: relative;
    width: 100%;
    height: 93vh;
    overflow: hidden;
    margin-top: 60px;
}

.signature-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    position: absolute;
    inset: 0;
    display: block;
}

.signature-hero-cta {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.signature-hero-cta .btn {
    padding: 16px 48px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Tablet */
@media (max-width: 768px) {
    .signature-hero-banner {
        height: auto;
        margin-top: 0;
        display: flex;
        flex-direction: column;
    }

    .signature-hero-banner img {
        position: relative;
        inset: unset;
        width: 100%;
        height: auto;
        object-fit: unset;
    }

    .signature-hero-cta {
        position: relative;
        bottom: unset;
        left: unset;
        transform: none;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        background: var(--dark-chocolate);
    }

    .signature-hero-cta .btn {
        padding: 12px 32px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .signature-hero-banner {
        height: auto;
    }

    .signature-hero-cta .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}