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

:root {
    --primary: #522258; /* Deep Javanese Royal Purple */
    --primary-light: #7E3E85;
    --primary-dark: #2A0E2E;
    --primary-glow: rgba(82, 34, 88, 0.15);
    
    --secondary: #E05D03; /* Warm Geplak Orange */
    --secondary-light: #FF8838;
    --secondary-dark: #AD4400;
    --secondary-glow: rgba(224, 93, 3, 0.2);
    
    --accent-green: #2E6F40; /* Pandan Green */
    --accent-pink: #D83A56; /* Rose Pink */
    --accent-yellow: #FFB319; /* Sweet Yellow */
    
    --cream: #FAF6F0; /* Soft warm rice-flour/coconut cream */
    --cream-dark: #F3ECE3;
    --white: #FFFFFF;
    --dark: #1A081D;
    
    --text: #3D3141;
    --text-light: #6E5C73;
    --text-muted: #948299;
    --border: rgba(82, 34, 88, 0.08);
    --border-hover: rgba(224, 93, 3, 0.3);
    
    /* Premium Shadows */
    --shadow-sm: 0 4px 10px rgba(82, 34, 88, 0.03);
    --shadow-md: 0 12px 30px rgba(82, 34, 88, 0.06);
    --shadow-lg: 0 24px 60px rgba(82, 34, 88, 0.12);
    --shadow-glow: 0 0 25px rgba(224, 93, 3, 0.15);
    
    /* Animation Easing */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    --font-mono: 'Courier New', monospace;

    /* Gold accent for premium badges */
    --gold: #B8952A;
    --gold-light: #D4AF5A;
    --gold-glow: rgba(184, 149, 42, 0.2);
}

/* Custom Styled Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 5px;
    border: 2px solid var(--cream);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.25;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(82, 34, 88, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(82, 34, 88, 0.35);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(224, 93, 3, 0.25);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(224, 93, 3, 0.35);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(82, 34, 88, 0.15);
}

/* Header & Nav */
header {
    background: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
}

.nav-logo img {
    height: 52px;
    width: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-logo:hover img {
    transform: scale(1.08) rotate(-3deg);
}

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

.nav-item a {
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text);
    padding: 10px 2px;
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: 5px;
    transition: var(--transition);
}

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

.nav-item a:hover::after,
.nav-item.active a::after {
    width: 100%;
}

.nav-item.active a {
    color: var(--secondary);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* Mobile Nav Toggle Active States */
@media (max-width: 992px) {
    .navbar {
        height: 80px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(250, 246, 240, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 15px 30px rgba(82, 34, 88, 0.05);
        padding: 50px 24px;
        gap: 25px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(82, 34, 88, 0.06) 0%, rgba(224, 93, 3, 0.03) 90%);
    overflow: hidden;
    position: relative;
}

/* Decorative Background Waves */
.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    opacity: 0.6;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .hero {
        padding: 60px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 550px;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
    }
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(126, 62, 133, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    top: -10%;
}

.hero-image {
    width: 90%;
    max-width: 440px;
    border-radius: 32px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(82, 34, 88, 0.1);
    position: relative;
    z-index: 2;
    transform: rotate(2deg);
    animation: float 6s ease-in-out infinite;
    border: 6px solid var(--white);
    transition: var(--transition);
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(2deg);
    }
    50% {
        transform: translateY(-15px) rotate(0.5deg);
        box-shadow: var(--shadow-lg), 0 15px 50px rgba(82, 34, 88, 0.15);
    }
    100% {
        transform: translateY(0px) rotate(2deg);
    }
}

.hero-image:hover {
    animation-play-state: paused;
    transform: scale(1.02) rotate(0deg);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-light) 100%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 18px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Values Section */
.values {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.value-card {
    background-color: var(--cream);
    padding: 50px 35px;
    border-radius: 28px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(224, 93, 3, 0.2);
    background-color: var(--white);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(82, 34, 88, 0.06);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary);
    font-size: 2rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(82, 34, 88, 0.2);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    font-family: var(--font-body);
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* Products Section (Best Sellers & Catalog) */
.products-section {
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 10;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(224, 93, 3, 0.2);
}

.product-img-wrapper {
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    overflow: hidden;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.02rem;
    margin-bottom: 8px;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--primary-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.15rem;
    color: var(--secondary);
    font-weight: 800;
    font-family: var(--font-body);
    margin-top: auto;
    margin-bottom: 12px;
}

.product-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
}

/* Reseller Sticky Bar - Glassmorphism style */
.reseller-sticky-panel {
    background: rgba(42, 14, 46, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--white);
    position: sticky;
    top: 90px;
    z-index: 900;
    padding: 16px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-bottom: 3px solid var(--secondary);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .reseller-sticky-panel {
        top: 80px;
    }
}

.reseller-panel-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .reseller-panel-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 12px;
    }
}

.reseller-panel-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reseller-panel-title i {
    color: var(--secondary-light);
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.reseller-select-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-grow: 1;
    max-width: 480px;
    position: relative;
}

@media (max-width: 768px) {
    .reseller-select-wrapper {
        max-width: 100%;
    }
}

/* Custom styled Select dropdown */
.reseller-select {
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    padding-right: 45px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff8838' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    background-size: 18px;
}

.reseller-select:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary-light);
}

.reseller-select:focus {
    border-color: var(--secondary-light);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 136, 56, 0.25);
}

.reseller-select option {
    background-color: var(--primary-dark);
    color: var(--white);
    font-weight: 500;
}

/* Bento Search Filter Panel */
.search-filter-panel {
    display: flex;
    gap: 24px;
    margin-bottom: 45px;
    flex-wrap: wrap;
    background-color: var(--white);
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    align-items: flex-end;
}

.reseller-badge-display {
    display: flex;
    align-items: center;
    background-color: rgba(82, 34, 88, 0.05);
    padding: 14px 24px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
    border-left: 4px solid var(--secondary);
    box-shadow: var(--shadow-sm);
}

/* Testimonials / Slider */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.slider-container {
    position: relative;
    max-width: 850px;
    margin: 0 auto 45px;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide {
    min-width: 100%;
    padding: 20px;
}

.testimonial-card {
    background-color: var(--cream);
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: var(--font-heading);
    font-size: 6rem;
    color: rgba(82, 34, 88, 0.08);
    line-height: 1;
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: var(--accent-yellow);
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.testimonial-comment {
    font-style: italic;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    max-width: 650px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-family: var(--font-body);
}

.testimonial-proof {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 0.88rem;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    background-color: rgba(82, 34, 88, 0.05);
    padding: 6px 14px;
    border-radius: 50px;
    transition: var(--transition);
}

.testimonial-proof:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Slider Controls */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary);
    width: 28px;
    border-radius: 6px;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 8, 29, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    border-radius: 28px;
    max-width: 550px;
    width: 100%;
    box-shadow: var(--shadow-lg), 0 15px 50px rgba(82, 34, 88, 0.12);
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium gradient top accent line */
.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 101;
}

.modal-body {
    padding: 45px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Custom scrollbar inside modal-body */
.modal-body::-webkit-scrollbar {
    width: 8px;
}
.modal-body::-webkit-scrollbar-track {
    background: transparent;
}
.modal-body::-webkit-scrollbar-thumb {
    background: rgba(82, 34, 88, 0.2);
    border-radius: 4px;
}
.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    border: 1px solid rgba(82, 34, 88, 0.1);
    font-size: 1.05rem;
    color: var(--primary);
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(82, 34, 88, 0.08);
    z-index: 105;
}

.modal-close i {
    transition: transform 0.3s ease;
}

.modal-close:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(224, 93, 3, 0.3);
}

.modal-close:hover i {
    transform: rotate(90deg);
}

/* Responsive Activity Detail Modal */
.modal-activity-detail {
    max-width: 850px !important;
    display: flex;
    flex-direction: row;
    height: 580px;
    max-height: 80vh;
}

.modal-activity-img-wrapper {
    width: 45%;
    position: relative;
    flex-shrink: 0;
}

.modal-activity-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-activity-info-wrapper {
    width: 55%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.desktop-only-close {
    display: flex !important;
}
.mobile-only-close {
    display: none !important;
}

@media (max-width: 768px) {
    .modal-activity-detail {
        flex-direction: column !important;
        height: auto !important;
        max-height: 90vh !important;
        max-width: 500px !important;
    }
    
    .modal-activity-img-wrapper {
        width: 100% !important;
        height: 180px !important;
    }
    
    .modal-activity-info-wrapper {
        width: 100% !important;
        height: auto !important;
    }
    
    .desktop-only-close {
        display: none !important;
    }
    .mobile-only-close {
        display: flex !important;
    }
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background-color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--text);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(82, 34, 88, 0.12);
}

.rating-stars-input {
    display: flex;
    gap: 10px;
    font-size: 2.2rem;
    color: var(--border);
    cursor: pointer;
    margin-bottom: 12px;
}

.rating-stars-input i {
    transition: transform 0.2s ease, color 0.2s ease;
}

.rating-stars-input i:hover {
    transform: scale(1.2);
}

.rating-stars-input i:hover,
.rating-stars-input i.active {
    color: var(--accent-yellow);
}

/* Partnerships Page */
.partnership-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    background-color: var(--white);
    padding: 10px;
    border-radius: 50px;
    border: 1px solid var(--border);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
}

.partner-card {
    background-color: var(--white);
    border-radius: 28px;
    border: 1px solid var(--border);
    padding: 35px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-light);
}

.partner-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    transition: var(--transition);
}

.partner-card:hover .partner-img {
    transform: scale(1.05);
    border-color: var(--secondary-light);
}

.partner-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 700;
}

.partner-info .branch {
    background-color: rgba(224, 93, 3, 0.08);
    color: var(--secondary-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .partner-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

/* Info / Activities Page */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 35px;
}

.activity-card {
    background-color: var(--white);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hover);
}

.activity-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.activity-card:hover .activity-img {
    transform: scale(1.03);
}

.activity-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.activity-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}

.activity-category {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
}

.activity-title {
    font-size: 1.35rem;
    margin-bottom: 15px;
    line-height: 1.35;
    color: var(--primary-dark);
}

.activity-summary {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

/* About Us Page */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-img {
    width: 100%;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
}

.visi-misi-card {
    background-color: var(--white);
    border-radius: 28px;
    border: 1px solid var(--border);
    padding: 45px;
    box-shadow: var(--shadow-sm);
}

.visi-misi-section {
    margin-bottom: 30px;
}

.visi-misi-section:last-child {
    margin-bottom: 0;
}

.visi-misi-section h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
}

.visi-misi-section h3 i {
    color: var(--secondary);
}

.misi-list {
    list-style: none;
}

.misi-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 0.98rem;
}

.misi-list li::before {
    content: '✦';
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Legalities Badges */
.legalities-section {
    padding: 100px 0;
    background-color: var(--cream);
}

.legalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
    justify-content: center;
}

.legal-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.legal-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(224, 93, 3, 0.25);
}

.legal-badge-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 12px;
    transition: var(--transition);
}

.legal-card:hover .legal-badge-img {
    transform: scale(1.05);
}

.legal-card h4 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--primary-dark);
}

/* Footer styling */
footer {
    background-color: var(--dark);
    color: #DFD5E2;
    padding: 90px 0 45px;
    font-size: 0.95rem;
    border-top: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 62, 133, 0.08) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    z-index: 0;
}

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

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-light) 100%);
    bottom: 0;
    left: 0;
    border-radius: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 44px;
    border-radius: 8px;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(223, 213, 226, 0.8);
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(223, 213, 226, 0.9);
    font-weight: 500;
    transition: var(--transition);
}

.footer-contact-link i {
    font-size: 1.1rem;
    color: var(--secondary-light);
}

.footer-contact-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: 18px;
    font-size: 1.4rem;
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-btn:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-4px) rotate(8deg);
    border-color: var(--secondary-light);
    box-shadow: 0 6px 15px rgba(224, 93, 3, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 35px;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(223, 213, 226, 0.5);
    position: relative;
    z-index: 1;
}

/* Toast Notification styling */
.toast-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    width: auto;
    max-width: 90%;
}

.toast {
    background: rgba(250, 246, 240, 0.98); /* Soft cream */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: 50px; /* Capsule shape */
    box-shadow: 0 10px 30px rgba(82, 34, 88, 0.12), var(--shadow-md);
    border: 1px solid rgba(82, 34, 88, 0.1);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    animation: toastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.toast i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 576px) {
    .toast-container {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
        width: calc(100% - 30px);
    }
    .toast {
        font-size: 0.85rem;
        padding: 10px 18px;
        white-space: normal;
        text-align: center;
        justify-content: center;
    }
}

/* ==================================================
   RESPONSIVE POLISH & MOBILE UX ADJUSTMENTS
   ================================================== */
@media (max-width: 768px) {
    /* Compact Sticky Reseller Panel on Mobile */
    .reseller-sticky-panel {
        padding: 10px 0;
    }
    .reseller-panel-content {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .reseller-panel-title {
        font-size: 0.9rem;
        justify-content: center;
        text-align: center;
    }
    .reseller-select-wrapper {
        max-width: 100%;
    }
    .reseller-select {
        padding: 10px 16px;
        font-size: 0.88rem;
        background-position: calc(100% - 12px) center;
    }

    /* Bento Search & Filter Panel mobile layout */
    .search-filter-panel {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
    }
    .reseller-badge-display {
        margin-left: 0 !important;
        justify-content: center;
        width: 100%;
        font-size: 0.88rem;
        padding: 12px;
    }
    .filter-group {
        max-width: 100% !important;
        width: 100%;
    }

    /* Testimonial Card padding on mobile */
    .testimonial-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .testimonial-card::before {
        font-size: 4rem;
        top: 10px;
        left: 20px;
    }
    .testimonial-comment {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    /* Modal padding on mobile */
    .modal-content {
        border-radius: 24px;
    }
    .modal-body {
        padding: 30px 20px;
    }
    .modal-close {
        top: 15px;
        right: 15px;
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }

    /* Tab Buttons on Mobile */
    .partnership-tabs {
        width: 100%;
        border-radius: 16px;
        padding: 8px;
        gap: 6px;
    }
    .tab-btn {
        width: 100% !important;
        padding: 12px 16px;
        font-size: 0.85rem;
        border-radius: 12px !important;
    }
    .partner-card {
        padding: 24px 20px;
        gap: 20px;
    }
    .partner-img {
        width: 90px;
        height: 90px;
    }

    /* Hero section spacings */
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    .hero-image {
        max-width: 340px;
    }

    /* Grid Gaps for better mobile spacing */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
        gap: 12px;
    }
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Mobile override for product details to fit compact 2 columns grid */
    .product-card {
        border-radius: 14px;
    }
    .product-tag {
        top: 8px;
        left: 8px;
        font-size: 0.6rem;
        padding: 3px 8px;
    }
    .product-info {
        padding: 12px;
    }
    .product-name {
        font-size: 0.88rem;
        height: 2.5rem;
        margin-bottom: 6px;
    }
    .product-desc {
        font-size: 0.74rem;
        height: 2.1rem !important;
        margin-bottom: 8px !important;
    }
    .product-price {
        font-size: 0.98rem;
        margin-bottom: 10px;
    }
    .product-actions-wrapper {
        gap: 6px;
    }
    .product-actions-wrapper .btn {
        padding: 8px 4px;
        font-size: 0.72rem;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    /* Extreme small screen support */
    .container {
        padding: 0 16px;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   TEMPORARY SHOPPING CART (KERANJANG BELANJA SEMENTARA)
   ========================================================================== */

.product-actions-wrapper {
    display: flex;
    gap: 10px;
    margin-top: auto;
    width: 100%;
}

.product-actions-wrapper .btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 12px;
}


.product-actions-wrapper .add-to-cart-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
}

.product-actions-wrapper .add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(82, 34, 88, 0.25);
}

/* Floating Cart Trigger Button */
.cart-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(224, 93, 3, 0.35);
    z-index: 999;
    transition: var(--transition);
    transform: scale(0);
}

.cart-floating-btn.visible {
    transform: scale(1);
}

.cart-floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 30px rgba(224, 93, 3, 0.45);
}

.cart-floating-btn .cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    min-width: 24px;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(82, 34, 88, 0.2);
}

/* Cart Drawer Styles */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 8, 29, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 1001;
    box-shadow: -10px 0 40px rgba(26, 8, 29, 0.15);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--cream);
}

.cart-header h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h3 i {
    color: var(--secondary);
}

.cart-close-btn {
    background: transparent;
    border: none;
    font-size: 1.4rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.cart-close-btn:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

/* Cart Items Scroll Area */
.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.cart-empty-state {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

.cart-empty-state i {
    font-size: 3.5rem;
    color: var(--border-hover);
    margin-bottom: 20px;
}

.cart-empty-state p {
    font-size: 1rem;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.cart-item-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--cream);
    border: 1px solid var(--border);
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 3px;
    line-height: 1.3;
}

.cart-item-price {
    font-size: 0.8rem;
    color: var(--text-light);
}

.cart-item-subtotal {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--secondary);
    margin-top: 2px;
}

/* Quantity Control */
.cart-quantity-control {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.qty-btn {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background-color: var(--white);
    color: var(--primary);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.qty-input {
    width: 24px;
    text-align: center;
    border: none;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: transparent;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    padding: 3px;
    margin-left: auto;
}

.cart-item-remove:hover {
    color: var(--accent-pink);
    transform: scale(1.1);
}

/* Cart Footer Summary */
.cart-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    background-color: var(--cream);
    box-shadow: 0 -4px 15px rgba(26, 8, 29, 0.02);
}

.cart-reseller-notice {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--secondary);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.82rem;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.cart-reseller-notice i {
    color: var(--secondary);
    margin-right: 6px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.cart-total-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

.cart-total-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-checkout-btn {
    width: 100%;
    padding: 5px;
    font-size: 0.92rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(224, 93, 3, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 93, 3, 0.3);
}

.cart-add-more-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cart-add-more-btn:hover {
    background-color: rgba(82, 34, 88, 0.05);
    color: var(--primary-light);
    border-color: var(--primary-light);
}

.cart-clear-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-light);
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cart-clear-btn:hover {
    background-color: rgba(216, 58, 86, 0.05);
    color: var(--accent-pink);
    border-color: rgba(216, 58, 86, 0.2);
}

@media (max-width: 576px) {
    .cart-drawer {
        width: 100%;
    }
    .cart-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE & REVIEWS
   ========================================================================== */

.product-detail-grid {
    transition: var(--transition);
}

.detail-img-wrapper img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.detail-rating-summary {
    transition: var(--transition);
}

.product-review-card {
    transition: var(--transition);
}

.product-review-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

/* Star Rating Selector Form Input */
.rating-stars-input i {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s;
}

.rating-stars-input i:hover {
    transform: scale(1.25);
}

.rating-stars-input i.active {
    color: #FFD93D !important;
}

/* Quantity Selector detail page controls */
.detail-qty-control .qty-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-qty-control .qty-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Detail page responsive layouts */
@media (max-width: 992px) {
    .reviews-section-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .product-review-form-container {
        position: static !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 20px !important;
    }
    
    .detail-left-column {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    
    .product-detail-section {
        padding: 30px 0 !important;
    }
    
    .detail-right-column h1 {
        font-size: 1.8rem !important;
    }
    
    .product-detail-grid {
        border-radius: 16px !important;
    }
}

/* Reseller Actions Premium Styling */
.partner-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    width: 100%;
}

.partner-actions .btn-shop {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(224, 93, 3, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.partner-actions .btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(224, 93, 3, 0.35);
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
}

.partner-secondary-actions {
    display: flex;
    gap: 10px;
    width: 100%;
}

.partner-secondary-actions .btn-sub {
    flex: 1;
    padding: 10px 14px !important;
    font-size: 0.82rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    height: auto !important;
}

/* Custom WhatsApp Secondary Outline */
.btn-wa-outline {
    background-color: transparent !important;
    border: 2px solid #25D366 !important;
    color: #25D366 !important;
}

.btn-wa-outline:hover {
    background-color: #25D366 !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25) !important;
}


/* ==========================================================================
   PREMIUM DESIGN SYSTEM — GEBUBA v2.0
   Full override & enhancement layer for professional e-commerce look
   ========================================================================== */

/* ── Navbar Premium ──────────────────────────────────────────────────────── */
header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(82, 34, 88, 0.07);
    box-shadow: 0 2px 20px rgba(82, 34, 88, 0.04);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(82, 34, 88, 0.10);
    background: rgba(255, 255, 255, 0.99);
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--primary);
    gap: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.85;
}

.nav-item a {
    font-size: 0.97rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--text);
}

.nav-item a:hover,
.nav-item.active a {
    color: var(--primary);
}

.nav-item a::after {
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

/* CTA button in navbar */
#nav-cta-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 10px 22px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(224, 93, 3, 0.28);
    letter-spacing: 0.2px;
    transition: var(--transition);
}

#nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 93, 3, 0.4);
}

/* ── Hero Section Premium ────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(145deg, #fdf8f3 0%, #f9f0f9 50%, #fdf6ec 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(82, 34, 88, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 93, 3, 0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 22px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.6rem; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.1rem; }
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}

/* Hero decorative ring behind product image */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(82, 34, 88, 0.07) 0%, rgba(224, 93, 3, 0.05) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-image {
    border: 5px solid rgba(255,255,255,0.9);
    box-shadow: 0 30px 80px rgba(82, 34, 88, 0.18), 0 10px 30px rgba(224, 93, 3, 0.08);
}

/* ── Section Headers Enhanced ────────────────────────────────────────────── */
.section-header h2 {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ── Product Cards Premium ───────────────────────────────────────────────── */
.products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.product-card {
    border-radius: 24px;
    border: 1px solid rgba(82, 34, 88, 0.06);
    box-shadow: 0 4px 20px rgba(82, 34, 88, 0.05);
    overflow: visible;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(82, 34, 88, 0.14), 0 4px 15px rgba(224, 93, 3, 0.08);
    border-color: rgba(82, 34, 88, 0.1);
}

/* Product image container clip fix */
.product-img-wrapper {
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}

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

/* Gold "Terlaris" badge */
.product-tag {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
    color: #fff !important;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 12px var(--gold-glow);
}

.product-info {
    padding: 18px 18px 16px;
}

.product-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.4;
    margin-bottom: 6px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 14px;
}

/* Slide-up Add to Cart button on hover */
.product-actions-wrapper {
    gap: 8px;
    margin-top: 0;
}

.product-actions-wrapper .add-to-cart-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.84rem;
    padding: 11px 14px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(224, 93, 3, 0.18);
}

.product-actions-wrapper .add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(224, 93, 3, 0.3);
}

/* Detail / lihat button */
.product-actions-wrapper .btn-outline {
    border-color: rgba(82, 34, 88, 0.2);
    color: var(--primary);
    border-radius: 12px;
    font-size: 0.82rem;
    padding: 11px 10px;
    font-weight: 600;
}

.product-actions-wrapper .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ── Values Section Enhanced ─────────────────────────────────────────────── */
.value-card {
    border-radius: 28px;
    padding: 48px 32px;
    border: 1px solid rgba(82, 34, 88, 0.05);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-card h3 {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-dark);
    font-family: var(--font-body);
}

/* ── Partner / Reseller Cards Premium ───────────────────────────────────── */
.partners-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

@media (max-width: 768px) {
    .partners-grid { grid-template-columns: 1fr; }
}

.partner-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    gap: 0;
    border: 1px solid rgba(82, 34, 88, 0.07);
    box-shadow: 0 4px 20px rgba(82, 34, 88, 0.06);
    background: var(--white);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(82, 34, 88, 0.14);
    border-color: rgba(224, 93, 3, 0.15);
}

.partner-img {
    width: 100%;
    height: 180px;
    border-radius: 0;
    object-fit: cover;
    flex-shrink: 0;
    border: none;
    box-shadow: none;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-card:hover .partner-img {
    transform: scale(1.04);
}

.partner-info {
    padding: 22px 24px 24px;
    width: 100%;
}

.partner-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.3;
}

.partner-info .branch {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 8px;
    background-color: rgba(82, 34, 88, 0.07);
    color: var(--primary);
}

.partner-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Shop button full-width upgrade */
.partner-actions .btn-shop {
    width: 100%;
    padding: 13px 24px;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    box-shadow: 0 4px 16px rgba(224, 93, 3, 0.22);
    letter-spacing: 0.2px;
}

.partner-actions .btn-shop:hover {
    box-shadow: 0 8px 24px rgba(224, 93, 3, 0.38);
    transform: translateY(-2px);
}

.partner-secondary-actions .btn-sub {
    border-radius: 12px !important;
    font-size: 0.8rem !important;
    padding: 9px 12px !important;
}

/* ── Cart Drawer Premium ─────────────────────────────────────────────────── */
.cart-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-bottom: none;
    padding: 22px 24px;
}

.cart-header h3 {
    color: var(--white);
    font-size: 1.1rem;
}

.cart-header h3 i {
    color: var(--secondary-light);
}

.cart-close-btn {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-close-btn:hover {
    color: var(--white);
    background: rgba(255,255,255,0.12);
    transform: rotate(90deg);
}

.cart-item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(82, 34, 88, 0.06);
    gap: 14px;
}

.cart-item-img {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 10px rgba(82, 34, 88, 0.06);
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.cart-item-price {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.cart-item-subtotal {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--secondary);
}

.cart-total-row {
    margin-bottom: 14px;
    padding: 12px 14px;
    background: rgba(82, 34, 88, 0.04);
    border-radius: 12px;
}

.cart-total-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.cart-total-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--secondary);
    font-family: var(--font-body);
}

.cart-checkout-btn {
    padding: 14px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(224, 93, 3, 0.28);
}

.cart-checkout-btn:hover {
    box-shadow: 0 10px 28px rgba(224, 93, 3, 0.4);
    transform: translateY(-3px);
}

/* ── Footer Premium ──────────────────────────────────────────────────────── */
footer {
    background: linear-gradient(160deg, #1A081D 0%, #2A0E2E 50%, #1A081D 100%);
    border-top: none;
    position: relative;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--gold) 100%);
    z-index: 1;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.footer-col h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.footer-col h3::after {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--gold) 100%);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: rgba(223, 213, 226, 0.65);
}

.footer-contact-link {
    font-size: 0.88rem;
    color: rgba(223, 213, 226, 0.75);
}

.footer-contact-link:hover {
    color: var(--white);
}

.footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.footer-social-btn:hover {
    background: var(--secondary);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(224, 93, 3, 0.35);
    border-radius: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    font-size: 0.82rem;
}

/* ── Scroll Reveal Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children reveal */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.55s; }

/* ── Floating Cart Button Enhanced ──────────────────────────────────────── */
.cart-floating-btn {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    font-size: 1.35rem;
    box-shadow: 0 10px 30px rgba(224, 93, 3, 0.35), 0 4px 12px rgba(0,0,0,0.1);
}

.cart-floating-btn:hover {
    transform: scale(1.08) translateY(-4px);
    border-radius: 24px;
}

.cart-floating-btn .cart-badge {
    top: -8px;
    right: -8px;
    background: var(--primary-dark);
    font-size: 0.7rem;
    min-width: 22px;
    height: 22px;
    animation: badgeBounce 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(1.4); }
    60% { transform: scale(0.9); }
}

/* ── Sticky Reseller Panel Enhanced ─────────────────────────────────────── */
.reseller-sticky-panel {
    background: linear-gradient(135deg, rgba(42, 14, 46, 0.97) 0%, rgba(26, 8, 29, 0.97) 100%);
    border-bottom: 2px solid var(--secondary);
}

/* ── Search / Filter Panel Enhanced ─────────────────────────────────────── */
.search-filter-panel {
    border-radius: 20px;
    padding: 22px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(82, 34, 88, 0.05);
}

/* ── Toast Notification Premium ─────────────────────────────────────────── */
.toast {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(82, 34, 88, 0.15);
    border: 1px solid rgba(82, 34, 88, 0.08);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 12px 20px;
}

/* ── Buttons Global Refinements ──────────────────────────────────────────── */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    box-shadow: 0 6px 20px rgba(82, 34, 88, 0.22);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    box-shadow: 0 10px 28px rgba(82, 34, 88, 0.32);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    box-shadow: 0 6px 20px rgba(224, 93, 3, 0.22);
    font-weight: 700;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    box-shadow: 0 10px 28px rgba(224, 93, 3, 0.38);
}

/* ── Testimonial Card Enhanced ───────────────────────────────────────────── */
.testimonial-card {
    background: linear-gradient(145deg, var(--white) 0%, var(--cream) 100%);
    border: 1px solid rgba(82, 34, 88, 0.06);
    border-radius: 28px;
}

/* ── Activity / Info Cards Enhanced ─────────────────────────────────────── */
.activity-card {
    border-radius: 24px;
    border: 1px solid rgba(82, 34, 88, 0.06);
    overflow: hidden;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(82, 34, 88, 0.12);
}

/* ── About Page Enhanced ─────────────────────────────────────────────────── */
.about-img {
    border-radius: 28px;
    border: 6px solid var(--white);
    box-shadow: 0 20px 60px rgba(82, 34, 88, 0.14);
}

.visi-misi-card {
    border-radius: 24px;
    background: linear-gradient(145deg, var(--white) 0%, var(--cream) 100%);
    border: 1px solid rgba(82, 34, 88, 0.06);
}

/* ── Partnership Tab Buttons ─────────────────────────────────────────────── */
.partnership-tabs {
    background: rgba(82, 34, 88, 0.04);
    border: 1px solid rgba(82, 34, 88, 0.08);
    padding: 6px;
    border-radius: 16px;
}

.tab-btn {
    border-radius: 12px !important;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: var(--transition);
}

/* ── Modal Premium ───────────────────────────────────────────────────────── */
.modal-content {
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(26, 8, 29, 0.3);
}

/* ── Scrollbar Refined ───────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
    background: rgba(82, 34, 88, 0.25);
    border-radius: 4px;
    border: 2px solid var(--cream);
}
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

/* ── Global Selection Color ──────────────────────────────────────────────── */
::selection {
    background: rgba(82, 34, 88, 0.18);
    color: var(--primary-dark);
}

/* Responsive 2-column Product Grid (Shopee style) on Mobile */
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .product-card {
        border-radius: 12px !important;
    }
    
    .product-tag {
        top: 6px !important;
        left: 6px !important;
        padding: 2px 6px !important;
        font-size: 0.6rem !important;
    }
    
    .product-info {
        padding: 10px !important;
    }
    
    .product-name {
        font-size: 0.88rem !important;
        height: 2.4rem !important;
        margin-bottom: 4px !important;
        line-height: 1.35 !important;
    }
    
    .product-card-rating {
        font-size: 0.72rem !important;
        margin-bottom: 6px !important;
        gap: 2px !important;
    }
    
    .product-price {
        font-size: 0.95rem !important;
        margin-bottom: 8px !important;
    }
    
    .product-btn,
    .add-to-cart-btn {
        padding: 8px 12px !important;
        font-size: 0.82rem !important;
        border-radius: 8px !important;
        gap: 4px !important;
    }
    
    .product-actions-wrapper {
        margin-top: auto !important;
    }
    
    /* Testimonial & spacing adjustments */
    .testimonials-section {
        padding: 40px 0 !important;
    }
    
    .section-header {
        margin-bottom: 24px !important;
    }
    
    .slider-container {
        margin-bottom: 15px !important;
    }
    
    .testimonial-card {
        padding: 24px 20px !important;
        border-radius: 16px !important;
    }
    
    .testimonial-card::before {
        top: 10px !important;
        left: 20px !important;
        font-size: 3.5rem !important;
    }
    
    .testimonial-rating {
        font-size: 1.1rem !important;
        margin-bottom: 12px !important;
    }
    
    .testimonial-comment {
        font-size: 0.95rem !important;
        margin-bottom: 12px !important;
        line-height: 1.5 !important;
    }
    
    .write-review-btn-container {
        margin-top: 15px !important;
    }
}

/* Sticky Back to Catalog Button in Detail Page */
.back-to-catalog-sticky-container {
    position: sticky;
    top: 110px;
    z-index: 980;
    margin-bottom: 30px;
    display: inline-block;
}

.back-to-catalog-btn {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    padding: 8px 20px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    background-color: var(--white) !important;
    box-shadow: var(--shadow-sm) !important;
}

.back-to-catalog-btn:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    box-shadow: var(--shadow-md) !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 992px) {
    .back-to-catalog-sticky-container {
        top: 95px;
    }
}

/* 6-column product grid on desktop (Shopee style) */
@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 16px !important;
    }
    
    .product-info {
        padding: 14px 12px 12px !important;
    }
    
    .product-name {
        font-size: 0.88rem !important;
        line-height: 1.4 !important;
        height: 2.4rem !important;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .product-price {
        font-size: 1.05rem !important;
        margin-bottom: 12px !important;
    }
    
    .product-actions-wrapper .add-to-cart-btn {
        font-size: 0.78rem !important;
        padding: 8px 10px !important;
        width: 100% !important;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    .product-tag {
        font-size: 0.62rem !important;
        padding: 3px 8px !important;
    }
}

/* Headline Word Reveal Animation */
.word-container {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.25;
}

@keyframes cleanReveal {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.reveal-word {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cleanReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


