﻿/* Tambahan CSS Khusus untuk Menu Kategori Horizontal */
    .category-scroll {
      display: flex;
      overflow-x: auto;
      gap: 15px;
      padding: 14px 15px;
      -webkit-overflow-scrolling: touch;
      /* Smooth scroll di iOS */
      scrollbar-width: none;
      /* Sembunyikan scrollbar di Firefox */
    }

    .category-scroll::-webkit-scrollbar {
      display: none;
      /* Sembunyikan scrollbar di Chrome/Safari */
    }

    .category-scroll .category-item {
      flex: 0 0 auto;
      min-width: 65px;
    }

    /* Lightbox Styles */
    .lightbox-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .lightbox-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }
    .lightbox-content-wrapper {
      position: relative;
      max-width: 90%;
      max-height: 90%;
    }
    .lightbox-content-wrapper img {
      max-width: 100%;
      max-height: 80vh;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      object-fit: contain;
    }
    .lightbox-close {
      position: absolute;
      top: -40px;
      right: 0;
      color: #fff;
      font-size: 32px;
      font-weight: bold;
      cursor: pointer;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
      transition: color 0.2s;
    }
    .lightbox-close:hover {
      color: var(--primary-red);
    }
