/* =============================================
   KERITH - Premium Skincare Brand
   Main Stylesheet
   ============================================= */

/* ----- Google Fonts Import ----- */
@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@400;600;700&family=Space+Grotesk:wght@500&display=swap');

/* ----- CSS Variables ----- */
:root {
    /* Primary */
    --charcoal: #000000;
    --off-white: #FFFFFF;

    /* Accent Colors */
    --gold-accent: #FFFDD9;
    --ochre: #FFEEAA;
    --earth-brown: #3D3935;

    /* Interactive */
    --black: #000000;
    --charcoal-text: #0D0D0D;

    /* Neutral Scale */
    --almost-black: #0B0B0B;
    --near-black: #373330;
    --warm-taupe: #746C64;
    --medium-brown: #928573;
    --light-warm-gray: #F6F3F0;
    --off-white-gray: #FAFAFA;
    --pale-neutral: #E6E6E6;
    --cool-gray: #D5D0C9;
    
    /* Form & Input */
    --input-bg: #F7F7F7;

    /* Mapping to old variables (for backward compatibility during migration) */
    --gold-primary: var(--almost-black);
    --gold-dark: var(--near-black);
    --gold-light: var(--warm-taupe);
    --gold-pale: var(--light-warm-gray);
    --gold-gradient: var(--charcoal);
    --gold-shimmer: var(--charcoal);

    --white: var(--off-white);
    --white-cream: var(--off-white);
    --white-soft: var(--light-warm-gray);

    --dark: var(--charcoal);
    --dark-soft: var(--near-black);
    --dark-muted: var(--medium-brown);
    --dark-lighter: var(--warm-taupe);

    /* Marketplace colors (Retained as requested) */
    --shopee-orange: #EE4D2D;
    --shopee-hover: #D63A1C;
    --tokopedia-green: #42B549;
    --tokopedia-hover: #35933B;

    /* Spacing */
    --section-padding: 60px 0;
    --container-padding: 0 40px;

    /* Typography */
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Overpass', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows (Removed, set to none) */
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-xl: none;
    --shadow-gold: none;
    --shadow-gold-lg: none;

    /* Border radius (0px for sharp edges) */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-xl: 0px;
    --radius-full: 50%;
    --radius-badge: 4px;

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--white-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--dark);
    text-transform: uppercase;
}

input, textarea, select, button {
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
}

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

/* ----- Section Title ----- */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title p {
    font-size: 1rem;
    color: var(--dark-muted);
    max-width: 600px;
    margin: 16px auto 0;
    font-weight: 400;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 100px; /* Force it to be large */
    width: auto;
    object-fit: contain;
    margin: -30px 0 -30px -45px; /* Pull it tight top/bottom, and pull it far left to counteract transparent padding */
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-soft);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-base);
}

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

.navbar-nav a:hover {
    color: var(--gold-dark);
}

/* Mobile menu toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition-base);
    border-radius: 2px;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Navbar Actions (Search + Hamburger) */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--dark);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.search-toggle:hover {
    background: var(--light-warm-gray);
    color: var(--charcoal);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.search-overlay.active {
    transform: translateY(0);
    opacity: 1;
}

.search-overlay-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 32px 24px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 2px solid var(--dark);
    padding: 12px 0;
}

.search-input-wrapper svg {
    flex-shrink: 0;
    color: var(--warm-taupe);
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.2rem;
    font-family: var(--font-primary);
    color: var(--dark);
    letter-spacing: 0.5px;
}

.search-input-wrapper input::placeholder {
    color: var(--cool-gray);
    font-weight: 400;
}

.search-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--warm-taupe);
    padding: 0 4px;
    line-height: 1;
    transition: var(--transition-base);
}

.search-close:hover {
    color: var(--dark);
}

/* Developer Credit Bar */
.developer-bar {
    background: #0a0a0a;
    text-align: center;
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.developer-bar p {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.developer-bar strong {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

/* Search Result Info */
.search-result-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--light-warm-gray);
    border-radius: 8px;
    border-left: 3px solid var(--dark);
}

.search-result-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--charcoal-text);
}

.search-clear-btn {
    font-size: 0.85rem;
    color: var(--warm-taupe);
    text-decoration: none;
    transition: var(--transition-base);
    white-space: nowrap;
}

.search-clear-btn:hover {
    color: var(--dark);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 554px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--earth-brown) url('/images/hero-banner.png') center center / cover no-repeat;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 57, 53, 0.4); /* Earth brown overlay */
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
}

.hero-badge {
    display: inline-block;
    padding: 4px 8px;
    background: var(--light-warm-gray);
    border: none;
    border-radius: var(--radius-badge);
    font-size: 11.2px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--earth-brown);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hero h1 .gold-text {
    /* No gold gradient in Skinome, just keep it white or warm */
    color: var(--off-white);
}



.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11.52px 14.4px;
    border-radius: var(--radius-sm);
    font-size: 14.4px;
    font-weight: 700;
    letter-spacing: 0;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    white-space: nowrap;
    background: var(--black);
    color: var(--off-white);
    box-shadow: none;
}

.btn:hover {
    background: var(--charcoal-text);
}

.btn-primary {
    /* Uses base .btn styles */
}

.btn-primary:hover {
    /* Uses base .btn:hover styles */
}

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

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

.btn-outline:hover {
    background: var(--black);
    color: var(--off-white);
    transform: none;
    box-shadow: none;
}

.btn-hero-outline {
    background: transparent;
    color: var(--off-white);
    border: 1px solid var(--off-white);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--off-white);
    transform: none;
    box-shadow: none;
}

.btn-shopee {
    background: transparent;
    color: var(--shopee-orange);
    border: 1px solid var(--shopee-orange);
    box-shadow: none;
}

.btn-shopee:hover {
    background: rgba(238, 77, 45, 0.05);
    transform: none;
    box-shadow: none;
}

.btn-tokopedia {
    background: transparent;
    color: var(--tokopedia-green);
    border: 1px solid var(--tokopedia-green);
    box-shadow: none;
}

.btn-tokopedia:hover {
    background: rgba(0, 170, 91, 0.05);
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: none;
    text-decoration: none;
    padding: 0;
    font-weight: 400;
}

.btn-secondary:hover {
    color: var(--near-black);
    text-decoration: underline;
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

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

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 2;
}

.about-image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: calc(100% + 32px);
    height: calc(100% + 32px);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 0;
    z-index: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--dark-muted);
    font-weight: 300;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-muted);
}

.about-highlight-icon {
    width: 18px;
    height: 18px;
    color: var(--dark);
    flex-shrink: 0;
}

.about-divider {
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 24px 0;
    border-radius: 2px;
}

/* =============================================
   BENEFITS SECTION
   ============================================= */
.benefits-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--white-cream) 0%, var(--white) 100%);
}

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

.benefit-card {
    background: var(--white);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.benefit-card:hover .benefit-icon {
    background: var(--gold-light);
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold-dark);
}

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

.benefit-card p {
    font-size: 0.95rem;
    color: var(--dark-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.products-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.product-card {
    background: transparent;
    border-radius: 0;
    border: none;
    transition: var(--transition-slow);
    position: relative;
    text-decoration: none;
    display: block;
}

.product-card:hover {
    transform: none;
    box-shadow: none;
    border: none;
}

.product-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white-cream), var(--gold-pale));
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    border-radius: 0;
}

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

.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--white-cream), var(--gold-pale));
    color: var(--gold-dark);
}

.product-card-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
    margin-bottom: 8px;
}

.product-card-placeholder span {
    font-size: 0.8rem;
    opacity: 0.5;
    font-weight: 500;
}

.product-card-body {
    padding: 16px 0 0 0;
    text-align: left;
}

.product-card-body h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--dark);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-muted);
    margin-bottom: 0;
    font-family: var(--font-body);
}

/* =============================================
   SKINCARE ROUTINE SECTION
   ============================================= */
.reseller-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

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

.reseller-benefit {
    text-align: center;
    padding: 32px;
    background: var(--light-warm-gray);
    border: 1px solid var(--pale-neutral);
    transition: var(--transition-base);
}

.reseller-benefit:hover {
    border-color: var(--black);
}

.reseller-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border: 1px solid var(--black);
    color: var(--black);
}

.reseller-icon svg {
    width: 32px;
    height: 32px;
}

.reseller-benefit h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0px;
}

.reseller-benefit p {
    font-size: 1rem;
    color: var(--near-black);
    font-weight: 400;
    line-height: 1.6;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-slow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--gold-light);
    line-height: 1;
    opacity: 0.6;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--gold-primary);
    fill: var(--gold-primary);
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--dark-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold-dark);
}

.testimonial-author-info h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--dark-lighter);
    font-weight: 400;
}

.testimonial-screenshot {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
}

.testimonial-screenshot img {
    width: 100%;
    border-radius: var(--radius-md);
}

.testimonial-platform-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.platform-shopee {
    background: var(--shopee-orange);
}

.platform-tokopedia {
    background: var(--tokopedia-green);
}

/* =============================================
   ABOUT PAGE (EDITORIAL SCANDINAVIAN)
   ============================================= */

/* Editorial Hero */
.about-editorial-hero {
    padding: 180px 0 100px;
    background-color: var(--white-cream);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.oversized-heading {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.05;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin: 0;
}

/* Editorial Split Layout (Story & Formula) */
.about-editorial-story, .about-editorial-formula {
    padding: 120px 0;
    background-color: var(--white);
}

.about-editorial-formula {
    background-color: var(--white-cream);
}

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

.editorial-split.reverse .editorial-text {
    order: 2;
}
.editorial-split.reverse .minimalist-list {
    order: 1;
}

.large-body-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--dark-lighter);
    font-weight: 300;
}

.large-body-text strong {
    font-weight: 600;
    color: var(--dark);
}

.editorial-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    /* No border radius or shadow for that raw editorial look */
}

/* Minimalist List */
.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.minimalist-list {
    display: flex;
    flex-direction: column;
}

.minimalist-item {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.minimalist-item:first-child {
    border-top: 1px solid rgba(0,0,0,0.1);
}

.minimalist-number {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-primary);
    line-height: 1;
}

.minimalist-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1;
}

.minimalist-content p {
    font-size: 0.95rem;
    color: var(--dark-muted);
    line-height: 1.6;
}

/* Editorial Mission */
.about-editorial-mission {
    padding: 160px 0;
    background-color: var(--white);
    text-align: center;
}

.massive-quote {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--dark);
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

/* Responsive Editorial */
@media (max-width: 768px) {
    .oversized-heading {
        font-size: 3rem;
    }
    .editorial-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .editorial-split.reverse .editorial-text {
        order: 1;
    }
    .editorial-split.reverse .minimalist-list {
        order: 2;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .massive-quote {
        font-size: 2rem;
    }
    .about-editorial-hero {
        padding: 140px 0 60px;
        min-height: auto;
    }
    .about-editorial-story, .about-editorial-formula, .about-editorial-mission {
        padding: 80px 0;
    }
}

/* =============================================
   PRODUCT CATALOG PAGE
   ============================================= */
.catalog-header {
    padding: 160px 0 40px;
    text-align: center;
    background: var(--white);
}

.catalog-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.catalog-header p {
    font-size: 1.1rem;
    color: var(--dark-muted);
    font-weight: 300;
}

.catalog-products {
    padding: 20px 0 100px;
    background: var(--white);
}

.catalog-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.catalog-filters a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--dark-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
    position: relative;
}

.catalog-filters a:hover {
    color: var(--dark);
}

.catalog-filters a.active {
    color: var(--dark);
    font-weight: 500;
}

.catalog-filters a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--dark);
}

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-detail {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--white-cream);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-image {
    overflow: hidden;
    background: var(--off-white);
}

@media (min-width: 1025px) {
    .product-detail-image {
        position: sticky;
        top: 100px;
    }
}

.gallery-slider {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-main {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--off-white);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    z-index: 5;
    transition: var(--transition-base);
}

.gallery-arrow:hover {
    background: var(--gold-primary);
    color: white;
}

.gallery-arrow-left { left: 12px; }
.gallery-arrow-right { right: 12px; }

.gallery-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 5;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0;
}

.gallery-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: var(--gold-primary);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.product-detail-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--white-cream), var(--gold-pale));
    color: var(--gold-dark);
}

.product-detail-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.4;
    margin-bottom: 12px;
}

.product-detail-placeholder span {
    font-size: 1rem;
    opacity: 0.5;
}

.product-detail-info {
    padding-top: 20px;
}

.product-detail-info h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.product-detail-description {
    font-size: 1rem;
    color: var(--dark-muted);
    line-height: 1.9;
    margin-bottom: 36px;
    font-weight: 300;
}

.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 400px;
}

.product-detail-actions .btn {
    justify-content: center;
}

.product-detail-actions .btn .marketplace-logo {
    width: auto;
    height: 22px;
    object-fit: contain;
}

.product-detail-back {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--dark-muted);
    font-weight: 500;
}

.product-detail-back:hover {
    color: var(--gold-dark);
}

.product-detail-back::before {
    content: '←';
    transition: var(--transition-base);
}

.product-detail-back:hover::before {
    transform: translateX(-4px);
}

/* =============================================
   FOOTER (MEGA)
   ============================================= */
.footer-mega {
    background: var(--white);
    padding: 0;
    color: var(--dark);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-newsletter {
    background-color: var(--white-cream);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.newsletter-content p {
    color: var(--dark-muted);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 0;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.newsletter-form input:focus {
    border-color: var(--gold-primary);
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--dark);
    color: var(--white);
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--gold-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--dark-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.brand-col .footer-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--dark);
    margin-bottom: 8px;
}

.brand-col .footer-tagline {
    font-size: 0.9rem;
    color: var(--dark-muted);
    margin-bottom: 24px;
}

.social-links-mega {
    display: flex;
    gap: 16px;
}

.social-links-mega a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    color: var(--dark);
    transition: all 0.3s ease;
}

.social-links-mega a:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--white);
}

.social-links-mega svg {
    width: 18px;
    height: 18px;
}

.footer-bottom-mega {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.badge-item {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-item::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: var(--dark-muted);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 10 0 1-5.93 9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 10 0 1-5.93 9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
    mask-size: cover;
    -webkit-mask-size: cover;
}

.footer-bottom-mega .copyright p {
    font-size: 0.85rem;
    color: var(--dark-muted);
    margin: 0;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom-mega {
        flex-direction: column;
        text-align: center;
    }
    .trust-badges {
        justify-content: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Keyframe animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* =============================================
   ADMIN PANEL STYLES
   ============================================= */

/* Admin Login */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--white-cream) 0%, var(--gold-pale) 100%);
    padding: 24px;
}

.admin-login-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 440px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.admin-login-brand {
    text-align: center;
    margin-bottom: 36px;
}

.admin-login-brand h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.admin-login-brand p {
    font-size: 0.85rem;
    color: var(--dark-lighter);
    font-weight: 400;
}

.admin-login-brand .admin-label {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark-lighter);
    padding: 4px 12px;
    background: var(--white-cream);
    border-radius: 4px;
}

/* Admin Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-soft);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    padding: 9px 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    color: var(--black);
    background: var(--input-bg);
    transition: var(--transition-base);
}

.form-control:focus {
    background: var(--off-white-gray);
    outline: 1px solid var(--black);
    border-color: transparent;
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--medium-brown);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    font-size: 0.8rem;
    color: #e53e3e;
    margin-top: 4px;
}

.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-danger {
    background: #FFF5F5;
    color: #C53030;
    border: 1px solid #FED7D7;
}

.alert-success {
    background: #F0FFF4;
    color: #276749;
    border: 1px solid #C6F6D5;
}

/* Admin Dashboard */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background: var(--white-cream);
}

.admin-sidebar {
    width: 260px;
    background: var(--dark);
    padding: 32px 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    overflow-y: auto;
}

.admin-sidebar-brand {
    text-align: center;
    padding: 0 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.admin-sidebar-brand h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 4px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.admin-sidebar-brand span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.admin-nav {
    padding: 0 16px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    transition: var(--transition-base);
    margin-bottom: 4px;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.admin-nav a svg {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.admin-nav a:hover svg,
.admin-nav a.active svg {
    opacity: 1;
}

.admin-nav .nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 16px 0;
}

.admin-nav .logout-link {
    color: rgba(255, 255, 255, 0.4);
}

.admin-nav .logout-link:hover {
    background: rgba(255, 80, 80, 0.15);
    color: #ff6b6b;
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 32px;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.admin-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

/* Admin Table */
.admin-table-wrapper {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: var(--white-cream);
}

.admin-table th {
    padding: 14px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.admin-table td {
    padding: 16px 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover {
    background: rgba(212, 175, 55, 0.03);
}

.admin-table .table-image {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--white-cream);
}

.admin-table .table-image-placeholder {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}

.admin-table .table-image-placeholder svg {
    width: 24px;
    height: 24px;
    opacity: 0.5;
}

.table-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-actions .btn-edit {
    padding: 6px 14px;
    font-size: 0.8rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-dark);
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition-base);
}

.table-actions .btn-edit:hover {
    background: var(--gold-primary);
    color: var(--white);
}

.table-actions .btn-delete {
    padding: 6px 14px;
    font-size: 0.8rem;
    background: rgba(229, 62, 62, 0.08);
    color: #e53e3e;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.table-actions .btn-delete:hover {
    background: #e53e3e;
    color: var(--white);
}

/* Admin Form Page */
.admin-form-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 36px;
    max-width: 700px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-form-card .form-group {
    margin-bottom: 24px;
}

.form-image-preview {
    margin-top: 12px;
}

.form-image-preview img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.admin-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--dark-muted);
}

.admin-empty svg {
    width: 64px;
    height: 64px;
    opacity: 0.3;
    margin-bottom: 16px;
    color: var(--gold-dark);
}

.admin-empty p {
    font-size: 1rem;
    margin-bottom: 20px;
}

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

/* Tablet */
@media (max-width: 1024px) {
    .reseller-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .product-detail-grid {
        gap: 40px;
    }
}

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

    /* Navbar Mobile */
    .navbar-toggle {
        display: flex;
    }

    .navbar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition-base);
        z-index: 999;
    }

    .navbar-nav.open {
        right: 0;
    }

    .navbar-nav a {
        font-size: 1.1rem;
    }

    /* Mobile overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.4rem;
    }

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

    .hero::before,
    .hero::after {
        width: 300px;
        height: 300px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-accent {
        display: none;
    }

    .about-text .section-title {
        text-align: center !important;
    }

    .about-highlights {
        justify-content: center;
    }

    .about-divider {
        margin: 24px auto;
    }

    .about-text p:last-child {
        text-align: center;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 32px 24px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    /* Product Detail */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-detail-info h1 {
        font-size: 1.8rem;
    }

    .product-detail-actions {
        max-width: 100%;
    }

    /* Catalog */
    .catalog-header {
        padding: 110px 0 40px;
    }

    .catalog-header h1 {
        font-size: 2rem;
    }

    .catalog-filters {
        gap: 16px;
        margin-bottom: 32px;
    }

    .catalog-filters a {
        font-size: 0.85rem;
    }

    /* Admin */
    .admin-sidebar {
        width: 100%;
        position: relative;
        padding: 20px 0;
    }

    .admin-layout {
        flex-direction: column;
    }

    .admin-main {
        margin-left: 0;
        padding: 20px;
    }

    .admin-table {
        font-size: 0.85rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 10px 12px;
    }

    .admin-form-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 14px 36px;
    }

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

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

    .product-detail {
        padding: 100px 0 60px;
    }

    .social-links {
        gap: 14px;
    }

    .social-link {
        width: 46px;
        height: 46px;
    }

    .admin-login-card {
        padding: 32px 24px;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .table-actions {
        flex-direction: column;
    }
}

/* =============================================
   PRODUCT DETAIL: META BADGES
   ============================================= */
.product-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--gold-pale);
    color: var(--gold-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.meta-badge svg {
    flex-shrink: 0;
}

.meta-badge-bpom {
    background: rgba(34, 139, 34, 0.1);
    color: #228B22;
    border-color: rgba(34, 139, 34, 0.2);
}

/* =============================================
   PRODUCT DETAIL: ACCORDION
   ============================================= */
.product-accordion-section {
    margin-top: 40px;
    padding-top: 0;
    border-top: none;
}

.accordion-section-title {
    display: none;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid var(--pale-neutral);
    margin-bottom: 0;
    background: transparent;
    overflow: hidden;
    transition: none;
}

.accordion-item:hover {
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    transition: color var(--transition-fast);
}

.accordion-header:hover {
    color: var(--near-black);
    background-color: transparent;
}

.accordion-icon {
    display: none;
}

.accordion-icon svg {
    display: none;
}

.accordion-arrow {
    display: flex;
    align-items: center;
    color: var(--black);
    transition: transform var(--transition-normal);
}

.accordion-item.open .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0;
}

.accordion-item.open .accordion-body {
    max-height: 800px;
    padding: 0 0 24px 0;
}

.accordion-body p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }


 . s l i d e s h o w - i m g   { 
         t r a n s i t i o n :   o p a c i t y   0 . 1 5 s   e a s e - i n - o u t ; 
 } 
  
 

/* Mobile Fix for Sticky Product Image */
@media (max-width: 992px) {
    .product-detail-image {
        position: relative !important;
        top: 0 !important;
    }
}

