.hero-title {
  overflow: hidden;
  margin: 0; /* penting */
}

/* Highlight block */
.highlight {
  position: relative;
  display: inline-block;
  padding: 6px 18px;
  background: #2563eb;
  border-radius: 6px;
  color: white;

  overflow: hidden;
  
  transform: translateX(-80px);
  opacity: 0;
  animation: slideIn 0.8s ease-out forwards;
}

/* Delay per baris */
.delay-1 .highlight { animation-delay: 0.2s; }
.delay-2 .highlight { animation-delay: 0.6s; }
.delay-3 .highlight { animation-delay: 1s; }

/* Slide animation */
@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Shine effect */
.highlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 3s infinite;
  animation-delay: 2s;
}

@keyframes shine {
  0% { left: -60%; }
  100% { left: 120%; }
}

.box-decoration-clone {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
#product-grid {
    /* drag-to-scroll disabled — default cursor and selection allowed */
    cursor: default;
    -webkit-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}
#product-grid:active {
    cursor: default;
}
#product-grid {
    /* ...existing flex row, gap, scroll... */
    -ms-overflow-style: none; /* IE / Edge */
}
@media (max-width: 768px) {
    /* Use responsive grid on small screens (no horizontal scroll) */
    #product-grid {
        display: grid;
        gap: 16px;
        overflow-x: visible;
        padding-bottom: 0;
    }
    #product-grid .product-card {
        min-width: unset;
        max-width: 100%;
        flex: none;
        width: 100%;
    }
}
#product-grid {
    /* Default to a responsive grid layout; Tailwind classes (sm:grid-cols-2, lg:grid-cols-4)
       will control column count. Prevent any horizontal scrolling. */
    display: grid;
    gap: 16px;
    overflow-x: hidden; /* disable horizontal scroll */
    padding-bottom: 0;
    touch-action: pan-y; /* prevent horizontal touch panning */
    overscroll-behavior-x: contain; /* prevent scroll chaining */
}
#product-grid .product-card {
    min-width: unset;
    max-width: 100%;
    flex: none;
    width: 100%;
}

/* Search page override: use a responsive grid and disable horizontal scrolling */
body.search-page #product-grid {
    display: grid !important;
    /* responsive columns that fit content and allow centering */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    overflow-x: visible !important;
    padding-bottom: 0;
    /* constrain width and center the whole grid */
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
}
@media (min-width: 1024px) {
    body.search-page #product-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 767px) {
    body.search-page #product-grid,
    #product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}
body.search-page #product-grid .product-card {
    min-width: unset;
    max-width: 320px;
    flex: none;
    width: 100%;
}
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* custom cursor — inline SVG (neon green arrow) with fallback */
    cursor: url("data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='32'%20height='32'%20viewBox='0%200%2024%2024'><path%20fill='%2313f50b'%20d='M2%202L18%2012L10%2014L14%2022L6%2016L2%202z'/></svg>") 0 0, auto;
}

/* ensure text inputs get text cursor and interactive elements remain pointer-friendly */
input, textarea, select { cursor: text; }
a, button, .btn, .btn-primary, .nav-link { cursor: pointer; }

/* -------------------------------------------------------------------------
   Defensive: remove/disable any "follow-cursor" elements (plugin/snippet)
   - keeps the inline SVG cursor static while ensuring no trailing/follower
   - covers common class/ID names used by cursor-follower scripts
   ------------------------------------------------------------------------- */
.cursor-follower,
.cursor-dot,
.cursor-trail,
.custom-cursor,
#cursor,
.cursor-inner,
.cursor-outer,
.mouse-follower,
.follow-cursor {
    display: none !important;
    pointer-events: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2240%22 height=%2240%22 viewBox=%220 0 40 40%22%3E%3Cfilter id=%22n%22 x=%220%22 y=%220%22 width=%22100%25%22 height=%22100%25%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.8%22 numOctaves=%224%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%2240%22 height=%2240%22 filter=%22url(%23n)%22 opacity=%220.04%22/%3E%3C/svg%3E');
    z-index: 1;
}

#navbar.scrolled {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.nav-link {
    color: #cbd5e1;
    padding: 8px 12px;
    border-radius: 12px;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* active state for header / mobile nav */
.nav-link.active {
    color: #000000;
    background: linear-gradient(90deg, rgb(60, 255, 0), rgb(81, 255, 0));
    box-shadow: 0 6px 18px rgba(9, 255, 0, 0.425);
    font-weight: 600;
}

.theme-light .nav-link.active {
    color: #065f46;
    background: rgba(16,185,129,0.08);
    box-shadow: none;
}

#mobile-sidebar a.active {
    background: rgba(255,255,255,0.03);
    color: #fff;
    font-weight: 600;
}

.theme-light #mobile-sidebar a.active {
    color: #065f46;
    background: rgba(16,185,129,0.06);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 14px;
    /* background: linear-gradient(120deg, #fbbf24, #f59e0b); */
        background: linear-gradient(120deg, #73fb24, #13f50b);
    color: #0f172a;
    font-weight: 700;
    /* box-shadow: 0 10px 30px rgba(251, 191, 36, 0.35); */
        box-shadow: 0 10px 30px rgba(151, 251, 36, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    /* box-shadow: 0 15px 35px rgba(251, 191, 36, 0.45); */
        box-shadow: 0 15px 35px rgba(158, 251, 36, 0.45);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: #e2e8f0;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover {
    /* border-color: #fbbf24;
    color: #fbbf24; */
        border-color: #13f50b;
    color: #13f50b;
}

/* Neon green small icon button used for header search */
.bg-neon-green {
    background: #3cff00;
    color: #041014;
    border: 1px solid rgba(60, 255, 0, 0.12);
    box-shadow: 0 8px 28px rgba(60, 255, 0, 0.12), 0 2px 6px rgba(0,0,0,0.25);
}
.bg-neon-green:hover {
    filter: brightness(0.95);
}

.carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}

.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: rgba(148, 163, 184, 0.3); border-radius: 999px; }

.category-card {
    scroll-snap-align: start;
    background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 18px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.2s ease, transform 0.2s ease;
    text-align: left;
}

.category-card.active {
    /* border-color: #fbbf24; */
        border-color: #97fb24;
    /* box-shadow: 0 10px 30px rgba(251, 191, 36, 0.15); */
        box-shadow: 0 10px 30px rgba(133, 251, 36, 0.15);
    transform: translateY(-2px);
}

.category-image {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.category-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
}

.category-card .arrow {
    font-size: 20px;
    color: #7afb24;
    transition: transform 0.2s ease;
}

.category-card:hover .arrow { transform: translateX(4px); }

.product-card {
    background: linear-gradient(180deg, rgba(15,23,42,0.8), rgba(15,23,42,0.95));
    border: 1px solid rgba(148,163,184,0.2);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image {
    /* Keep a consistent aspect ratio to avoid stretched/squashed thumbnails */
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 180px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

@media (max-width: 768px) {
    .product-image {
        min-height: 160px;
        background-size: contain;
        background-position: center center;
    }
    #product-grid {
        gap: 14px;
    }

    #product-grid .product-card {
        border-radius: 16px;
    }

    #product-grid .product-card > div:last-child {
        padding: 12px;
    }

    #product-grid .product-card .font-semibold {
        font-size: 0.9rem;
        line-height: 1.25;
    }

    #product-grid .product-card .text-sm {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    #product-grid .product-card .product-size {
        padding: 8px 9px;
        font-size: 0.78rem;
    }

    #product-grid .product-card .product-size-hint {
        min-height: 2.2rem;
        line-height: 1.25;
    }

    #product-grid .product-card .pt-2 {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    #product-grid .product-card .text-amber-300 {
        min-width: 0;
        font-size: 0.95rem;
        line-height: 1.25;
    }

    #product-grid .btn-pill {
        width: 100%;
        max-width: none;
        min-height: 2.35rem;
        padding: 8px 10px;
        font-size: 0.84rem;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
    }

    .home-features {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .home-features .max-w-6xl > .grid {
        gap: 1rem;
        margin-top: 2rem;
    }

    .home-features .max-w-6xl > .grid > div {
        min-height: 12.5rem;
        padding: 1.05rem 0.7rem;
        border-radius: 10px;
    }

    .home-features svg {
        width: 2.1rem;
        height: 2.1rem;
        margin-bottom: 0.85rem;
    }

    .home-features h2 {
        font-size: 1.45rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .home-features h3 {
        font-size: 0.82rem;
        line-height: 1.25;
        margin-bottom: 0.55rem;
        letter-spacing: 0.02em;
    }

    .home-features p {
        font-size: 0.75rem;
        line-height: 1.45;
    }
}

.badge {
    background: rgba(158, 251, 36, 0.15);
    color: #9efb24;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    text-transform: uppercase;
}

.btn-pill {
    background: #97fb24;
    color: #0f172a;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
}

.hero-card {
    position: relative;
    padding: 16px;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(148,163,184,0.3);
}

.hero-circle {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(251,191,36,0.35), transparent 40%);
    filter: blur(30px);
    z-index: 1;
}

.hero-card img {
    position: relative;
    z-index: 2;
}

.hero-meta {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.7);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

/* Icon box: remove white frame and force raster icons to display as white */
.icon-box .icon-inner {
    border: none !important;            /* remove visible frame by default */
    background: transparent !important; /* no background box by default */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;                   /* small spacing around icon */
}
.icon-box .icon-inner img {
    display: block;
    width: 56px;                        /* default icon size */
    height: auto;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);    /* turn dark strokes to white */
}
.icon-box .icon-box-img {
    background: transparent;            /* ensure no white background */
    border-radius: 0;                   /* keep square if source is square */
}

/* Features (dark) section — 3 columns × 2 rows, white icons & text */
.features-dark { background: linear-gradient(180deg, rgba(8,10,15,0.95), rgba(15,23,42,0.95)); color: #fff; padding-top: 3rem; padding-bottom: 3rem; }
.features-dark .section-content { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
.features-dark h1.uppercase { color: #fff; font-weight: 700; letter-spacing: 0.04em; }
.features-dark p { color: rgba(255,255,255,0.82); line-height: 1.6; max-width: 980px; margin: 0 auto; }

.features-grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(1, 1fr); gap: 2.25rem; align-items: start; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.features-grid .icon-box { background: transparent; border: none; box-shadow: none; }
.features-grid .icon-inner { border: 2px solid rgba(255,255,255,0.12) !important; border-radius: 9999px; width: 84px; height: 84px; padding: 12px; display:flex; align-items:center; justify-content:center; margin: 0 auto; background: rgba(255,255,255,0.02); }
.features-grid .icon-inner img { width: 36px; height: auto; -webkit-filter: brightness(0) invert(1); filter: brightness(0) invert(1); opacity: 1; }
.features-grid .icon-inner svg.feature-icon { width: 36px; height: 36px; stroke: currentColor; color: #fff; display: block; }
.features-grid .icon-inner svg.feature-icon path { stroke: currentColor; }
.features-grid .icon-box-text h3 { color: #fff; margin-top: 1rem; font-weight: 700; }
.features-grid .icon-box-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-top: 0.25rem; max-width: 280px; margin-left:auto; margin-right:auto; text-align:center; }


.form-input {
    width: 100%;
    background: #0f172a;
    border: 1px solid rgba(148,163,184,0.3);
    border-radius: 12px;
    padding: 10px 12px;
    color: #e2e8f0;
}

/* Center the Custom Order section in the viewport */
#custom-order-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 220px); /* keep room for header/footer */
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#custom-order-section > div {
    width: 100%;
    max-width: 720px; /* constrain the card width */
    margin: 0 auto;
}

@media (max-width: 767px) {
    #custom-order-section {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #20eb0d;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    z-index: 50;
    transform-origin: center;
    animation: whatsapp-float 2.6s ease-in-out infinite;
}

@keyframes whatsapp-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp {
        animation: none;
    }
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #85fb24;
    color: #0f172a;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 999px;
    font-weight: 700;
}

.marquee-wrapper { overflow: hidden; }

/* show multiple items and keep them centered; content duplicated in HTML for seamless loop */
.marquee { display: inline-flex; gap: 1.25rem; white-space: nowrap; animation: marquee 25s linear infinite; }

.marquee__item { display: inline-block; padding-right: 0; text-align: center; }

@keyframes marquee { 0% { transform: translateX(0%); } 100% { transform: translateX(-50%); } }

/* Toast notifications */
.toast-container {
    position: fixed;
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    align-items: center;
}
.toast {
    pointer-events: auto;
    background: rgba(15,23,42,0.95);
    color: #e6ffcb;
    border: 1px solid rgba(148,163,184,0.08);
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.45);
    transform: translateY(6px);
    opacity: 0;
    transition: transform 220ms ease, opacity 220ms ease;
    font-size: 14px;
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Dim disabled size options and disabled selects for clearer "out of stock" indication */
.product-size option:disabled {
    opacity: 0.5;
    color: #94a3b8;
}
.product-size:disabled {
    opacity: 0.7;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    touch-action: pan-y;
    cursor: grab;
}

.hero-slider.dragging {
    cursor: grabbing;
}

.hero-slider-wide {
    min-height: 70vh;
    display: grid;
    place-items: center;
    background: #0b1220;
}

@media (max-width: 1000px) {
    .hero-slider-wide {
        min-height: auto;
    }
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 60vh;
}

@media (max-width: 1000px) {
    .hero-slides {
        min-height: clamp(150px, 42vw, 230px);
    }
}


.hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    padding: 20px;
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-slider-wide {
        min-height: auto;
    }

    .hero-slides {
        aspect-ratio: 16 / 7;
        min-height: clamp(150px, 42vw, 220px);
    }

    .hero-slide {
        padding: 0;
        min-height: 100%;
        height: 100%;
    }

    .hero-visual {
        position: absolute;
        inset: 0;
        height: 100%;
        margin-bottom: 0;
        background-size: contain;
        background-position: center;
        background-color: #050b16;
    }

    .hero-copy-center {
        position: relative;
        margin-top: 0;
    }
}




.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-visual {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
}

/* Client carousel styles */
.client-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.carousel-viewport {
    overflow: hidden;
    flex: 1 1 auto;
}
.carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 600ms ease;
    align-items: center;
}
.logo-item {
    flex: 0 0 calc((100% - 64px) / 5); /* up to 5 items per page, subtract gaps (16px * 4) */
    max-width: calc((100% - 64px) / 5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .95;
}
.carousel-arrow {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
}
.carousel-dots { text-align:center; margin-top:12px; }
.carousel-dots .dot { width:10px; height:10px; display:inline-block; border-radius:50%; background:rgba(255,255,255,0.35); margin:0 6px; border:none; }
.carousel-dots .dot.active { background:#111827; }

@media (max-width: 768px) {
    .logo-section {
        padding-left: 12px;
        padding-right: 12px;
    }
    .carousel-track {
        gap: 18px;
    }
    .logo-item {
        flex: 0 0 calc((100% - 18px) / 2);
        max-width: calc((100% - 18px) / 2);
        min-height: 88px;
    }
    .logo-item img {
        max-height: 78px;
        width: 100%;
    }
    .carousel-arrow { padding:6px 8px; }
    .carousel-dots { margin-top:8px; }
}

/* Partners carousel */
.partners-carousel {
    display: flex;
    align-items: center;
    position: relative;
}
.partners-track-wrap { width: 100%; }
.partners-track { display: flex; align-items: center; }
.partner-item { width: 18%; min-width: 140px; display:flex; align-items:center; justify-content:center; }
.partner-logo { max-width: 100%; max-height: 64px; opacity: .95; filter: grayscale(0.02); }
.partners-arrow { background: transparent; border: none; color: #cbd5e1; font-size: 28px; padding: 6px 10px; cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; }
.partners-arrow.left { left: -6px; }
.partners-arrow.right { right: -6px; }

@media (max-width: 768px) {
    .partner-item { width: 40%; min-width: 120px; }
    .partner-logo { max-height: 44px; }
    .partners-arrow { font-size: 22px; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%);
}

.hero-overlay-strong {
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%);
}

.hero-copy {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #fff;
}

.hero-copy-center {
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    text-align: center;
    width: min(90%, 720px);
}

.hero-nav {
    position: absolute;
    bottom: 26px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.hero-nav-overlay { mix-blend-mode: lighten; }

.hero-arrow { display: none; }

.hero-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.35);
    border: none;
    transition: all 0.2s ease;
}

.hero-dot.active {
    width: 32px;
    background: #48fb24;
}

@media (max-width: 768px) {
    .hero-nav {
        bottom: 12px;
        padding: 0 12px;
    }

    .hero-dots {
        gap: 8px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-dot.active {
        width: 28px;
    }
}

.cart-panel {
    position: fixed;
    right: 16px;
    top: 90px;
    width: min(360px, 92vw);
    background: #0b1220;
    border: 1px solid rgba(148,163,184,0.25);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    z-index: 60;
}

.cart-panel.hidden { display: none; }

.cart-panel__header, .cart-panel__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.cart-panel__footer { margin-top: 10px; flex-direction: column; align-items: stretch; gap: 12px; }

.cart-close {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid rgba(148,163,184,0.3);
    background: rgba(255,255,255,0.05);
    color: #e2e8f0;
}

.cart-items { max-height: 320px; overflow-y: auto; padding: 6px 2px; }

.cart-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(148,163,184,0.15);
    border-radius: 14px;
    padding: 10px;
}

.cart-row__img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.cart-row__meta { display: flex; flex-direction: column; gap: 6px; }

.cart-row__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-row__actions button {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(148,163,184,0.25);
    color: #e2e8f0;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
}

/* Light theme overrides */
.theme-light {
    background: #f8fafc;
    color: #1e293b;
}
.theme-light #navbar { background: #fff; border-color: #cbd5e1; box-shadow: 0 8px 30px rgba(15,23,42,0.08); }
.theme-light .nav-link { color: #0f172a; }
.theme-light .nav-link:hover { background: #e2e8f0; color: #0f172a; }
.theme-light .hero-slider-wide { background: #f1f5f9; }
.theme-light .hero-overlay-strong { background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(0,0,0,0.65) 100%); }
.theme-light .hero-copy { color: #0f172a; }
.theme-light .hero-dot { background: #cbd5e1; }
.theme-light .hero-dot.active { background: #22c55e; }
.theme-light .product-card { background: #fff; border-color: #cbd5e1; box-shadow: 0 12px 24px rgba(15,23,42,0.10); }
.theme-light .product-image::after { display: none; }
.theme-light .btn-ghost { border-color: #64748b; color: #0f172a; background: #f1f5f9; }
.theme-light .btn-ghost:hover { border-color: #22c55e; color: #22c55e; background: #e2e8f0; }
.theme-light .btn-pill { background: #0f172a; color: #f8fafc; box-shadow: 0 10px 20px rgba(15,23,42,0.18); }
.theme-light .cart-panel { background: #fff; border-color: #cbd5e1; box-shadow: 0 16px 40px rgba(15,23,42,0.10); }
.theme-light .cart-row { background: #f1f5f9; border-color: #cbd5e1; }
.theme-light .cart-row__actions button { border-color: #64748b; background: #e2e8f0; color: #0f172a; }

/* Accent and flame animation for pricelist */
.accent-orange-border {
    border: 1px solid rgba(249, 115, 22, 0.08);
}
.card-top-line-orange {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #fb923c, #fb7a1c);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.badge-ready {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.flame { width: 18px; height: 18px; display: inline-block; transform-origin: center; }
@keyframes flame-flicker {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-2px) scale(1.05); opacity: 0.9; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}
.flame svg { display: block; width: 100%; height: 100%; }
.flame { animation: flame-flicker 850ms ease-in-out infinite; }

@media (max-width: 767px) {
    .gallery-filters {
        gap: 0.45rem !important;
        margin-bottom: 1rem !important;
    }

    .gallery-filters .filter-btn {
        padding: 0.42rem 0.62rem !important;
        border-radius: 7px !important;
        font-size: 0.75rem;
        line-height: 1.15;
    }

    #gallery-grid {
        gap: 0.85rem;
    }

    .pricelist-filters {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .pricelist-filters .group-btn {
        padding: 0.45rem 0.7rem;
        font-size: 0.75rem;
        line-height: 1.15;
    }

    .pricelist-grid {
        gap: 0.85rem;
    }

    .pricelist-card {
        border-radius: 12px !important;
        padding: 0.85rem !important;
    }

    .pricelist-card .badge-ready,
    .pricelist-card > .absolute {
        max-width: calc(100% - 1rem);
        padding: 0.25rem 0.55rem;
        font-size: 0.62rem;
        gap: 0.25rem;
        white-space: nowrap;
    }

    .pricelist-card .flame {
        width: 0.75rem;
        height: 0.75rem;
    }

    .pricelist-card .mb-6 {
        margin-bottom: 0.7rem !important;
    }

    .pricelist-card .text-sm.uppercase {
        font-size: 0.64rem;
        line-height: 1.25;
        letter-spacing: 0.04em;
    }

    .pricelist-card .mt-4 {
        margin-top: 0.55rem !important;
    }

    .pricelist-card .text-4xl {
        font-size: clamp(1.05rem, 5vw, 1.45rem) !important;
        line-height: 1.1;
    }

    .pricelist-card .items-baseline {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0.12rem;
    }

    .pricelist-card ul {
        margin-bottom: 0.8rem !important;
        gap: 0.25rem;
    }

    .pricelist-card li {
        gap: 0.3rem;
        font-size: 0.68rem;
        line-height: 1.3;
    }

    .pricelist-card li span {
        flex: 0 0 auto;
    }

    .pricelist-card a {
        padding: 0.5rem 0.45rem !important;
        margin-bottom: 0.45rem !important;
        border-radius: 999px;
        font-size: 0.68rem;
        line-height: 1.15;
    }
}

.gallery-item {
    background: #f8fafc;
}

.gallery-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: contain;
    object-position: center;
    background: #f8fafc;
    image-rendering: auto;
}

@media (prefers-reduced-motion: reduce) {
    .flame { animation: none; }
}

/* Stock error modal */
#stock-error-modal .modal-backdrop {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
}
#stock-error-modal .modal {
    background: #0b1220;
    color: #fff;
    padding: 18px;
    border-radius: 12px;
    max-width: 92%;
    width: 360px;
    box-shadow: 0 12px 40px rgba(2,6,23,0.6);
}
#stock-error-modal .modal h3 { margin: 0 0 8px; font-size: 16px; }
#stock-error-modal .modal p { margin: 0 0 12px; color: #d1d5db; }
#stock-error-modal .modal-actions { display:flex; justify-content:flex-end; }
#stock-error-modal .modal-actions button { background:#3cff00; color:#07111a; border:none; padding:8px 12px; border-radius:8px; cursor:pointer; }
