@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  
  --orange: #00828A; /* Storefront Signboard Teal */
  --orange-light: #0D9488; /* Accent Teal */
  --orange-glow: rgba(0, 130, 138, 0.1);
  
  --blue: #00828A; /* Storefront Signboard Teal */
  --blue-light: #0D9488; /* Accent Teal */
  --blue-glow: rgba(0, 130, 138, 0.12);

  --white: #FFFFFF;
  --border: #F1F5F9;
  --border-dark: #E2E8F0;
  
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-panel-bg: rgba(255, 255, 255, 0.5);
  --glass-border: rgba(0, 130, 138, 0.08);
  --glass-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
  --glass-shadow-glow: 0 8px 32px rgba(0, 130, 138, 0.1);

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.display {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

/* ── GLASSMorphism Panel ── */
.glass-panel {
  background: var(--glass-panel-bg);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

/* ── NAVBAR ── */
.navbar-wrapper {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  padding: 0 1.5rem;
  z-index: 1000;
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--glass-shadow-glow);
  border-color: rgba(2, 132, 199, 0.2);
}

.navbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  display: block;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links button, .nav-links a {
  background: none;
  border: none;
  display: block;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.nav-links button::after, .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-links button:hover, .nav-links a:hover {
  color: var(--orange);
}

.nav-links button:hover::after, .nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links button.active, .nav-links a.active {
  color: var(--orange);
}

.nav-links button.active::after, .nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-light)) !important;
  color: var(--white) !important;
  border-radius: 12px !important;
  padding: 10px 20px !important;
  box-shadow: 0 4px 14px rgba(15, 44, 89, 0.2) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 44, 89, 0.3) !important;
  color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: 1px solid var(--border-dark);
  background: var(--white);
  border-radius: 10px;
}

.nav-hamburger span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* mega dropdown positioning */
.nav-dropdown-wrapper {
  position: relative;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: -200px;
  width: 720px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.15);
  border: 1px solid var(--border-dark);
  padding: 2rem;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  z-index: 100;
  animation: scaleIn 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.nav-dropdown-wrapper:hover .mega-dropdown {
  display: grid;
}

.mega-col-title {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
  margin-bottom: 10px;
  text-align: left;
  display: block;
  width: 100%;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}

.mega-col-title:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.mega-links {
  list-style: none;
  text-align: left;
}

.mega-links li {
  margin-bottom: 4px;
}

.mega-links button {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text-secondary);
  padding: 4px 0;
  display: block;
  width: 100%;
  text-align: left;
}

.mega-links button::after {
  display: none;
}

.mega-links button:hover {
  color: var(--orange);
  padding-left: 4px;
}

/* ── HERO SLIDER ── */
.hero {
  position: relative;
  overflow: hidden;
  height: clamp(520px, 55vw, 680px);
  background: #0f172a;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
  transform: scale(1.1);
  transition: transform 7s ease-out;
}

.hero-slide.active .hero-slide-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-glass-box {
  width: 100%;
  max-width: 640px;
  padding: 3rem;
  border-radius: var(--radius-lg);
  opacity: 1; /* Always visible to guarantee content base layer displays correctly */
}

/* Staggered Entrance Animations for Active Slide Contents */
.hero-slide .hero-badge {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-badge {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.hero-slide .hero-headline {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-headline {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.hero-slide .hero-desc {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.hero-slide .hero-actions {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(2, 132, 199, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  color: var(--blue-light);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero-badge span.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-transform: uppercase;
  min-height: 2.3em;
}

.hero-desc {
  font-size: 0.95rem;
  color: #E2E8F0;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Slide Progress indicators */
.hero-indicators {
  position: absolute;
  bottom: 32px;
  left: clamp(1rem, 4vw, 2.5rem);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.hero-indicator-bar {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: width 0.25s;
  overflow: hidden;
  width: 16px;
}

.hero-indicator-bar.active {
  width: 48px;
}

.hero-indicator-progress {
  position: absolute;
  inset-y: 0;
  left: 0;
  background: var(--blue-light);
  border-radius: 999px;
  width: 0;
}

/* Arrow controls */
.hero-arrow {
  position: absolute;
  bottom: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--orange);
}

.hero-arrow.prev {
  right: 76px;
}

.hero-arrow.next {
  right: 24px;
}

/* ── STATS BAR ── */
.stats-bar-wrapper {
  margin-top: -40px;
  position: relative;
  z-index: 30;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}

.stat-item {
  background: var(--white);
  padding: 1.75rem;
  text-align: center;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  box-shadow: 0 6px 18px rgba(15, 44, 89, 0.2);
}

.btn-primary:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 10px 24px rgba(15, 44, 89, 0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-1.5px);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue), #0ea5e9);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.25);
}

.btn-blue:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}

.btn-ghost:hover {
  background: var(--orange-glow);
  transform: translateY(-1.5px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.75rem;
  border-radius: 8px;
}

/* ── CARDS (GLASSY PORTFOLIO GRID) ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.category-card.wide {
  grid-column: span 2;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
  transition: background 0.3s;
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%);
}

.category-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-light);
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.category-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0px;
}

.category-subs-container {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.35s ease-out, opacity 0.35s ease-out;
  margin-top: 0.75rem;
}

.category-card:hover .category-subs-container {
  height: auto;
  opacity: 1;
}

.category-sub-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* ── PRODUCT CARDS ── */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: rgba(15, 44, 89, 0.25);
}

.product-card-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  background: #f8fafc;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
  transition: transform 0.5s;
}

.product-card:hover .product-card-img-wrap img {
  transform: scale(1.03);
}

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-cat {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.product-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-cta {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.product-card:hover .product-card-cta {
  color: var(--orange-light);
  transform: translateX(2px);
}

/* ── SECTION HEADERS ── */
.section-label {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 560px;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0.5rem auto 0;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-dark);
  padding: 5rem 0 2rem;
  font-sans: 'Inter', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── SEARCH BAR ── */
.search-wrap {
  position: relative;
  width: 100%;
}

.search-wrap input {
  width: 100%;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 10px 42px 10px 16px;
  font-size: 0.82rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.search-wrap input::placeholder {
  color: var(--text-muted);
}

.search-wrap input:focus {
  border-color: rgba(2, 132, 199, 0.4);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.08);
}

.search-wrap svg {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* ── FILTER TABS ── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--border-dark);
  background: var(--white);
  color: var(--text-secondary);
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.filter-tab:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.filter-tab.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(15, 44, 89, 0.2);
}

/* ── SKELETON LOADER ── */
.skeleton {
  background: linear-gradient(90deg, #E2E8F0 25%, #F1F5F9 50%, #E2E8F0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  background: var(--white);
}

.skeleton-img {
  width: 100%;
  aspect-ratio: 1;
}

.skeleton-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skeleton-line {
  height: 12px;
}

.skeleton-line.short {
  width: 60%;
}

.skeleton-line.medium {
  width: 80%;
}

/* ── TOAST ── */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.82rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.1);
  animation: slideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 600;
}

.toast.success {
  border-color: rgba(16, 185, 129, 0.3);
}

.toast.error {
  border-color: rgba(239, 68, 68, 0.3);
}

@keyframes slideIn {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Animations */
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.4); }
  50% { transform: scale(1.1); opacity: 0.6; box-shadow: 0 0 10px 4px rgba(2, 132, 199, 0.2); }
}

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

/* ── WHATSAPP BUTTON ── */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-radius: 12px;
  padding: 12px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}

.wa-btn:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  color: var(--white);
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

/* ── PRODUCT GALLERY LIGHTBOX ── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

#lightbox.open {
  opacity: 1;
  pointer-events: all;
}

#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

#lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FORM ELEMENTS ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}
.form-control::placeholder {
  color: var(--text-muted);
}
.form-control:focus {
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.08);
}
.card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .mega-dropdown {
    width: 500px;
    left: -150px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.25rem;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 96px;
    left: 16px;
    right: 16px;
    background: var(--white);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-hamburger {
    display: flex;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .category-card.wide {
    grid-column: span 1;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: 1fr;
  }
}

/* ── HUMANLY IMPOSSIBLE ANIMATIONS & INTERACTIVE STYLES ── */

/* glow-cursor */
.glow-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(15, 44, 89, 0.45) 0%, rgba(59, 130, 246, 0.15) 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  filter: blur(4px);
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, filter 0.25s ease;
}
.glow-cursor.expand {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, rgba(15, 44, 89, 0.15) 100%);
  filter: blur(12px);
}

/* card-shine */
.card-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 5;
  border-radius: inherit;
  mix-blend-mode: overlay;
  transition: background 0.15s ease;
}

/* 3D Transform Prep */
.category-card, .product-card, .glass-card {
  transform-style: preserve-3d;
  transition: transform 0.12s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
  will-change: transform;
}

/* hero-particles-canvas */
#hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Navbar CTA and Right Wrapper */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-cta-btn {
  padding: 8px 20px !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase;
}

/* Make sure dropdown wrapper sits on relative */
.nav-dropdown-wrapper {
  position: relative;
}

/* Infinite Scrolling Marquee */
.marquee-container {
  overflow: hidden;
  user-select: none;
  display: flex;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  gap: 4rem;
  min-width: 100%;
  justify-content: space-around;
  animation: scroll-left 25s linear infinite;
}

.marquee-item {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.marquee-item::before {
  content: "•";
  margin-right: 0.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.marquee-item:hover {
  opacity: 1;
  color: var(--primary-dark);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Global Search Bar (Full-Width Sleek Glass) */
.global-search-bar {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  margin-top: 10px;
  position: relative;
  z-index: 99;
}

.global-search-inner {
  position: relative;
  width: 100%;
}

.global-search-inner input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.global-search-inner input:focus {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--primary);
  box-shadow: 0 8px 32px 0 rgba(15, 44, 89, 0.15);
}

.global-search-inner .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: color 0.3s;
}

.global-search-inner input:focus + .search-icon {
  color: var(--primary);
}

/* Category Hero Card Styling */
.category-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  position: relative;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  margin-bottom: 40px;
}

.category-hero-content {
  padding: 3rem 4rem;
  max-width: 60%;
  position: relative;
  z-index: 2;
}

.category-hero-image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
}

.category-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-out);
}

.category-hero-card:hover .category-hero-image-wrap img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .category-hero-content {
    max-width: 100%;
    padding: 2.5rem 2rem;
  }
  .category-hero-image-wrap {
    display: none;
  }
}

/* Inline Navbar Search Bar */
.navbar-search-wrapper {
  position: relative;
  width: 280px;
  margin-right: 1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-search-wrapper input {
  width: 100%;
  padding: 8px 16px 8px 38px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.navbar-search-wrapper input:focus {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--primary);
  width: 360px; /* Expands smoothly on focus */
  box-shadow: 0 4px 20px rgba(15, 44, 89, 0.12);
}

.navbar-search-wrapper .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: color 0.3s;
}

.navbar-search-wrapper input:focus + .search-icon {
  color: var(--primary);
}

/* Deprecate Old Global Search Bar */
.global-search-bar {
  display: none !important;
}

@media (max-width: 1024px) {
  .navbar-search-wrapper {
    display: none; /* Hide in mobile/tablet nav layout for clean space */
  }
}

/* Page Hero Banner Layout */
.page-hero-banner {
  position: relative;
  width: 100%;
  padding: 130px 0 60px 0;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-size: cover !important;
  background-position: center !important;
  margin-bottom: 40px;
}

.page-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.65) 100%);
  z-index: 1;
}

.page-hero-banner .container {
  position: relative;
  z-index: 2;
}

.page-hero-banner .page-title {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.page-hero-banner .page-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.9rem, 2vw, 1rem);
  max-width: 640px;
  margin: 12px auto 0 auto;
  line-height: 1.6;
}
