﻿/* css milik onvonic dev */

/* ============================================================
   OCEAN BREEZE — COLOR SYSTEM (v2 — warna diperbarui)
   Prefix: --oec-
   ============================================================ */
:root {

  /* ---------- PRIMARY (biru) ---------- */
  --oec-primary:          #1469ae;
  --oec-primary-dark:     #0a1f4a;
  --oec-primary-light:    #e8eef8;
  --oec-primary-hover:    #0e2a60;
  --oec-primary-active:   #0b2250;
  --oec-primary-contrast: #ffffff;

  /* ---------- SECONDARY (aksen emas) ---------- */
  --oec-secondary:          #E8920A;
  --oec-secondary-dark:     #a85e00;
  --oec-secondary-light:    #fff8ed;
  --oec-secondary-hover:    #d07d00;
  --oec-secondary-active:   #a85e00;
  --oec-secondary-contrast: #ffffff;

  /* ---------- DANGER ---------- */
  --oec-danger:          #e53e3e;
  --oec-danger-dark:     #c53030;
  --oec-danger-light:    #fff5f5;
  --oec-danger-hover:    #c53030;
  --oec-danger-active:   #9b2c2c;
  --oec-danger-contrast: #ffffff;

  /* ---------- WARNING ---------- */
  --oec-warning:          #f6c90e;
  --oec-warning-dark:     #b7950b;
  --oec-warning-light:    #fffbea;
  --oec-warning-hover:    #d4aa0c;
  --oec-warning-active:   #a8870a;
  --oec-warning-contrast: #1a1a1a;

  /* ---------- INFO ---------- */
  --oec-info:          #3182ce;
  --oec-info-dark:     #1a5fa8;
  --oec-info-light:    #ebf8ff;
  --oec-info-hover:    #2b6cb0;
  --oec-info-active:   #2c5282;
  --oec-info-contrast: #ffffff;

  /* ---------- SUCCESS ---------- */
  --oec-success:          #38a169;
  --oec-success-dark:     #276749;
  --oec-success-light:    #f0fff4;
  --oec-success-hover:    #2f855a;
  --oec-success-active:   #276749;
  --oec-success-contrast: #ffffff;

  /* ---------- NEUTRAL / SURFACE ---------- */
  --oec-dark:         #0d1a2e;
  --oec-bg:           #f6f8fb;
  --oec-surface:      #ffffff;
  --oec-surface-alt:  #f0f4f8;
  --oec-border:       #dce3ec;
  --oec-border-dark:  #c2cdd9;

  /* ---------- TEXT ---------- */
  --oec-text:         #0d1a2e;
  --oec-text-muted:   #506070;
  --oec-text-light:   #ffffff;
  --oec-text-inverse: #ffffff;

  /* ---------- OVERLAY ---------- */
  --oec-overlay:      rgba(26, 58, 92, 0.55);
  --oec-overlay-sm:   rgba(26, 58, 92, 0.25);

  /* ---------- LAYOUT ---------- */
  --oec-max-width:    1280px;
  --oec-nav-h:        64px;
  --oec-topnav-h:     36px;

  /* ---------- RADIUS ---------- */
  --oec-radius-sm:    4px;
  --oec-radius:       8px;
  --oec-radius-lg:    12px;

  /* ---------- SHADOW ---------- */
  --oec-shadow-sm:    0 1px 4px rgba(0,0,0,.08);
  --oec-shadow:       0 4px 16px rgba(0,0,0,.12);

  /* ---------- TRANSITION ---------- */
  --oec-transition:   180ms ease;

  /* ---------- Z-INDEX ---------- */
  --oec-z-topnav:     100;
  --oec-z-nav:        110;
  --oec-z-dropdown:   200;
  --oec-z-search-mob: 130;
}

/* ============================================================
   RESET MINIMAL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: var(--oec-text); background: var(--oec-surface); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
img { display: block; max-width: 100%; }

/* ============================================================
   CONTAINER
   ============================================================ */
.oec-container {
    width: 100%;
    max-width: var(--oec-max-width);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

@media (max-width: 767px) {
    .oec-container { padding-inline: .875rem; }
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.oec-skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: .5rem 1rem;
    background: var(--oec-primary);
    color: var(--oec-primary-contrast);
    border-radius: var(--oec-radius-sm);
    font-size: .875rem;
    font-weight: 600;
    z-index: 9999;
    transition: top var(--oec-transition);
}
.oec-skip-link:focus { top: .75rem; }

/* ============================================================
   TOPNAV
   ============================================================ */
#oec-topnav {
    background: var(--oec-primary);
    border-bottom: 1px solid var(--oec-primary-hover);
    height: var(--oec-topnav-h);
    position: relative;
    z-index: var(--oec-z-topnav);
    overflow: visible;
}
.oec-topnav-inner {
    max-width: var(--oec-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.oec-topnav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.oec-topnav-link {
    font-size: .8125rem;
    color: var(--oec-text-light);
    transition: color var(--oec-transition);
}
.oec-topnav-link:hover { color: rgba(255,255,255,.75); }

/* account dropdown */
.oec-topnav-account { position: relative; }
.oec-topnav-account-btn {
    display: flex;
    align-items: center;
    gap: .375rem;
    font-size: .8125rem;
    color: var(--oec-text-light);
    transition: color var(--oec-transition);
}
.oec-topnav-account-btn:hover { color: rgba(255,255,255,.75); }
.oec-topnav-chevron {
    font-size: .65rem;
    transition: transform var(--oec-transition);
}
.oec-topnav-account-btn[aria-expanded="true"] .oec-topnav-chevron { transform: rotate(180deg); }

.oec-topnav-dropdown {
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    min-width: 160px;
    background: var(--oec-surface);
    border: 1px solid var(--oec-border);
    border-radius: var(--oec-radius);
    box-shadow: var(--oec-shadow);
    z-index: var(--oec-z-dropdown);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--oec-transition), transform var(--oec-transition);
}
.oec-topnav-dropdown.oec--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.oec-topnav-dropdown-item {
    display: block;
    padding: .625rem 1rem;
    font-size: .875rem;
    color: var(--oec-text);
    transition: background var(--oec-transition), color var(--oec-transition);
}
.oec-topnav-dropdown-item:hover {
    background: var(--oec-primary-light);
    color: var(--oec-primary-dark);
}

/* hide topnav on mobile */
@media (max-width: 767px) { #oec-topnav { display: none; height: 0; } }

/* ============================================================
   NAVBAR
   ============================================================ */
#oec-header {
    position: sticky;
    top: 0;
    z-index: var(--oec-z-nav);
    background: var(--oec-surface);
    border-bottom: 1px solid var(--oec-border);
    box-shadow: var(--oec-shadow-sm);
    overflow: visible;
    width: 100%;
}
@media (max-width: 767px) {
    #oec-header { position: fixed; top: 0 !important; }
    #oec-main { padding-top: var(--oec-nav-h) !important; }
}

#oec-nav { position: relative; }

.oec-nav-inner {
    max-width: var(--oec-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: var(--oec-nav-h);
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* --- Logo --- */
.oec-nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.oec-nav-logo-img { height: 36px; width: auto; }

@media (max-width: 767px) {
    .oec-nav-logo-img { height: 30px; }
}

/* --- Search (desktop) --- */
.oec-nav-search {
    flex: 1;
    max-width: 600px;
}
.oec-nav-search-box {
    display: flex;
    align-items: stretch;
    height: 42px;
    border: 1.5px solid var(--oec-border-dark);
    border-radius: var(--oec-radius);
    overflow: hidden;
    transition: border-color var(--oec-transition), box-shadow var(--oec-transition);
}
.oec-nav-search-box:focus-within {
    border-color: var(--oec-primary);
    box-shadow: 0 0 0 3px var(--oec-primary-light);
}

.oec-nav-search-category {
    position: relative;
    display: flex;
    align-items: center;
    border-right: 1.5px solid var(--oec-border-dark);
    background: var(--oec-surface-alt);
    flex-shrink: 0;
}
.oec-nav-search-select {
    appearance: none;
    border: none;
    background: transparent;
    padding: 0 2rem 0 .75rem;
    font-size: .8125rem;
    color: var(--oec-text);
    cursor: pointer;
    height: 100%;
    font-family: inherit;
    outline: none;
}
.oec-nav-search-cat-icon {
    position: absolute;
    right: .5rem;
    font-size: .65rem;
    pointer-events: none;
    color: var(--oec-text-muted);
}

.oec-nav-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 .75rem;
    font-size: .9375rem;
    color: var(--oec-text);
    background: var(--oec-surface);
    font-family: inherit;
}
.oec-nav-search-input::placeholder { color: var(--oec-text-muted); }

.oec-nav-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    background: var(--oec-primary);
    color: var(--oec-primary-contrast);
    transition: background var(--oec-transition);
    flex-shrink: 0;
}
.oec-nav-search-btn:hover { background: var(--oec-primary-hover); }

/* --- CTA buttons (desktop) --- */
.oec-nav-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
    margin-left: auto;
}
.oec-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0 1.25rem;
    height: 40px;
    border-radius: var(--oec-radius);
    font-size: .9rem;
    font-weight: 700;
    background: var(--oec-secondary);
    color: var(--oec-secondary-contrast);
    transition: background var(--oec-transition);
    white-space: nowrap;
}
.oec-nav-cta:hover { background: var(--oec-secondary-hover); }
.oec-nav-cta--secondary { background: var(--oec-secondary); color: #fff; }
.oec-nav-cta--secondary:hover { background: var(--oec-secondary-hover); }
.oec-nav-cta--wa { background: #16a34a; gap: .4rem; }
.oec-nav-cta--wa:hover { background: #15803d; }
.oec-nav-cta--catalog { background: var(--oec-primary); color: #fff; gap: .4rem; }
.oec-nav-cta--catalog:hover { background: var(--oec-primary-dark, #122b47); }

/* --- Mobile icons --- */
.oec-nav-mobile-icons { display: none; }
.oec-nav-hamburger  { display: none; }

/* ============================================================
   RESPONSIVE — TABLET MD (768px – 1023px)
   ============================================================ */
@media (min-width: 768px) and (max-width: 1023px) {

    .oec-nav-inner { gap: .5rem; }

    /* Search lebih sempit supaya tidak dorong CTA buttons */
    .oec-nav-search { max-width: 300px; }

    /* Kurangi padding CTA dan font agar muat di layar sempit */
    .oec-nav-cta { padding: 0 .75rem; font-size: .825rem; gap: .3rem; }

    /* Sembunyikan tombol Login — sudah ada di topnav My Account */
    .oec-nav-cta--secondary { display: none; }
}

.oec-nav-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--oec-text);
    transition: background var(--oec-transition), border-color var(--oec-transition);
}
.oec-nav-icon-btn:hover { background: var(--oec-primary-light); }

a.oec-nav-icon-btn {
    border: 1.5px solid var(--oec-border-dark);
}
a.oec-nav-icon-btn:hover { border-color: var(--oec-primary); background: var(--oec-primary-light); }
.oec-nav-icon-btn:hover { background: var(--oec-primary-light); }

.oec-nav-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 9px;
    background: var(--oec-danger);
    color: #fff;
    font-size: .6875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.oec-nav-cart-badge[data-count="0"] { display: none; }

/* --- Mobile search bar --- */
.oec-nav-search-mobile {
    display: none;
    align-items: center;
    gap: .5rem;
    padding: .625rem 1rem;
    background: var(--oec-surface);
    border-top: 1px solid var(--oec-border);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: var(--oec-z-nav);
}
.oec-nav-search-mobile.oec--open { display: flex; }
.oec-nav-search-mobile-input {
    flex: 1;
    height: 40px;
    padding: 0 .75rem;
    border: 1.5px solid var(--oec-border-dark);
    border-radius: var(--oec-radius);
    font-size: .9375rem;
    font-family: inherit;
    color: var(--oec-text);
    outline: none;
    transition: border-color var(--oec-transition), box-shadow var(--oec-transition);
}
.oec-nav-search-mobile-input:focus {
    border-color: var(--oec-primary);
    box-shadow: 0 0 0 3px var(--oec-primary-light);
}
.oec-nav-search-mobile-btn,
.oec-nav-search-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--oec-radius-sm);
    color: var(--oec-text-muted);
    transition: background var(--oec-transition), color var(--oec-transition);
    flex-shrink: 0;
}
.oec-nav-search-mobile-btn { background: var(--oec-primary); color: #fff; }
.oec-nav-search-mobile-btn:hover { background: var(--oec-primary-hover); }
.oec-nav-search-mobile-close:hover { background: var(--oec-surface-alt); color: var(--oec-danger); }

/* ============================================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================================ */
@media (max-width: 767px) {

    .oec-nav-inner { padding: 0 .875rem; gap: .375rem; }

    /* show hamburger */
    .oec-nav-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        font-size: 1rem;
        color: var(--oec-text);
        border-radius: var(--oec-radius-sm);
        transition: background var(--oec-transition);
    }
    .oec-nav-hamburger:hover { background: var(--oec-primary-light); }

    .oec-nav-logo { flex: 1; display: flex; justify-content: flex-start; }

    /* hide desktop elements */
    .oec-nav-search  { display: none; }
    .oec-nav-actions { display: none; }

    /* show mobile icons */
    .oec-nav-mobile-icons {
        display: flex;
        align-items: center;
        gap: .25rem;
        margin-left: auto;
    }

    /* mobile search bar */
    .oec-nav-search-mobile { display: none; }
    .oec-nav-search-mobile.oec--open { display: flex; }

}

/* ============================================================
   HERO
   ============================================================ */
#oec-hero {
    background: linear-gradient(135deg, #c8e9fb 0%, #dff1fd 60%, #edf7fe 100%);
    padding: 5rem 0 3rem;
    overflow: hidden;
    border-bottom: 1px solid var(--oec-border);
    max-width: 100%;
}

.oec-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

/* --- Badge --- */
.oec-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .875rem;
    background: var(--oec-primary);
    color: #fff;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 1.25rem;
}
.oec-hero-badge i { font-size: .75rem; }

/* --- Title --- */
.oec-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--oec-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -.02em;
}
.oec-hero-title-accent { color: var(--oec-secondary); }

/* --- Description --- */
.oec-hero-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--oec-text-muted);
    max-width: 480px;
    margin-bottom: 2rem;
}

/* --- Buttons --- */
.oec-hero-actions {
    display: flex;
    align-items: center;
    gap: .875rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.oec-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.75rem;
    border-radius: var(--oec-radius);
    font-size: .9375rem;
    font-weight: 700;
    transition: background var(--oec-transition), color var(--oec-transition),
                box-shadow var(--oec-transition), transform var(--oec-transition);
}
.oec-hero-btn:hover { transform: translateY(-2px); }

.oec-hero-btn--primary {
    background: #16a34a;
    color: #fff;
    box-shadow: 0 4px 16px rgba(22,163,74,.30);
}
.oec-hero-btn--primary:hover {
    background: #15803d;
    box-shadow: 0 6px 20px rgba(22,163,74,.42);
}
.oec-hero-btn--outline {
    background: transparent;
    color: var(--oec-dark);
    border: 2px solid var(--oec-border-dark);
}
.oec-hero-btn--outline:hover {
    border-color: var(--oec-primary);
    color: var(--oec-primary-dark);
    background: var(--oec-primary-light);
}

/* --- Stats --- */
.oec-hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.oec-hero-stat {
    display: flex;
    flex-direction: column;
    gap: .125rem;
}
.oec-hero-stat strong {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--oec-dark);
    line-height: 1;
}
.oec-hero-stat span {
    font-size: .8rem;
    color: var(--oec-text-muted);
    font-weight: 500;
}
.oec-hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--oec-border-dark);
    flex-shrink: 0;
}

/* --- Visual / Image --- */
.oec-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.oec-hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 1rem;
}
.oec-hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.1));
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .oec-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .oec-hero-desc { max-width: 100%; }
    .oec-hero-actions { justify-content: center; }
    .oec-hero-stats { justify-content: center; gap: 1rem; }
    .oec-hero-visual { order: -1; }
    .oec-hero-img-wrap { max-width: 260px; padding: 1rem; margin: 0 auto; }
    #oec-hero { padding: 2rem 0; overflow: hidden; }
}
@media (max-width: 480px) {
    .oec-hero-stat-divider { display: none; }
    .oec-hero-stats { gap: .75rem 1.5rem; }
    .oec-hero-stat { min-width: 70px; }
    .oec-hero-img-wrap { max-width: 200px; }
    .oec-hero-title { font-size: 1.75rem; }
    .oec-hero-desc { font-size: .9375rem; }
    .oec-hero-btn { padding: .7rem 1.25rem; font-size: .875rem; }
}

/* ============================================================
   SECTION HEADER (reusable)
   ============================================================ */
.oec-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.oec-section-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--oec-dark);
    line-height: 1.2;
    letter-spacing: -.02em;
}
.oec-section-sub {
    font-size: .875rem;
    color: var(--oec-text-muted);
    margin-top: .25rem;
}
.oec-section-link {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--oec-primary-dark);
    white-space: nowrap;
    transition: gap var(--oec-transition), color var(--oec-transition);
    flex-shrink: 0;
}
.oec-section-link:hover { gap: .625rem; color: var(--oec-primary); }

/* ============================================================
   CATEGORIES
   ============================================================ */
#oec-categories {
    padding: 2rem 0 2.5rem;
    background: transparent;
    overflow: hidden;
}

#oec-categories .oec-container {
    overflow: visible;
}

.oec-cat-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: .25rem;
    margin-right: -1.5rem;
    padding-right: 1.5rem;
}
.oec-cat-track::-webkit-scrollbar { display: none; }

@media (max-width: 767px) {
    .oec-cat-track { margin-right: -.875rem; padding-right: .875rem; }
}

.oec-cat-card {
    scroll-snap-align: start;
    flex: 0 0 148px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .625rem;
    padding: 1.5rem 1rem 1.25rem;
    background: var(--oec-surface);
    border: 1.5px solid var(--oec-border);
    border-radius: var(--oec-radius-lg);
    text-align: center;
    transition: border-color var(--oec-transition), box-shadow var(--oec-transition),
                transform var(--oec-transition);
    cursor: pointer;
}
.oec-cat-card:hover {
    border-color: var(--oec-primary);
    box-shadow: var(--oec-shadow);
    transform: translateY(-3px);
}

.oec-cat-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--oec-radius);
    background: var(--oec-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: var(--oec-primary-dark);
    transition: background var(--oec-transition), color var(--oec-transition);
}
.oec-cat-card:hover .oec-cat-icon-wrap {
    background: var(--oec-primary);
    color: #fff;
}

.oec-cat-name {
    font-size: .9rem;
    font-weight: 700;
    color: var(--oec-dark);
}
.oec-cat-count {
    font-size: .75rem;
    color: var(--oec-text-muted);
}

.oec-cat-card--peek { opacity: .85; }

@media (max-width: 767px) {
    #oec-categories { padding: 2.5rem 0; }
    .oec-cat-card { flex: 0 0 128px; padding: 1.25rem .875rem 1rem; }
    .oec-cat-icon-wrap { width: 48px; height: 48px; font-size: 1.2rem; }
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
#oec-products {
    padding: 3.5rem 0 4rem;
    background: var(--oec-surface);
}

.oec-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.oec-product-card {
    display: flex;
    flex-direction: column;
    border: 1.5px solid var(--oec-border);
    border-radius: var(--oec-radius-lg);
    overflow: hidden;
    background: var(--oec-surface);
    transition: box-shadow var(--oec-transition), transform var(--oec-transition),
                border-color var(--oec-transition);
}
.oec-product-card:hover {
    box-shadow: var(--oec-shadow);
    transform: translateY(-4px);
    border-color: var(--oec-primary);
}

.oec-product-card-img-wrap {
    position: relative;
    display: block;
    background: var(--oec-surface-alt);
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.oec-product-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform var(--oec-transition);
}
.oec-product-card:hover .oec-product-card-img { transform: scale(1.04); }

.oec-product-card-badge {
    position: absolute;
    top: .625rem;
    left: .625rem;
    padding: .25rem .625rem;
    background: var(--oec-primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: .03em;
    z-index: 1;
}

.oec-product-card-body {
    padding: .875rem 1rem .5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .375rem;
}
.oec-product-card-name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--oec-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}
.oec-product-card-price {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--oec-secondary-dark);
    letter-spacing: -.01em;
}

.oec-product-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    padding: .625rem 1rem 1rem;
}
.oec-product-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    padding: .55rem .5rem;
    border-radius: var(--oec-radius);
    font-size: .8125rem;
    font-weight: 600;
    transition: background var(--oec-transition), color var(--oec-transition),
                border-color var(--oec-transition), transform var(--oec-transition);
}
.oec-product-card-btn:hover { transform: translateY(-1px); }

.oec-product-card-btn--outline {
    border: 1.5px solid var(--oec-border-dark);
    color: var(--oec-dark);
    background: transparent;
}
.oec-product-card-btn--outline:hover {
    border-color: var(--oec-primary);
    color: var(--oec-primary-dark);
    background: var(--oec-primary-light);
}
.oec-product-card-btn--wa {
    background: #16a34a;
    color: #fff;
    border: 1.5px solid transparent;
}
.oec-product-card-btn--wa:hover { background: #15803d; }

.oec-products-footer {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
.oec-products-see-all {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 2.5rem;
    border: 2px solid var(--oec-primary);
    border-radius: var(--oec-radius);
    font-size: .9375rem;
    font-weight: 700;
    color: var(--oec-primary-dark);
    transition: background var(--oec-transition), color var(--oec-transition),
                gap var(--oec-transition);
}
.oec-products-see-all:hover {
    background: var(--oec-primary);
    color: #fff;
    gap: .75rem;
}

@media (max-width: 1100px) {
    .oec-products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   SERVICE
   ============================================================ */
#oec-service {
    padding: 5rem 0;
    background: #0c1630;
    position: relative;
    overflow: hidden;
}

/* subtle radial glow di background */
#oec-service::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 80% 50%, rgba(27,79,216,.13) 0%, transparent 70%),
        radial-gradient(ellipse 35% 50% at 10% 80%, rgba(232,146,10,.07) 0%, transparent 60%);
    pointer-events: none;
}

.oec-service-head {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}
.oec-service-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--oec-secondary);
    margin-bottom: .75rem;
}
.oec-service-eyebrow::before,
.oec-service-eyebrow::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background: var(--oec-secondary);
    border-radius: 2px;
    flex-shrink: 0;
}
.oec-service-title-main {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -.025em;
    margin-bottom: .75rem;
}
.oec-service-tagline {
    font-size: .9375rem;
    color: rgba(255,255,255,.45);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.oec-service-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.oec-service-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1.75rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--oec-radius-lg);
    transition: background var(--oec-transition), border-color var(--oec-transition),
                transform var(--oec-transition), box-shadow var(--oec-transition);
}
.oec-service-item:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(27,79,216,.45);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(27,79,216,.15);
}

.oec-service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--oec-radius);
    background: rgba(27,79,216,.18);
    border: 1px solid rgba(27,79,216,.30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: #93c5fd;
    flex-shrink: 0;
    transition: background var(--oec-transition), border-color var(--oec-transition),
                color var(--oec-transition);
}
.oec-service-item:hover .oec-service-icon-wrap {
    background: var(--oec-primary);
    border-color: var(--oec-primary);
    color: #fff;
}

.oec-service-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -.01em;
}

.oec-service-desc {
    font-size: .875rem;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
}

@media (max-width: 960px) {
    .oec-service-grid { grid-template-columns: repeat(2, 1fr); }
    #oec-service { padding: 3.5rem 0; }
}
@media (max-width: 480px) {
    .oec-service-grid { grid-template-columns: 1fr; gap: 1rem; }
    #oec-service { padding: 2.5rem 0; }
    .oec-service-item { padding: 1.5rem 1.25rem; }
}
@media (max-width: 700px) {
    .oec-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .oec-products-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
    #oec-products { padding: 2.5rem 0 3rem; }

    .oec-product-card-actions {
        grid-template-columns: 1fr 1fr;
        gap: .375rem;
        padding: .5rem .625rem .75rem;
    }
    .oec-product-card-btn {
        font-size: .7rem;
        padding: .45rem .25rem;
        gap: .2rem;
    }
    .oec-product-card-body {
        padding: .625rem .625rem .375rem;
    }
    .oec-product-card-name { font-size: .8rem; }
    .oec-product-card-price { font-size: .9rem; }
}

/* ============================================================
   PARTNER MARQUEE
   ============================================================ */
#oec-our-parther {
    padding: 2.5rem 0;
    background: var(--oec-surface);
    border-top: 1px solid var(--oec-border);
    border-bottom: 1px solid var(--oec-border);
    overflow: hidden;
}

.oec-partner-label {
    text-align: center;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--oec-text-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.oec-partner-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.oec-partner-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: oec-marquee 28s linear infinite;
}
.oec-partner-track:hover { animation-play-state: paused; }

.oec-partner-logo {
    height: 160px;
    width: 160px;
    object-fit: contain;
    filter: grayscale(1) opacity(.55);
    transition: filter var(--oec-transition);
    flex-shrink: 0;
}
.oec-partner-logo:hover { filter: grayscale(0) opacity(1); }

@keyframes oec-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (max-width: 767px) {
    .oec-partner-logo { height: 110px; width: 110px; }
    .oec-partner-track { gap: 1.75rem; animation-duration: 20s; }
}

/* ============================================================
   BREADCRUMB (shared)
   ============================================================ */
.oec-shop-breadcrumb {
    background: var(--oec-surface-alt);
    border-bottom: 1px solid var(--oec-border);
    padding: .625rem 0;
}
.oec-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.oec-breadcrumb-link {
    font-size: .8125rem;
    color: var(--oec-text-muted);
    transition: color var(--oec-transition);
}
.oec-breadcrumb-link:hover { color: var(--oec-primary-dark); }
.oec-breadcrumb-sep {
    font-size: .55rem;
    color: var(--oec-border-dark);
}
.oec-breadcrumb-current {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--oec-dark);
}

/* ============================================================
   COPYRIGHT
   ============================================================ */
#oec-copyright {
    background: var(--oec-primary-dark);
    padding: .875rem 1.5rem;
    text-align: center;
}
#oec-copyright p {
    font-size: .8125rem;
    color: rgba(255,255,255,.6);
}
#oec-copyright strong {
    color: rgba(255,255,255,.9);
    font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
#oec-footer {
    background: var(--oec-primary);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 4rem 0 2rem;
}

.oec-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.oec-footer-brand-logo {
    height: 32px;
    width: auto;
    margin-bottom: 1.125rem;
    opacity: .90;
}
.oec-footer-brand-desc {
    font-size: .875rem;
    color: rgba(255,255,255,.45);
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 1.5rem;
}
.oec-footer-social {
    display: flex;
    gap: .5rem;
}
.oec-footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--oec-radius);
    color: rgba(255,255,255,.40);
    font-size: .875rem;
    transition: background var(--oec-transition), border-color var(--oec-transition),
                color var(--oec-transition);
}
.oec-footer-social-btn:hover {
    border-color: var(--oec-primary);
    background: var(--oec-primary);
    color: #fff;
}

.oec-footer-col-title {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.80);
    margin-bottom: 1.125rem;
}
.oec-footer-links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.oec-footer-link {
    font-size: .875rem;
    color: rgba(255,255,255,.40);
    transition: color var(--oec-transition);
    display: flex;
    align-items: center;
    gap: .375rem;
}
.oec-footer-link i { font-size: .6rem; opacity: .5; }
.oec-footer-link:hover { color: rgba(255,255,255,.85); }

.oec-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .875rem;
}
.oec-footer-contact-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: var(--oec-radius-sm);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: rgba(255,255,255,.50);
    margin-top: .1rem;
}
.oec-footer-contact-text {
    font-size: .875rem;
    color: rgba(255,255,255,.45);
    line-height: 1.55;
}
.oec-footer-contact-text strong {
    display: block;
    color: rgba(255,255,255,.75);
    font-weight: 600;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .15rem;
}

.oec-footer-divider {
    height: 1px;
    background: rgba(255,255,255,.07);
    margin-bottom: 1.75rem;
}
.oec-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.oec-footer-copy {
    font-size: .8125rem;
    color: rgba(255,255,255,.30);
}
.oec-footer-copy strong { color: rgba(255,255,255,.55); font-weight: 600; }
.oec-footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.oec-footer-bottom-link {
    font-size: .8125rem;
    color: rgba(255,255,255,.30);
    transition: color var(--oec-transition);
}
.oec-footer-bottom-link:hover { color: rgba(255,255,255,.70); }

@media (max-width: 960px) {
    .oec-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    #oec-footer { padding: 3rem 0 1.75rem; }
}
@media (max-width: 540px) {
    .oec-footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .oec-footer-bottom { flex-direction: column; text-align: center; align-items: center; }
}

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
@media (min-width: 768px) {
    .oec-mobile-nav,
    .oec-mobile-nav-overlay { display: none !important; }
}

.oec-mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--oec-surface);
    z-index: 300;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0,0,0,.15);
    transition: left 200ms ease;
    overflow-y: auto;
}
.oec-mobile-nav.oec--open { left: 0; }

.oec-mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--oec-border);
    flex-shrink: 0;
}
.oec-mobile-nav-logo { height: 28px; width: auto; }
.oec-mobile-nav-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--oec-radius-sm);
    color: var(--oec-text-muted);
    font-size: 1.125rem;
    transition: background var(--oec-transition), color var(--oec-transition);
}
.oec-mobile-nav-close:hover { background: var(--oec-danger-light); color: var(--oec-danger); }

.oec-mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: .75rem 0;
    flex: 1;
}
.oec-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .875rem 1.25rem;
    font-size: .9375rem;
    font-weight: 500;
    color: var(--oec-text);
    border-bottom: 1px solid var(--oec-border);
    transition: background var(--oec-transition), color var(--oec-transition);
}
.oec-mobile-nav-link:last-child { border-bottom: none; }
.oec-mobile-nav-link:hover { background: var(--oec-primary-light); color: var(--oec-primary-dark); }
.oec-mobile-nav-link i { width: 18px; text-align: center; color: var(--oec-primary); font-size: .9rem; }

.oec-mobile-nav-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--oec-border);
    display: flex;
    flex-direction: column;
    gap: .625rem;
    flex-shrink: 0;
}
.oec-mobile-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    height: 44px;
    border-radius: var(--oec-radius);
    font-size: .9375rem;
    font-weight: 700;
    transition: background var(--oec-transition);
}
.oec-mobile-nav-btn--wa { background: #16a34a; color: #fff; }
.oec-mobile-nav-btn--wa:hover { background: #15803d; }
.oec-mobile-nav-btn--login { background: var(--oec-secondary); color: #fff; }
.oec-mobile-nav-btn--login:hover { background: var(--oec-secondary-hover); }

.oec-mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--oec-overlay);
    z-index: 290;
}
.oec-mobile-nav-overlay.oec--open { display: block; }

/* ============================================================
   ALERT — reusable library
   Usage: <div class="oec-alert oec-alert--{variant}">
   Variants: primary | secondary | success | danger | warning | info
   ============================================================ */

/* ---- base ---- */
.oec-alert {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .875rem 1rem;
    border-radius: var(--oec-radius);
    border: 1px solid transparent;
    font-size: .9rem;
    line-height: 1.5;
}
.oec-alert + .oec-alert { margin-top: .5rem; }

/* ---- icon ---- */
.oec-alert-icon {
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: .125rem;
}

/* ---- body ---- */
.oec-alert-body  { flex: 1; min-width: 0; }
.oec-alert-title { font-weight: 600; margin-bottom: .2rem; }
.oec-alert-title:only-child { margin-bottom: 0; }
.oec-alert-desc  { font-size: .85rem; opacity: .85; margin: 0; }

/* ---- close button ---- */
.oec-alert-close {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: .125rem .25rem;
    border-radius: var(--oec-radius-sm);
    opacity: .5;
    line-height: 1;
    font-size: .85rem;
    color: inherit;
    transition: opacity var(--oec-transition);
}
.oec-alert-close:hover { opacity: 1; }

/* ---- primary ---- */
.oec-alert--primary {
    background: var(--oec-primary-light);
    border-color: color-mix(in srgb, var(--oec-primary) 25%, transparent);
    color: var(--oec-primary-dark);
}
.oec-alert--primary .oec-alert-icon { color: var(--oec-primary); }

/* ---- secondary ---- */
.oec-alert--secondary {
    background: var(--oec-secondary-light);
    border-color: color-mix(in srgb, var(--oec-secondary) 30%, transparent);
    color: var(--oec-secondary-dark);
}
.oec-alert--secondary .oec-alert-icon { color: var(--oec-secondary); }

/* ---- success ---- */
.oec-alert--success {
    background: var(--oec-success-light);
    border-color: color-mix(in srgb, var(--oec-success) 30%, transparent);
    color: var(--oec-success-dark);
}
.oec-alert--success .oec-alert-icon { color: var(--oec-success); }

/* ---- danger ---- */
.oec-alert--danger {
    background: var(--oec-danger-light);
    border-color: color-mix(in srgb, var(--oec-danger) 30%, transparent);
    color: var(--oec-danger-dark);
}
.oec-alert--danger .oec-alert-icon { color: var(--oec-danger); }

/* ---- warning ---- */
.oec-alert--warning {
    background: var(--oec-warning-light);
    border-color: color-mix(in srgb, var(--oec-warning) 40%, transparent);
    color: var(--oec-warning-dark);
}
.oec-alert--warning .oec-alert-icon { color: var(--oec-warning-dark); }

/* ---- info ---- */
.oec-alert--info {
    background: var(--oec-info-light);
    border-color: color-mix(in srgb, var(--oec-info) 30%, transparent);
    color: var(--oec-info-dark);
}
.oec-alert--info .oec-alert-icon { color: var(--oec-info); }

/* ---- dismiss animation ---- */
.oec-alert.oec--dismissing {
    overflow: hidden;
    transition: max-height .25s ease, padding .25s ease, opacity .2s ease, margin .25s ease;
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0;
    margin: 0 !important;
    border-width: 0;
}
