:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #F4A460;
    --dark-brown: #654321;
    --light-beige: #F5F5DC;
    --gold: #FFD700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-color) 100%) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem !important;
    color: var(--gold) !important;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

/* ANIMASI WAYANG DAN TOPENG MALANGAN */

/* Loading Animation */
.loading-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-brown);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 1s ease-in-out 2s forwards;
}

.mask-loader {
    width: 80px;
    height: 80px;
    border: 4px solid transparent;
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    animation: maskSpin 1s linear infinite;
}

@keyframes maskSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

/* Hero Section Animations */
.hero-section {
    background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(101, 67, 33, 0.8)), 
                url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    animation: wayangFloat 20s ease-in-out infinite;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: wayangEntrance 1.5s ease-out;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, var(--gold), var(--secondary-color));
    animation: wayangDrawLine 2s ease-in-out 1s forwards;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-image {
    position: relative;
    animation: wayangDance 8s ease-in-out infinite;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: wayangGlow 4s ease-in-out infinite alternate;
}

/* Floating Elements Animation */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    color: var(--gold);
    animation: floating 15s linear infinite;
}

.floating-element:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 20%; right: 10%; animation-delay: 2s; }
.floating-element:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 4s; }
.floating-element:nth-child(4) { bottom: 20%; right: 5%; animation-delay: 6s; }
.floating-element:nth-child(5) { top: 40%; left: 20%; animation-delay: 8s; }

/* Wayang Animations */
@keyframes wayangDance {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(2deg) scale(1.02);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg) scale(1.01);
    }
    75% {
        transform: translateY(-10px) rotate(1deg) scale(1.02);
    }
}

@keyframes wayangFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(1deg);
    }
    66% {
        transform: translateY(10px) rotate(-1deg);
    }
}

@keyframes wayangGlow {
    0% {
        opacity: 0.3;
        transform: scale(0.95);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes wayangEntrance {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotate(-10deg);
    }
    70% {
        transform: translateX(10px) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes wayangDrawLine {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-40px) rotate(180deg) scale(1);
        opacity: 0.1;
    }
    75% {
        transform: translateY(-20px) rotate(270deg) scale(0.9);
        opacity: 0.2;
    }
    100% {
        transform: translateY(0) rotate(360deg) scale(1);
        opacity: 0.1;
    }
}

/* Button Animations */
.btn-primary {
    background: linear-gradient(45deg, var(--gold), var(--secondary-color));
    border: none;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
    animation: btnPulse 0.6s ease-out;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(210, 105, 30, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-brown);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--gold), var(--secondary-color));
    margin: 1rem auto;
}

/* Features Section Animations */
.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--gold), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
    animation: wayangSpin 1s ease-out;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255,215,0,0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255,215,0,0.6);
    }
}

@keyframes wayangSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--light-beige);
}

/* Featured Products Grid - 1 PRODUK TERLARIS */
.featured-single-layout {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.best-seller-featured {
    max-width: 900px;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
    position: relative;
    overflow: hidden;
}

.best-seller-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(255,215,0,0.1),
        transparent,
        rgba(210,105,30,0.1),
        transparent
    );
    animation: wayangRotate 10s linear infinite;
    z-index: -1;
}

.best-seller-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.best-seller-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 500px;
}

.best-seller-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(45deg, var(--gold), #FFA500);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.best-seller-image-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-beige) 0%, #ffffff 100%);
}

.best-seller-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

.best-seller-featured:hover .best-seller-image {
    animation: maskReveal 2s ease-in-out;
}

.best-seller-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.best-seller-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.best-seller-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.8s ease;
}

.best-seller-featured:hover .best-seller-title::after {
    width: 100%;
}

.best-seller-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.best-seller-price-section {
    margin-bottom: 2rem;
}

.best-seller-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.best-seller-original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 1rem;
}

.stock-info {
    margin-bottom: 2rem;
}

.stock-badge {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.best-seller-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.best-seller-actions .btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.best-seller-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.best-seller-actions .btn:hover::before {
    left: 100%;
}

.best-seller-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 2px solid var(--light-beige);
}

.best-seller-stats .stat-item {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.best-seller-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    display: inline-block;
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Products Animations */
@keyframes wayangRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes maskReveal {
    0% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05) rotate(1deg);
        filter: brightness(1.2);
    }
    100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png');
    opacity: 0.1;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/wayang-pattern.png');
    opacity: 0.05;
    animation: wayangFloat 15s ease-in-out infinite;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    animation: aboutImageFloat 6s ease-in-out infinite;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    opacity: 0;
    animation: aboutBorderPulse 3s ease-in-out infinite 1s;
}

/* About Section Animations */
@keyframes aboutImageFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(0.5deg);
    }
    66% {
        transform: translateY(5px) rotate(-0.5deg);
    }
}

@keyframes aboutBorderPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.02);
    }
}

/* Testimonials */
.testimonial-section {
    padding: 80px 0;
    background: white;
}

.testimonial-card {
    background: var(--light-beige);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.1;
    font-family: 'Playfair Display', serif;
    animation: quoteFloat 4s ease-in-out infinite;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    animation: testimonialGlow 2s ease-in-out infinite;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Testimonials Animations */
@keyframes quoteFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

@keyframes testimonialGlow {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(139, 69, 19, 0.1);
    }
    50% {
        box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-color) 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* Badge */
.badge {
    background: linear-gradient(45deg, var(--gold), var(--secondary-color)) !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .best-seller-content {
        grid-template-columns: 1fr;
    }
    
    .best-seller-image {
        height: 400px;
    }
    
    .best-seller-title {
        font-size: 2rem;
    }
    
    .best-seller-info {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    
    .best-seller-actions {
        flex-direction: column;
    }
    
    .best-seller-actions .btn {
        width: 100%;
    }
    
    .best-seller-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .best-seller-featured {
        margin: 0 1rem;
    }
    
    .best-seller-info {
        padding: 1.5rem;
    }
    
    .best-seller-title {
        font-size: 1.8rem;
    }
    
    .best-seller-price {
        font-size: 2rem;
    }
    
    .floating-elements {
        display: none;
    }

    /* Products Hero Section */
    /* Products Grid 3 Kolom yang Rapi */
    .products-grid-3col {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 2rem;
    }

    .product-card-3col {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(139, 69, 19, 0.1);
        height: 100%;
        position: relative;
        opacity: 0;
        animation: productCardEntrance 0.8s ease-out forwards;
        display: flex;
        flex-direction: column;
    }

    .product-card-3col:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
    }

    /* Container Gambar dengan Ukuran Tetap */
    .product-image-3col-container {
        position: relative;
        overflow: hidden;
        height: 260px; /* Fixed height untuk konsistensi */
        width: 100%;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .product-image-3col {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Crop gambar dengan proporsi sama */
        transition: all 0.5s ease;
    }

    .product-card-3col:hover .product-image-3col {
        transform: scale(1.08);
    }

    /* Placeholder untuk gambar yang tidak ada */
    .product-image-placeholder-3col {
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, var(--light-beige), #f8f9fa);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark-brown);
        font-size: 3rem;
        opacity: 0.6;
    }

    /* Overlay Effect */
    .product-overlay-3col {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(139,69,19,0.85), rgba(101,67,33,0.9));
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .product-card-3col:hover .product-overlay-3col {
        opacity: 1;
    }

    .product-actions-3col {
        display: flex;
        gap: 1rem;
    }

    .product-actions-3col .btn {
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
    }

    .product-actions-3col .btn:hover {
        transform: scale(1.15);
        background: var(--gold);
        border-color: var(--gold);
    }

    /* Badge Styling */
    .product-badge-3col {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        border-radius: 15px;
        font-size: 0.75rem;
        font-weight: 600;
        z-index: 2;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }

    .badge-best-seller-3col {
        background: linear-gradient(45deg, var(--gold), #ffa502);
        color: white;
    }

    .badge-stock-warning-3col {
        background: linear-gradient(45deg, #ff6b6b, #ee5a24);
        color: white;
    }

    .badge-new-3col {
        background: linear-gradient(45deg, #00b894, #00cec9);
        color: white;
    }

    /* Product Info Area */
    .product-info-3col {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        background: white;
    }

    .product-title-3col {
        font-family: 'Playfair Display', serif;
        font-size: 1.25rem;
        color: var(--dark-brown);
        margin-bottom: 0.75rem;
        line-height: 1.4;
        min-height: 3.5rem; /* Fixed height untuk konsistensi */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-description-3col {
        color: #666;
        line-height: 1.5;
        margin-bottom: 1rem;
        flex-grow: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 4.5rem; /* Fixed height untuk konsistensi */
        font-size: 0.9rem;
    }

    /* Product Meta Info */
    .product-meta-3col {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.25rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(139, 69, 19, 0.1);
    }

    .product-price-3col {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-color);
    }

    .stock-info-3col {
        text-align: right;
    }

    .stock-info-3col small {
        font-size: 0.85rem;
    }

    /* Main Actions */
    .product-actions-main-3col {
        margin-top: auto;
    }

    .product-actions-main-3col .btn {
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        width: 100%;
        margin-bottom: 0.5rem;
        border-radius: 12px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .product-actions-main-3col .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.6s ease;
    }

    .product-actions-main-3col .btn:hover::before {
        left: 100%;
    }

    /* Animations */
    @keyframes productCardEntrance {
        0% {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* Stagger animation untuk cards */
    .product-card-3col:nth-child(1) { animation-delay: 0.1s; }
    .product-card-3col:nth-child(2) { animation-delay: 0.2s; }
    .product-card-3col:nth-child(3) { animation-delay: 0.3s; }
    .product-card-3col:nth-child(4) { animation-delay: 0.4s; }
    .product-card-3col:nth-child(5) { animation-delay: 0.5s; }
    .product-card-3col:nth-child(6) { animation-delay: 0.6s; }

    /* Responsive Design untuk 3 Kolom */
    @media (max-width: 1200px) {
        .products-grid-3col {
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
    }

    @media (max-width: 992px) {
        .products-grid-3col {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        
        .product-image-3col-container {
            height: 240px;
        }
    }

    @media (max-width: 768px) {
        .products-grid-3col {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .product-image-3col-container {
            height: 220px;
        }
        
        .product-info-3col {
            padding: 1.25rem;
        }
        
        .product-title-3col {
            font-size: 1.2rem;
            min-height: 3.2rem;
        }
        
        .product-description-3col {
            min-height: 4rem;
        }
    }

    @media (max-width: 576px) {
        .products-grid-3col {
            gap: 1rem;
        }
        
        .product-image-3col-container {
            height: 200px;
        }
        
        .product-meta-3col {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
        
        .stock-info-3col {
            text-align: left;
        }
        
        .product-actions-3col .btn {
            width: 44px;
            height: 44px;
        }
    }

    /* Equal Height Enforcement */
    .products-grid-3col {
        align-items: stretch;
    }

    .product-card-3col {
        min-height: 520px; /* Minimum height untuk konsistensi */
    }

    /* About Products Page Styles */
    .products-about-hero-section {
        background: linear-gradient(rgba(139, 69, 19, 0.9), rgba(101, 67, 33, 0.9)), 
                    url('../images/pattern.png');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 100px 0 60px;
        position: relative;
        overflow: hidden;
    }

    .products-about-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('../images/pattern.png');
        opacity: 0.1;
        animation: wayangFloat 20s ease-in-out infinite;
    }

    .min-vh-80 {
        min-height: 80vh;
    }

    /* Categories Section */
    .categories-section {
        background: var(--light-beige);
    }

    .category-card {
        background: white;
        padding: 2.5rem 2rem;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
        transition: left 0.6s ease;
    }

    .category-card:hover::before {
        left: 100%;
    }

    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .category-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(45deg, var(--gold), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: white;
        animation: iconPulse 3s ease-in-out infinite;
    }

    .category-card h4 {
        font-family: 'Playfair Display', serif;
        color: var(--dark-brown);
        margin-bottom: 1rem;
    }

    .category-features {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0;
        text-align: left;
    }

    .category-features li {
        padding: 0.3rem 0;
        color: #666;
    }

    .category-features i {
        color: var(--gold);
        margin-right: 0.5rem;
    }

    /* Showcase Section */
    .showcase-section {
        background: white;
    }

    .showcase-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        height: 100%;
    }

    .showcase-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .showcase-image {
        position: relative;
        overflow: hidden;
        height: 250px;
    }

    .showcase-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .showcase-card:hover .showcase-image img {
        transform: scale(1.1);
    }

    .showcase-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .showcase-card:hover .showcase-overlay {
        opacity: 1;
    }

    .showcase-actions {
        display: flex;
        gap: 1rem;
    }

    .showcase-content {
        padding: 1.5rem;
    }

    .showcase-content h4 {
        font-family: 'Playfair Display', serif;
        color: var(--dark-brown);
        margin-bottom: 0.75rem;
    }

    .showcase-features {
        margin: 1rem 0;
    }

    .feature-badge {
        display: inline-block;
        background: var(--light-beige);
        color: var(--dark-brown);
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .price-tag {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-top: 1rem;
    }

    /* Benefits Section */
    .benefits-section {
        background: var(--light-beige);
    }

    .benefit-card {
        background: white;
        padding: 2rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        height: 100%;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(45deg, var(--gold), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 1.8rem;
        color: white;
    }

    .benefit-card h5 {
        color: var(--dark-brown);
        margin-bottom: 1rem;
    }

    /* CTA Section */
    .cta-products-section {
        background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-color) 100%);
        color: white;
        padding: 60px 0;
        position: relative;
        overflow: hidden;
    }

    .cta-products-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('../images/pattern.png');
        opacity: 0.1;
        animation: wayangFloat 15s ease-in-out infinite;
    }

    /* Animations */
    @keyframes iconPulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 rgba(255,215,0,0.4);
        }
        50% {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(255,215,0,0.6);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .products-about-hero-section {
            padding: 80px 0 40px;
            text-align: center;
        }
        
        .category-card {
            padding: 2rem 1.5rem;
        }
        
        .showcase-image {
            height: 200px;
        }
        
        .benefit-card {
            padding: 1.5rem 1rem;
        }
    }

    /* Modal Promo Styles */
    .promo-image-container {
        position: relative;
        overflow: hidden;
        max-height: 300px;
    }

    .promo-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(139,69,19,0.8), rgba(101,67,33,0.9));
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .promo-content {
        text-align: center;
    }

    .promo-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        animation: pulse 2s infinite;
    }

    .promo-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        opacity: 0.9;
    }

    .countdown-timer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .countdown-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .countdown-number {
        background: rgba(255,255,255,0.2);
        backdrop-filter: blur(10px);
        padding: 0.5rem;
        border-radius: 10px;
        font-size: 1.5rem;
        font-weight: 700;
        min-width: 50px;
        border: 2px solid rgba(255,255,255,0.3);
    }

    .countdown-label {
        font-size: 0.7rem;
        margin-top: 0.25rem;
        opacity: 0.8;
    }

    .countdown-separator {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 0.25rem;
        color: var(--gold);
    }

    .promo-note {
        opacity: 0.8;
        font-style: italic;
    }

    .promo-details {
        background: white;
    }

    .promo-terms,
    .promo-benefits {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .promo-terms li,
    .promo-benefits li {
        padding: 0.25rem 0;
        color: #666;
        position: relative;
        padding-left: 1.5rem;
    }

    .promo-terms li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: bold;
    }

    .promo-benefits li:before {
        content: '★';
        position: absolute;
        left: 0;
        color: var(--gold);
    }

    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }
}