/* =====================================================
   GLOBAL
===================================================== */

:root {
    /* Brand Emerald & Modesty Palette */
    --primary: #05824d;
    --primary-dark: #036239;
    --primary-light: #eef9f3;

    /* Luxury Accent 1: Soft Blush Coral / Rose (Like Reference Image) */
    --rose: #ff476f;
    --rose-dark: #e11d48;
    --rose-light: #fff1f4;
    --rose-border: #fecdd3;

    /* Luxury Accent 2: Warm Champagne Gold */
    --gold: #c2882a;
    --gold-dark: #9a6514;
    --gold-light: #fdf8eb;
    --gold-border: #f5e4bc;

    /* High-End Typography Slate & Ink */
    --ink: #0f172a;
    --text: #1e293b;
    --text-soft: #64748b;
    --text-muted: #94a3b8;

    /* Backgrounds & Borders */
    --border: #e8ecf1;
    --border-light: #f1f5f9;
    --background: #fbfbf9;
    --white: #ffffff;

    --danger: #ef4444;
    --warning: #f59e0b;

    --radius: 12px;
    --shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    --shadow-hover: 0 12px 30px rgba(15, 23, 42, 0.09);

    /* Fonts */
    --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--background);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: min(1400px, calc(100% - 40px));
    margin: auto;
}

/* =====================================================
   UNIFIED PAGE HEADER (CENTER ALIGNED & LUXURY TYPOGRAPHY)
===================================================== */
.page-header-unified {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 32px;
}
.page-header-unified .page-eyebrow {
    display: inline-block;
    color: var(--rose, #ff476f);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.page-header-unified .page-title {
    font-family: var(--font-serif, 'Playfair Display', serif);
    color: var(--ink, #0f172a);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.page-header-unified .page-desc {
    color: var(--text-soft, #64748b);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 auto;
    max-width: 680px;
}

/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    background: var(--primary);
    color: white;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 30px;

    font-size: 13px;
}

.top-right {
    display: flex;
    gap: 25px;
}

.top-right a {
    color: white;
    transition: opacity 0.2s;
}

.top-right a:hover {
    opacity: 0.85;
}

/* =====================================================
   HEADER
===================================================== */

header.site-header,
body > header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 5px rgba(0,0,0,.04);
}

.header-main {
    height: 98px;

    display: flex;
    align-items: center;
    gap: 30px;
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--text);
}

.logo {
    width: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-main {
    font-family: Georgia, serif;
    font-size: 30px;
    color: var(--primary-dark);
    line-height: .9;
}

.logo-small {
    font-size: 13px;
    color: var(--primary-dark);
    margin-top: 7px;
}

.search-box {
    flex: 1;

    display: flex;

    border: 1px solid #dcdcdc;
    border-radius: 10px;
    overflow: hidden;

    height: 45px;
}

.search-box input {
    flex: 1;
    border: 0;
    outline: none;
    padding: 0 15px;
    font-size: 14px;
}

.search-btn {
    width: 90px;
    border: 0;
    background: var(--primary);
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.search-btn:hover {
    background: var(--primary-dark);
}

.header-actions {
    display: flex;
    gap: 25px;
}

.header-action {
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    position: relative;
}

.header-icon {
    font-size: 22px;
    display: block;
    margin-bottom: 4px;
}

.badge-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.navigation {
    background: white;
    border-top: 1px solid #f4f4f4;
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    height: 48px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    position: relative;
    color: var(--text);
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -16px;

    height: 3px;
    background: var(--primary);
}

.nav-item-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.chevron-icon {
    width: 15px;
    height: 15px;
    margin-left: 3px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.2s;
    display: inline-block;
    vertical-align: middle;
}

.nav-item-dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    list-style: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1100;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.nav-item-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--text);
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-item a:hover {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

/* =====================================================
   MOBILE DRAWER / SIDEBAR (GAMBAR 2 CONCEPT)
===================================================== */

body.drawer-open {
    overflow: hidden !important;
    touch-action: none;
}

/* Backdrop */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* Drawer Container */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: calc(100vw - 55px);
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    box-shadow: 6px 0 35px rgba(0, 0, 0, 0.18);
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s;
    visibility: hidden;
}

.mobile-drawer.open {
    transform: translateX(0);
    visibility: visible;
}

/* Drawer Header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
    flex-shrink: 0;
    gap: 12px;
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 0;
}

.drawer-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--primary-light, #e9f8f0);
    color: var(--primary, #00aa5b);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.drawer-brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.drawer-brand-name {
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark, #008f4c);
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drawer-brand-tagline {
    font-size: 10px;
    color: var(--text-soft, #666666);
    margin-top: 2px;
    white-space: nowrap;
}

.drawer-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.drawer-close-btn:hover,
.drawer-close-btn:active {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #cbd5e1;
    transform: rotate(90deg);
}

/* Drawer Body */
.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #e2e8f0 transparent;
}

.drawer-body::-webkit-scrollbar {
    width: 4px;
}

.drawer-body::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 4px;
}

.drawer-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #94a3b8;
    padding: 10px 10px 4px;
}

.drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drawer-item {
    position: relative;
    width: 100%;
}

.drawer-link,
.drawer-accordion-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    box-sizing: border-box;
}

.drawer-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    color: #64748b;
    transition: color 0.2s;
}

.drawer-link-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drawer-link:hover,
.drawer-accordion-btn:hover {
    background: #f8fafc;
    color: #0f172a;
}

.drawer-link:hover .drawer-link-icon,
.drawer-accordion-btn:hover .drawer-link-icon {
    color: var(--primary, #00aa5b);
}

/* Active State (Concept seperti Gambar 2) */
.drawer-link.active,
.drawer-accordion-btn.active {
    background: var(--primary, #00aa5b) !important;
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 170, 91, 0.28);
}

.drawer-link.active .drawer-link-icon,
.drawer-accordion-btn.active .drawer-link-icon {
    color: #ffffff !important;
}

.drawer-link.active .drawer-badge,
.drawer-accordion-btn.active .drawer-badge {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

.drawer-link.active .drawer-chevron,
.drawer-accordion-btn.active .drawer-chevron {
    color: #ffffff !important;
}

/* Badges */
.drawer-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 12px;
    line-height: 1.3;
    margin-left: auto;
    letter-spacing: 0.2px;
    flex-shrink: 0;
}

.badge-neutral {
    background: #f1f5f9;
    color: #64748b;
}

.badge-gold,
.badge-warning {
    background: #fef08a;
    color: #854d0e;
}

.badge-accent {
    background: #fee2e2;
    color: #dc2626;
}

/* Accordion Submenu */
.drawer-chevron {
    margin-left: 6px;
    color: #94a3b8;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.drawer-accordion.open .drawer-chevron {
    transform: rotate(90deg);
}

.drawer-submenu {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 4px 0 4px 32px;
    margin-top: 2px;
}

.drawer-accordion.open .drawer-submenu {
    display: flex;
}

.drawer-sublink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    font-size: 13px;
    color: #475569;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.drawer-subicon {
    font-size: 13px;
    line-height: 1;
}

.drawer-sublink:hover {
    background: var(--primary-light, #e9f8f0);
    color: var(--primary, #00aa5b);
    font-weight: 600;
}

.drawer-sublink.active {
    background: var(--primary-light, #e9f8f0);
    color: var(--primary-dark, #008f4c);
    font-weight: 700;
}

/* Drawer Footer */
.drawer-footer {
    padding: 14px 16px;
    border-top: 1px solid #f1f5f9;
    background: #fafafa;
    flex-shrink: 0;
}

.drawer-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    background: #25d366;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.28);
}

.drawer-wa-btn:hover {
    background: #20ba5a;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.38);
}

.drawer-wa-btn:active {
    transform: scale(0.98);
}

/* =====================================================
   SCROLL TO TOP (MERAH GOLD)
===================================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 45%, #b91c1c 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(217, 119, 6, 0.45), 0 2px 8px rgba(185, 28, 28, 0.3);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #ea580c 55%, #991b1b 100%);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.55), 0 4px 12px rgba(185, 28, 28, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px) scale(0.96);
    box-shadow: 0 3px 10px rgba(217, 119, 6, 0.4);
}

.scroll-to-top svg {
    stroke: #ffffff;
    transition: transform 0.2s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* =====================================================
   PAGE LAYOUT
===================================================== */

.page-layout {
    display: grid;

    grid-template-columns: 210px 1fr;

    gap: 24px;

    padding: 20px 0 50px;
}

/* =====================================================
   SIDEBAR
===================================================== */

.sidebar {
    position: sticky;
    top: 155px;

    align-self: start;
}

.sidebar-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);

    overflow: hidden;
}

.sidebar-title {
    padding: 18px 15px;

    font-size: 14px;
    font-weight: 700;

    color: var(--primary-dark);

    border-bottom: 1px solid var(--border);
}

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

.category-list li a {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 15px;

    font-size: 13px;

    transition: .2s;
}

.category-list li a:hover,
.category-list li a.active {
    color: var(--primary);
    background: var(--primary-light);
    font-weight: 600;
}

.category-icon {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 13px;
}

/* =====================================================
   RESELLER SIDEBAR
===================================================== */

.reseller-card {
    margin-top: 15px;

    background: linear-gradient(
        135deg,
        #edf9f1,
        #ffffff
    );

    border-radius: var(--radius);

    padding: 20px 15px;

    border: 1px solid #dff0e5;
}

.reseller-card h3 {
    color: var(--primary-dark);
    font-family: Georgia, serif;
    margin-bottom: 10px;
    font-size: 17px;
}

.reseller-card p {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn {
    border: 0;
    background: var(--primary);
    color: white;

    padding: 11px 17px;

    border-radius: 8px;

    cursor: pointer;

    font-weight: 600;
    font-size: 13px;
    display: inline-block;
    text-align: center;
    transition: background .2s, transform .2s;
}

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

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

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

.hero {
    min-height: 440px;

    background: #fdfbf7;

    border-radius: 16px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.hero-content {
    width: 58%;
    max-width: 580px;
    padding: 44px 30px 44px 40px;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.92) 50%,
        rgba(255, 255, 255, 0.72) 78%,
        rgba(255, 255, 255, 0) 100%
    );
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-radius: 16px 0 0 16px;
}

.hero-small {
    color: var(--rose, #ff476f);
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-serif);
    color: var(--ink, #0f172a);
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.hero h2 {
    font-family: var(--font-serif);
    color: var(--ink, #0f172a);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    color: #475569;
    line-height: 1.7;
    font-size: 14px;
    max-width: 480px;
    margin-bottom: 25px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-cta-group .btn {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 20px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline-hero {
    background: #ffffff !important;
    color: var(--primary, #05824d) !important;
    border: 1.5px solid var(--primary, #05824d) !important;
}

.btn-outline-hero:hover {
    background: var(--primary-light, #e8f5e9) !important;
    color: var(--primary-dark, #046c3f) !important;
    border-color: var(--primary-dark, #046c3f) !important;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: right center;

    z-index: 1;
}

/* =====================================================
   SERVICE FEATURES
===================================================== */

.features {
    background: white;

    margin-top: 15px;

    border-radius: var(--radius);

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    box-shadow: var(--shadow);
}

.feature {
    padding: 17px;

    display: flex;
    align-items: center;
    gap: 12px;

    border-right: 1px solid var(--border);
}

.feature:last-child {
    border-right: 0;
}

.feature-icon {
    color: var(--primary);
    font-size: 22px;
}

.feature strong {
    display: block;
    font-size: 12px;
}

.feature span {
    font-size: 10px;
    color: var(--text-soft);
}

/* =====================================================
   FEATURED COLLECTIONS (KOLEKSI PILIHAN)
===================================================== */

.featured-collections-section {
    margin-top: 35px;
    margin-bottom: 35px;
    position: relative;
}

.featured-collections-header {
    text-align: center;
    margin-bottom: 25px;
}

.featured-collections-title {
    font-family: Georgia, serif;
    font-size: 26px;
    color: #185c38;
    margin-bottom: 8px;
    font-weight: 700;
}

.featured-collections-subtitle {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
}

.featured-collections-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.featured-collections-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 2px;
}

.featured-collections-grid::-webkit-scrollbar {
    display: none;
}

.collection-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.collection-img-link {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f4f4f4;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.collection-body {
    padding: 16px 14px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.collection-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.collection-name a {
    color: var(--text);
    transition: color 0.2s;
}

.collection-name a:hover {
    color: var(--primary);
}

.collection-desc {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.collection-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s, transform 0.2s;
    margin-top: auto;
}

.collection-link:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

.collection-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #444;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.collection-slider-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.collection-slider-btn.prev-btn {
    left: -16px;
}

.collection-slider-btn.next-btn {
    right: -16px;
}

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

.section {
    margin-top: 30px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink, #0f172a);
    letter-spacing: -0.01em;
}

.see-all {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}

.see-all:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 12px;
}

.product-card {
    background: white;

    border-radius: 10px;

    overflow: hidden;

    border: 1px solid var(--border);

    transition: .25s;

    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,.09);
}

.product-image {
    position: relative;
    background: #f3f3f3;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-image img {
    height: 100%;
    object-fit: cover;

    transition: .3s;
}

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

.badge {
    position: absolute;

    top: 10px;
    left: 10px;

    background: var(--primary);

    color: white;

    font-size: 10px;

    padding: 4px 8px;

    border-radius: 5px;

    font-weight: 600;

    z-index: 2;
}

.badge.badge-new {
    background: #2563eb;
}

.badge.badge-sale {
    background: var(--danger);
}

.wishlist {
    position: absolute;

    right: 10px;
    top: 10px;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: white;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    cursor: pointer;

    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.wishlist:hover {
    transform: scale(1.1);
}

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

.product-name {
    font-size: 13px;
    font-weight: 600;

    margin-bottom: 5px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-name a {
    color: var(--text);
    transition: color 0.2s;
}

.product-name a:hover {
    color: var(--primary);
}

.product-material {
    font-size: 11px;
    color: var(--text-soft);

    margin-bottom: 7px;
}

.rating {
    color: #f5a623;
    font-size: 11px;
    margin-bottom: 7px;
}

.rating span {
    color: #777;
    margin-left: 3px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price {
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
}

.original-price {
    font-size: 11px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.cart-btn {
    width: 32px;
    height: 32px;

    border-radius: 7px;

    background: var(--primary);

    color: white;

    border: 0;

    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.1s;
}

.cart-btn:hover {
    background: var(--primary-dark);
}

.cart-btn:active {
    transform: scale(0.92);
}

/* =====================================================
   PROMO
===================================================== */

.promo-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;
}

.promo-card {
    min-height: 160px;

    border-radius: 12px;

    padding: 25px;

    position: relative;

    overflow: hidden;

    background: #edf8ef;
}

.promo-card:nth-child(2) {
    background: #fff4e8;
}

.promo-card:nth-child(3) {
    background: #edf8ef;
}

.promo-card h3 {
    font-family: Georgia, serif;

    color: var(--primary-dark);

    font-size: 20px;

    max-width: 180px;

    margin-bottom: 8px;
}

.promo-card p {
    font-size: 12px;
    color: #666;

    max-width: 180px;

    line-height: 1.5;

    margin-bottom: 15px;
}

.promo-card img {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 50%;
    height: 100%;

    object-fit: cover;

    mix-blend-mode: multiply;
}

/* =====================================================
   MOBILE CATEGORY
===================================================== */

.mobile-categories {
    display: none;

    overflow-x: auto;

    gap: 12px;

    padding: 5px 0 10px;

    scrollbar-width: none;
}

.mobile-categories::-webkit-scrollbar {
    display: none;
}

.mobile-category {
    flex-shrink: 0;

    text-align: center;

    font-size: 11px;
    color: var(--text);
}

.mobile-category-icon {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto auto 6px;

    font-size: 20px;
}

/* =====================================================
   PRODUCT DETAIL PAGE
===================================================== */

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-top: 20px;
}

.product-detail-img {
    background: transparent;
}

.product-detail-info h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text);
}

.product-detail-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-soft);
}

.product-detail-price {
    font-size: 30px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-detail-desc {
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-size: 14px;
}

.product-detail-actions {
    display: flex;
    gap: 15px;
}

.btn-card-detail:hover {
    background: #f1f5f9 !important;
    border-color: #94a3b8 !important;
}

.btn-card-pesan:hover {
    background: #0f2421 !important;
    transform: translateY(-1px);
}

.btn-pesan-whatsapp-pill:hover {
    background: #16a34a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45) !important;
}

.share-btn:hover {
    transform: translateY(-2px) scale(1.08);
    background: var(--primary) !important;
}

/* PRODUCT SEO ARTICLE FULL 12 COLUMNS */
.product-seo-full-card {
    transition: box-shadow 0.2s ease;
}

.product-seo-rich-content h2,
.product-seo-rich-content h3,
.product-seo-rich-content h4 {
    color: #0f172a;
    font-family: var(--font-sans);
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-seo-rich-content h2 { font-size: 17px; }
.product-seo-rich-content h3 { font-size: 15px; }

.product-seo-rich-content p {
    margin-bottom: 12px;
    line-height: 1.8;
}

.product-seo-rich-content ul,
.product-seo-rich-content ol {
    margin-bottom: 14px;
    padding-left: 24px;
}

.product-seo-rich-content li {
    margin-bottom: 6px;
    line-height: 1.7;
}

.product-seo-rich-content strong {
    color: #0f172a;
}

.product-seo-rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.product-seo-rich-content th,
.product-seo-rich-content td {
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
}

.product-seo-rich-content th {
    background: #f8fafc;
    font-weight: 600;
    color: #334155;
}

/* =====================================================
   PAGINATION
===================================================== */

.pagination-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

/* =====================================================
   CATEGORY SEO ARTICLE SECTION
===================================================== */

.category-seo-section {
    margin-top: 45px;
    background: #ffffff;
    border: 1px solid #e5ebe7;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.category-seo-content {
    max-height: 220px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}

.category-seo-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.category-seo-content.expanded {
    max-height: 3000px;
}

.category-seo-content.expanded::after {
    opacity: 0;
}

.category-seo-content h2 {
    font-family: Georgia, serif;
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.category-seo-content h3 {
    font-size: 15px;
    color: var(--primary-dark);
    margin: 20px 0 8px;
    font-weight: 600;
}

.category-seo-content p {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 12px;
}

.category-seo-content ul,
.category-seo-content ol {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.8;
    padding-left: 22px;
    margin-bottom: 15px;
}

.category-seo-content li {
    margin-bottom: 6px;
}

.category-seo-content strong {
    color: #1f2937;
}

.seo-faq-item {
    background: #f8faf9;
    border-left: 3px solid var(--primary);
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.seo-faq-item strong {
    display: block;
    font-size: 13.5px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.seo-faq-item p {
    margin-bottom: 0;
    font-size: 13px;
    color: #4b5563;
}

.seo-readmore-wrapper {
    margin-top: 15px;
    text-align: center;
    border-top: 1px dashed #e5ebe7;
    padding-top: 15px;
}

.seo-readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid var(--border);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.04);
    transition: all 0.2s ease;
}

.seo-readmore-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.seo-readmore-btn svg {
    transition: transform 0.3s ease;
}

.seo-readmore-btn.active svg {
    transform: rotate(180deg);
}

/* =====================================================
   TOAST NOTIFICATION
===================================================== */

.toast-box {
    position: fixed;
    bottom: 80px;
    right: 25px;
    background: #1e293b;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-size: 13px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.toast-box.show {
    opacity: 1;
    transform: translateY(0);
}

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

footer {
    background: #064d2b;
    color: white;

    margin-top: 50px;

    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr 1.5fr;

    gap: 40px;
}

.footer-logo {
    font-family: Georgia, serif;
    font-size: 30px;
    margin-bottom: 10px;
}

.footer-description {
    color: #d8eee0;
    font-size: 13px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #d8eee0;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,.15);

    margin-top: 35px;
    padding-top: 20px;

    font-size: 12px;
    color: #c9e5d4;
}

/* =====================================================
   MOBILE BOTTOM NAV
===================================================== */

.mobile-bottom-nav {
    display: none;
}

.hamburger {
    display: none;

    border: 0;
    background: transparent;

    font-size: 24px;

    cursor: pointer;
}

/* =====================================================
   RESPONSIVE TABLET
===================================================== */

@media (max-width: 1100px) {

    .featured-collections-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .header-main {
        gap: 15px;
    }

    .logo {
        width: 150px;
    }

    .nav-container {
        gap: 20px;
    }

    .page-layout {
        grid-template-columns: 180px 1fr;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    body {
        padding-bottom: 65px;
    }

    .container {
        width: calc(100% - 24px);
    }

    /* TOP BAR */

    .top-bar {
        height: 32px;
        padding: 0 12px;
        font-size: 10px;
    }

    .top-right {
        display: none;
    }

    /* HEADER */

    header {
        position: sticky;
        top: 0;
    }

    .header-main {
        height: auto;

        display: grid;

        grid-template-columns:
            auto 1fr auto;

        gap: 12px;

        padding: 12px 0;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        color: #1e293b;
        cursor: pointer;
        padding: 0;
        transition: all 0.2s ease;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
        flex-shrink: 0;
    }

    .hamburger:hover,
    .hamburger:active {
        background: #f8fafc;
        border-color: #cbd5e1;
        color: var(--primary);
    }

    .hamburger svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
    }

    .logo {
        width: auto;
    }

    .logo-main {
        font-size: 23px;
    }

    .logo-small {
        font-size: 9px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-action {
        font-size: 0;
    }

    .header-icon {
        font-size: 21px;
        margin: 0;
    }

    .search-box {
        grid-column: 1 / -1;
        grid-row: 2;

        height: 42px;
    }

    .search-btn {
        width: 60px;
        font-size: 12px;
    }

    /* DESKTOP NAV HIDDEN */

    .navigation {
        display: none;
    }

    /* PAGE */

    .page-layout {
        display: block;

        padding-top: 12px;
    }

    /* SIDEBAR HIDDEN */

    .sidebar {
        display: none;
    }

    /* MOBILE CATEGORY */

    .mobile-categories {
        display: flex;
    }

    /* HERO */

    .hero {
        min-height: 410px;

        display: block;

        margin-top: 8px;
    }

    .hero-content {
        width: 100%;
        padding: 25px 20px;

        position: relative;

        z-index: 3;
    }

    .hero h1 {
        font-size: 34px;

        max-width: 220px;
    }

    .hero h2 {
        font-size: 19px;
        max-width: 230px;
    }

    .hero p {
        max-width: 230px;
        font-size: 12px;
    }

    .hero-image {
        width: 100%;
        height: 58%;

        top: auto;
        bottom: 0;

        object-position: center;
    }

    /* FEATURES */

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

        margin-top: 10px;
    }

    .feature {
        padding: 13px 10px;

        border-bottom: 1px solid var(--border);
    }

    .feature:nth-child(2) {
        border-right: 0;
    }

    .feature:nth-child(4) {
        border-right: 0;
    }

    .feature:nth-child(5) {
        grid-column: 1 / -1;
        border-right: 0;
    }

    /* FEATURED COLLECTIONS MOBILE */
    .featured-collections-title {
        font-size: 22px;
    }

    .featured-collections-subtitle {
        font-size: 12px;
    }

    .featured-collections-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 5px 2px 10px;
    }

    .collection-card {
        min-width: 190px;
        max-width: 210px;
        flex-shrink: 0;
    }

    .collection-slider-btn {
        display: none;
    }

    /* PRODUCTS */

    .section {
        margin-top: 25px;
    }

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

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

        gap: 10px;
    }

    .product-info {
        padding: 9px;
    }

    .product-name {
        font-size: 12px;
    }

    .product-material {
        font-size: 10px;
    }

    .price {
        font-size: 14px;
    }

    /* PROMO */

    .promo-grid {
        display: flex;

        overflow-x: auto;

        scrollbar-width: none;
    }

    .promo-grid::-webkit-scrollbar {
        display: none;
    }

    .promo-card {
        min-width: 280px;
    }

    /* PRODUCT DETAIL */

    .product-detail-layout {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    /* FOOTER */

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

        gap: 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    /* BOTTOM NAV */

    .mobile-bottom-nav {
        position: fixed;

        bottom: 0;
        left: 0;
        right: 0;

        height: 62px;

        background: white;

        border-top: 1px solid #ddd;

        display: grid;

        grid-template-columns:
            repeat(5, 1fr);

        z-index: 9999;
    }

    .bottom-item {
        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        font-size: 10px;

        color: #777;

        gap: 4px;
    }

    .bottom-item span:first-child {
        font-size: 20px;
    }

    .bottom-item.active {
        color: var(--primary);
    }

    /* SCROLL TO TOP MOBILE */
    .scroll-to-top {
        bottom: 76px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .hero {
        min-height: 390px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .product-grid {
        gap: 8px;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-info {
        padding: 8px;
    }

    .rating {
        font-size: 9px;
    }

    .cart-btn {
        width: 29px;
        height: 29px;
    }
}

/* =====================================================
   TRI-PILLARS & 3 MESIN BISNIS STYLES
===================================================== */

.hero-cta-group {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.btn-outline-hero {
    background: white !important;
    color: var(--primary-dark) !important;
    border: 1.5px solid var(--primary) !important;
}

.btn-outline-hero:hover {
    background: var(--primary-light) !important;
}

.tri-pillars-section {
    margin-top: 25px;
    margin-bottom: 25px;
}

.tri-pillars-header {
    text-align: center;
    margin-bottom: 18px;
}

.tri-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--primary);
    text-transform: uppercase;
}

.tri-title {
    font-family: Georgia, serif;
    font-size: 22px;
    color: var(--primary-dark);
    margin-top: 4px;
}

.tri-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pillar-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    border-color: #cbd5e1;
}

.pillar-custom {
    border: 2px solid #00aa5b;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.pillar-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.pillar-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    background: #e2e8f0;
    color: #475569;
}

.pillar-badge.badge-accent {
    background: #fee2e2;
    color: #dc2626;
}

.pillar-badge.badge-gold {
    background: #fef08a;
    color: #854d0e;
}

.pillar-heading {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 700;
}

.pillar-text {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.pillar-btn {
    display: block;
    text-align: center;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.pillar-btn:hover {
    background: var(--primary);
    color: white;
}

.pillar-btn-gold {
    background: var(--primary);
    color: white;
}

.pillar-btn-gold:hover {
    background: var(--primary-dark);
}

/* FINDER TEASER */
.finder-teaser-box {
    background: linear-gradient(135deg, #00aa5b 0%, #008f4c 100%);
    border-radius: var(--radius);
    padding: 24px 28px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 18px rgba(0, 170, 91, 0.2);
}

.finder-teaser-content h2 {
    font-family: Georgia, serif;
    font-size: 22px;
    margin: 6px 0;
}

.finder-teaser-content p {
    font-size: 13px;
    opacity: 0.9;
    max-width: 500px;
}

.finder-teaser-btn {
    background: white !important;
    color: var(--primary-dark) !important;
    font-weight: 700;
    white-space: nowrap;
    padding: 12px 22px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.finder-teaser-btn:hover {
    background: #f8fafc !important;
    transform: translateY(-2px);
}

/* CUSTOM SHOWCASE CARD */
.custom-showcase-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.custom-showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
}

.custom-badge-pill {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 8px;
}

.custom-showcase-title {
    font-family: Georgia, serif;
    font-size: 23px;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 10px;
}

.custom-showcase-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.custom-feature-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
}

.preview-mini-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.preview-tag {
    font-size: 10px;
    font-weight: 700;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.preview-mini-card h4 {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 12px;
}

.preview-specs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    color: var(--text-soft);
    padding-bottom: 12px;
    border-bottom: 1px dashed #cbd5e1;
    margin-bottom: 12px;
}

.preview-specs strong {
    color: var(--text);
}

.preview-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.preview-price-row strong {
    font-size: 18px;
    color: var(--primary-dark);
}

/* PRODUCTION STORYTELLING */
.production-story-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.production-story-header {
    text-align: center;
    margin-bottom: 25px;
}

.production-flow-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.flow-step-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-step-icon {
    font-size: 26px;
    margin-bottom: 8px;
}

.flow-step-item strong {
    font-size: 12px;
    color: var(--text);
    margin-bottom: 4px;
    display: block;
}

.flow-step-item small {
    font-size: 10px;
    color: var(--text-soft);
    line-height: 1.3;
}

/* =====================================================
   CUSTOM BUILDER PAGE (/custom-mukena)
===================================================== */

.custom-hero-banner {
    background: linear-gradient(135deg, #00aa5b 0%, #00703c 100%);
    border-radius: var(--radius);
    padding: 35px 30px;
    color: white;
    margin-bottom: 25px;
}

.custom-badge {
    font-size: 11px;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.custom-hero-title {
    font-family: Georgia, serif;
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.custom-hero-subtitle {
    font-size: 14px;
    opacity: 0.92;
    max-width: 650px;
    line-height: 1.7;
}

.custom-builder-container {
    margin-bottom: 40px;
}

.builder-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 25px;
    align-items: start;
}

.builder-controls {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.builder-step {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-title {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 3px;
}

.step-desc {
    font-size: 12px;
    color: var(--text-soft);
}

.option-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.custom-card-option {
    position: relative;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
    background: #ffffff;
}

.custom-card-option input {
    position: absolute;
    opacity: 0;
}

.custom-card-option:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.custom-card-option.active {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 1px var(--primary);
}

.card-option-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.card-option-header strong {
    font-size: 14px;
    color: var(--text);
}

.option-price, .option-addon-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
}

.option-summary {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.5;
    margin-bottom: 8px;
}

.tag-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    background: #e2e8f0;
    border-radius: 10px;
    color: #475569;
}

.tag-badge.tag-gold {
    background: #fef08a;
    color: #854d0e;
}

.color-palette-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.color-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.color-choice input {
    position: absolute;
    opacity: 0;
}

.color-choice:hover {
    border-color: #cbd5e1;
}

.color-choice.active {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 1px var(--primary);
}

.color-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: block;
}

.color-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

.addons-grid {
    display: grid;
    gap: 10px;
}

.addon-checkbox-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.addon-checkbox-card input {
    margin-top: 3px;
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.addon-checkbox-card.active {
    border-color: var(--primary);
    background: var(--primary-light);
}

.addon-card-content {
    flex: 1;
}

.addon-title-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
}

.addon-card-content p {
    font-size: 12px;
    color: var(--text-soft);
    margin: 0;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.custom-form-fields {
    display: grid;
    gap: 12px;
}

.custom-form-fields label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.custom-form-fields input,
.custom-form-fields textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    outline: none;
    font-size: 13px;
}

.custom-form-fields input:focus,
.custom-form-fields textarea:focus {
    border-color: var(--primary);
}

/* BUILDER SUMMARY SIDEBAR */
.builder-summary-sidebar {
    position: sticky;
    top: 155px;
}

.summary-card {
    background: white;
    border: 1.5px solid #00aa5b;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.summary-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.summary-heading {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    gap: 8px;
}

.sum-label {
    color: var(--text-soft);
}

.sum-val {
    color: var(--text);
    text-align: right;
}

.summary-price-box {
    background: var(--primary-light);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    margin-bottom: 16px;
}

.summary-price-box span {
    font-size: 11px;
    color: var(--text-soft);
}

.total-estimated-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 4px 0;
}

.summary-price-box small {
    font-size: 10px;
    color: #64748b;
    display: block;
    line-height: 1.3;
}

.btn-custom-submit {
    width: 100%;
    padding: 13px 16px;
    border: none;
    border-radius: 10px;
    background: #25d366;
    color: white;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-custom-submit:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.btn-custom-submit:active {
    transform: scale(0.98);
}

.summary-guarantee {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.guarantee-item {
    font-size: 11px;
    color: #475569;
}

.custom-workflow-section {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    margin-top: 30px;
}

.workflow-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.workflow-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 16px;
    position: relative;
}

.wf-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.6;
    margin-bottom: 6px;
}

.workflow-card h4 {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 4px;
}

.workflow-card p {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.5;
    margin: 0;
}

/* =====================================================
   RESELLER & PROFIT SIMULATOR STYLES
===================================================== */

.reseller-hero-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: var(--radius);
    padding: 35px 30px;
    color: white;
    margin-bottom: 25px;
}

.reseller-tag {
    font-size: 11px;
    font-weight: 700;
    background: rgba(255,255,255,0.15);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    color: #fef08a;
}

.reseller-title {
    font-family: Georgia, serif;
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.reseller-subtitle {
    font-size: 14px;
    opacity: 0.9;
    max-width: 650px;
    line-height: 1.7;
}

.reseller-models-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.model-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    position: relative;
}

.model-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 8px;
}

.model-title {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 8px;
}

.model-desc {
    font-size: 12.5px;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 14px;
}

.model-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.model-benefits li {
    font-size: 12.5px;
    color: #334155;
    font-weight: 500;
}

.profit-calculator-card {
    background: white;
    border: 1.5px solid #f59e0b;
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.08);
}

.calc-header {
    text-align: center;
    margin-bottom: 20px;
}

.calc-badge {
    font-size: 11px;
    font-weight: 700;
    background: #fef3c7;
    color: #b45309;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
}

.calc-header h2 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.calc-header p {
    font-size: 13px;
    color: var(--text-soft);
}

.calc-slider-wrapper {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.slider-label-row strong {
    font-size: 18px;
    color: var(--primary-dark);
}

.profit-range-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #cbd5e1;
    outline: none;
    accent-color: var(--primary);
    cursor: pointer;
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 6px;
}

.calc-results-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 14px;
}

.result-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-box.highlight-box {
    background: #f0fdf4;
    border-color: #86efac;
}

.res-title {
    font-size: 12px;
    color: var(--text-soft);
    margin-bottom: 4px;
}

.res-value {
    font-size: 16px;
    color: var(--text);
}

.profit-amount {
    font-size: 24px !important;
    font-weight: 800;
    color: var(--primary-dark);
}

.reseller-price-table-section {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
}

.table-responsive {
    overflow-x: auto;
}

.reseller-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}

.reseller-table th, .reseller-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #f1f5f9;
}

.reseller-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
}

.badge-profit {
    background: #dcfce7;
    color: #166534;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
}

.starter-kit-section {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
}

.starter-kit-header {
    text-align: center;
    margin-bottom: 20px;
}

.starter-badge {
    font-size: 11px;
    font-weight: 700;
    background: #e9f8f0;
    color: var(--primary-dark);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
}

.starter-kit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.kit-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
}

.kit-icon {
    font-size: 26px;
    margin-bottom: 8px;
}

.kit-item h4 {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 4px;
}

.kit-item p {
    font-size: 11px;
    color: var(--text-soft);
    line-height: 1.4;
    margin: 0;
}

.reseller-form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
}

/* =====================================================
   MUKENA FINDER QUIZ STYLES (/mukena-finder)
===================================================== */

.finder-hero-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 20px;
}

.finder-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.finder-title {
    font-family: Georgia, serif;
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.finder-subtitle {
    font-size: 13.5px;
    color: var(--text-soft);
    line-height: 1.6;
}

.finder-quiz-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    min-height: 380px;
}

.quiz-progress-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 25px;
}

.progress-step {
    padding: 8px 12px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s ease;
}

.progress-step.active {
    background: var(--primary);
    color: white;
}

.progress-step.completed {
    background: #dcfce7;
    color: #166534;
}

.quiz-step-pane {
    display: none;
}

.quiz-step-pane.active {
    display: block;
}

.quiz-question {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 18px;
    font-family: Georgia, serif;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.quiz-opt-btn {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quiz-opt-btn:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.opt-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.quiz-opt-btn strong {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 4px;
}

.quiz-opt-btn small {
    font-size: 11px;
    color: var(--text-soft);
    line-height: 1.3;
}

.btn-quiz-back {
    background: transparent;
    border: 1px solid #cbd5e1;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    color: #64748b;
    cursor: pointer;
}

.btn-quiz-back:hover {
    background: #f1f5f9;
}

.quiz-results-pane {
    animation: fadeIn 0.4s ease;
}

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

.results-header {
    text-align: center;
    margin-bottom: 25px;
}

.results-header h2 {
    font-family: Georgia, serif;
    font-size: 22px;
    color: var(--primary-dark);
    margin: 8px 0 4px;
}

.results-header p {
    font-size: 13px;
    color: var(--text-soft);
}

.recommended-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 25px;
}

.results-action-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 900px) {
    .tri-pillars-grid {
        grid-template-columns: 1fr;
    }
    .builder-layout {
        grid-template-columns: 1fr;
    }
    .builder-summary-sidebar {
        position: static;
    }
    .custom-showcase-grid {
        grid-template-columns: 1fr;
    }
    .production-flow-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .starter-kit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quiz-options-grid {
        grid-template-columns: 1fr 1fr;
    }
    .recommended-products-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .finder-teaser-box {
        flex-direction: column;
        text-align: center;
    }
    .option-grid-2,
    .color-palette-grid,
    .reseller-models-grid,
    .calc-results-grid,
    .form-group-row,
    .workflow-steps-grid {
        grid-template-columns: 1fr;
    }
    .quiz-options-grid {
        grid-template-columns: 1fr;
    }
    .recommended-products-grid {
        grid-template-columns: 1fr;
    }
    .production-flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

