/* ============================================
   PRODUCTS CSS - GET Enterprises
   ============================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #f8fafc; --white: #fff; --alt: #f3f7fa; --navy: #0b1623;
  --text: #1d2939; --secondary: #667085; --orange: #f26a21;
  --orange2: #ff8a1e; --line: #e4ebf2;
  --head: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  --body: 'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--body); overflow-x: hidden;
}

/* PROGRESS BAR & GLOW */
.progress {
  position: fixed; z-index: 1000; top: 0; left: 0; height: 3px;
  background: var(--orange); box-shadow: 0 0 12px rgba(242,106,33,.35);
  transition: width 0.08s linear;
}
.glow {
  position: fixed; width: 520px; height: 520px; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,138,30,.05), transparent 68%);
  pointer-events: none; z-index: 0;
}
.particles {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(242,106,33,.18) 1.5px, transparent 2px);
  background-size: 190px 190px; animation: drift 28s linear infinite;
}
@keyframes drift { to { background-position: 190px -190px; } }

/* HEADER */
header {
  position: fixed; z-index: 100; inset: 0 0 auto; height: 116px;
  padding: 0 6vw; display: flex; align-items: center;
  justify-content: space-between; transition: 0.4s;
  background: transparent;
}
header.scrolled {
  height: 88px; background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px); border-bottom: 1px solid rgba(228,235,242,.8);
  box-shadow: 0 8px 28px rgba(11,22,35,.055);
}
.logo { 
  width: 420px; 
  height: 110px; 
  display: block; 
  flex-shrink: 0;
}
.logo img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
}

nav { display: flex; gap: 38px; align-items: center; }
nav a, .nav-dropdown > a {
  color: var(--secondary); text-decoration: none;
  font-size: 12px; font-weight: 500; letter-spacing: .6px;
  padding: 10px 0; cursor: pointer; position: relative;
  background: transparent; border: none;
}
nav a:after, .nav-dropdown > a:after {
  content: ''; position: absolute; left: 0; bottom: 2px;
  width: 0; height: 2px; border-radius: 3px;
  background: var(--orange); transition: .3s;
}
nav a:hover:after, .nav-dropdown > a:hover:after,
nav .active:after { width: 100%; }
nav .active { color: var(--navy); }

.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown > a { 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
}
.nav-dropdown > a::after {
  content: '▾';
  font-size: 10px;
  opacity: 0.6;
  transition: 0.2s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 38px; left: 0; min-width: 200px;
  background: rgba(255,255,255,.98); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 0; box-shadow: 0 18px 40px rgba(0,0,0,.08);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: 0.25s ease; display: flex; flex-direction: column;
  gap: 4px; z-index: 50;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  padding: 10px 24px; font-size: 13px; color: var(--text);
  text-decoration: none; font-weight: 500; letter-spacing: 0;
  transition: 0.2s; border-radius: 6px;
}
.dropdown-menu a:hover { background: var(--alt); color: var(--orange); }

.menu { display: none; background: none; border: 0; flex-direction: column; gap: 6px; }
.menu i { display: block; width: 26px; height: 2px; background: var(--navy); }

/* PRODUCTS HERO */
.products-hero {
  padding: 160px 8vw 80px;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 52%, #f3f7fa 100%);
  position: relative;
  text-align: center;
}
.products-hero .label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.8px;
  color: var(--orange); text-transform: uppercase;
  display: inline-block;
}
.products-hero .label:before {
  content: ''; display: inline-block; width: 38px; height: 2px;
  border-radius: 3px; background: var(--orange);
  margin: 0 14px 3px 0;
}
.products-hero h1 {
  font: 700 clamp(48px, 5.5vw, 82px)/1 var(--head);
  letter-spacing: -.04em; color: var(--navy); margin: 20px 0 16px;
}
.products-hero h1 em { font-style: normal; color: var(--orange); }
.products-hero p {
  color: var(--secondary);
  font-size: clamp(16px, 1.2vw, 20px);
  max-width: 640px;
  margin: 0 auto;
}

/* PRODUCTS SECTION */
.products-section {
  padding: 40px 8vw 80px;
  background: var(--bg);
}
.products-section .container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Category Filters */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-btn {
  padding: 10px 28px;
  border: 2px solid var(--line);
  border-radius: 40px;
  background: var(--white);
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}
.filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(242,106,33,.2);
}

/* Category Title */
.category-title {
  font: 700 clamp(28px, 3vw, 42px)/1.1 var(--head);
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}
.category-title em {
  font-style: normal;
  color: var(--secondary);
  font-weight: 400;
  font-size: 0.7em;
  display: inline-block;
}
.category-count {
  text-align: center;
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: 0.35s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242,106,33,.25);
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
}
.product-card .image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.product-card:hover .image-wrap img {
  transform: scale(1.04);
}
.product-card .category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  padding: 2px 14px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-card .image-count-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  backdrop-filter: blur(4px);
}
.product-card .info {
  padding: 18px 20px 24px;
}
.product-card .info h3 {
  font: 600 1.05rem var(--head);
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .info p {
  color: var(--secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}
.product-card .info .view-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.2s;
}
.product-card .info .view-link:hover {
  color: #d95516;
  margin-left: 4px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}
.empty-state p {
  color: var(--secondary);
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  position: relative; z-index: 1; min-height: 170px;
  padding: 35px 8vw; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  color: var(--secondary);
  font-size: 11px;
}
footer img { width: 260px; height: 100px; object-fit: contain; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: .85s; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 680px) {
  header { height: 80px; padding: 0 20px; }
  .logo { width: 220px; height: 60px; }
  .menu { display: flex; }
  nav { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: rgba(255,255,255,.98); padding: 20px; gap: 12px; box-shadow: 0 18px 30px rgba(0,0,0,.06); }
  header.open nav { display: flex; }
  .nav-dropdown .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 16px; background: transparent; }
  .nav-dropdown > a::after { display: none; }
  
  .products-hero { padding: 120px 20px 50px; }
  .products-section { padding: 20px 16px 50px; }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .product-card .image-wrap { height: 150px; }
  .product-card .info { padding: 12px 14px 16px; }
  .product-card .info h3 { font-size: 0.85rem; }
  .product-card .info p { font-size: 0.75rem; }
  .category-filters { gap: 8px; }
  .filter-btn { padding: 6px 16px; font-size: 0.75rem; }
  
  footer { flex-direction: column; align-items: flex-start; gap: 20px; }
  .glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
/* ============================================
   ADD TO products.css - Bubbles & Gallery Badges
   ============================================ */

/* ===== BACKGROUND BUBBLES ===== */
.bubbles-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(242,106,33,.15), rgba(242,106,33,.05));
  border: 1px solid rgba(242,106,33,.08);
  animation: floatBubble 8s ease-in-out infinite;
}
.bubble::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 25%;
  width: 30%;
  height: 25%;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  25% { transform: translateY(-20px) scale(1.05); opacity: 0.9; }
  50% { transform: translateY(-10px) scale(0.95); opacity: 0.7; }
  75% { transform: translateY(-30px) scale(1.02); opacity: 0.8; }
}

/* ===== GALLERY INDICATOR ON PRODUCT CARDS ===== */
.product-card .image-wrap {
  position: relative;
}
.product-card .gallery-indicator {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  padding: 4px 12px 4px 8px;
  border-radius: 20px;
  color: #fff;
  font-size: 0.7rem;
}
.product-card .gallery-indicator .image-count {
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-card .gallery-indicator .slideshow-badge {
  background: rgba(242,106,33,.8);
  padding: 1px 8px;
  border-radius: 12px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.product-card .image-wrap.has-gallery .category-badge {
  top: 12px;
  left: 12px;
}

/* ===== RESPONSIVE FOR BUBBLES ===== */
@media (max-width: 680px) {
  .bubble {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bubble {
    display: none;
  }
  .bubbles-container {
    display: none;
  }
}/* Add/modify these styles in your products.css */

/* ===== GALLERY INDICATOR ON PRODUCT CARDS - NO EMOJI ===== */
.product-card .image-wrap {
  position: relative;
}
.product-card .gallery-indicator {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  padding: 4px 14px 4px 14px;
  border-radius: 20px;
  color: #fff;
  font-size: 0.7rem;
}
.product-card .gallery-indicator .slideshow-badge {
  background: rgba(242,106,33,.8);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.product-card .image-wrap.has-gallery .category-badge {
  display: none; /* Hide category badge */
}

/* Remove category badge completely */
.product-card .category-badge {
  display: none !important;
}

/* ===== BACKGROUND BUBBLES ===== */
.bubbles-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(242,106,33,.15), rgba(242,106,33,.05));
  border: 1px solid rgba(242,106,33,.08);
  animation: floatBubble 8s ease-in-out infinite;
}
.bubble::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 25%;
  width: 30%;
  height: 25%;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  25% { transform: translateY(-20px) scale(1.05); opacity: 0.9; }
  50% { transform: translateY(-10px) scale(0.95); opacity: 0.7; }
  75% { transform: translateY(-30px) scale(1.02); opacity: 0.8; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 680px) {
  .bubble {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bubble {
    display: none;
  }
  .bubbles-container {
    display: none;
  }
}