/* 
  Er Frozen Theme Styles - Premium Redesign
  Theme: Ultra Modern, Minimalist, Corporate, Glassmorphism
*/

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

:root {
  /* Color Palette - Premium B2B Fresh & Frozen */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --accent-primary: #0284c7;
  /* Ice Blue */
  --accent-secondary: #0ea5e9;

  /* Layout & Spacing */
  --container-max: 1300px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 20px rgba(2, 132, 199, 0.3);

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 4rem;
  color: var(--text-dark);
}

.section-title span {
  color: var(--accent-primary);
}

/* =============================================
   HEADER - Premium Dark Glassmorphism
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
}

.header-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.3s ease;
}

.site-header.scrolled .header-backdrop {
  background: rgba(10, 17, 35, 0.95);
  border-bottom-color: rgba(14, 165, 233, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.4));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.header-logo:hover .logo-icon {
  filter: drop-shadow(0 0 18px rgba(14, 165, 233, 0.7));
  transform: rotate(-5deg) scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: #38bdf8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.8;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-link.active {
  color: #38bdf8;
  background: rgba(14, 165, 233, 0.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #38bdf8;
  border-radius: 99px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 2rem);
}

/* Header CTA Button */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.3rem;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 17, 35, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1rem 2rem;
  flex-direction: column;
  gap: 0.25rem;
  animation: slideDown 0.25s ease;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: #38bdf8;
  background: rgba(14, 165, 233, 0.1);
}

.mobile-cta {
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
  color: #fff !important;
  text-align: center;
  border-radius: 50px !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {

  .main-nav,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}



/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--accent-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
  background: var(--text-dark);
  color: white;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-color: #020617;
  overflow: hidden;
}

.hero-bg-anim {
  position: absolute;
  top: -5%;
  left: -5%;
  right: -5%;
  bottom: -5%;
  background-image: url('../images/hero-dark-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: kenburns 30s infinite alternate ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.3) 0%, rgba(2, 6, 23, 0.8) 100%);
  z-index: 1;
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

/* Floating Particles (Ice/Dust) */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  filter: blur(2px);
  animation: floatUp linear infinite;
}

.p1 {
  width: 10px;
  height: 10px;
  left: 10%;
  bottom: -20px;
  animation-duration: 15s;
}

.p2 {
  width: 15px;
  height: 15px;
  left: 30%;
  bottom: -20px;
  animation-duration: 20s;
  animation-delay: 2s;
}

.p3 {
  width: 8px;
  height: 8px;
  left: 60%;
  bottom: -20px;
  animation-duration: 12s;
  animation-delay: 5s;
}

.p4 {
  width: 24px;
  height: 24px;
  left: 80%;
  bottom: -20px;
  animation-duration: 25s;
  filter: blur(4px);
  background: rgba(255, 255, 255, 0.2);
}

.p5 {
  width: 12px;
  height: 12px;
  left: 45%;
  bottom: -20px;
  animation-duration: 18s;
  animation-delay: 7s;
}

.p6 {
  width: 18px;
  height: 18px;
  left: 20%;
  bottom: -20px;
  animation-duration: 22s;
  animation-delay: 1s;
  filter: blur(3px);
}

.p7 {
  width: 6px;
  height: 6px;
  left: 75%;
  bottom: -20px;
  animation-duration: 10s;
  animation-delay: 3s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #ffffff;
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

.scroll-text {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  animation: pulseText 2s infinite alternate;
}

@keyframes pulseText {
  0% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #cbd5e1;
  margin-bottom: 3rem;
  font-weight: 400;
  max-width: 600px;
}

/* Brands Slider */
.brands-section {
  padding: 5rem 0;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.brands-section .section-title {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.brands-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brands-slider-container::before,
.brands-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
}

.brands-slider-container::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.brands-slider-container::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.brands-track {
  display: flex;
  gap: 4rem;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.brand-item {
  font-size: 1.8rem;
  font-weight: 800;
  color: #e2e8f0;
  transition: var(--transition-smooth);
}

.brand-item:hover {
  color: var(--accent-primary);
  transform: scale(1.05);
}

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

  100% {
    transform: translateX(-50%);
  }
}

/* Products Section Shared */
.featured-products-section {
  padding: 8rem 0;
  background: var(--bg-main);
}

/* ── Featured Card (Homepage Carousel) ── */
.featured-card {
  min-width: 270px;
  max-width: 270px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.featured-card-img {
  position: relative;
  height: 220px;
  background-color: #f1f5f9;
  overflow: hidden;
}

.featured-card-img .product-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 132, 199, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
}

.featured-card:hover .featured-card-overlay {
  opacity: 1;
}

.featured-card-cta {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: white;
  color: var(--accent-primary);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.featured-card:hover .featured-card-cta {
  transform: translateY(0);
}

.featured-card-brand {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  color: #38bdf8;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.featured-card-info {
  padding: 1.1rem 1.25rem 1.25rem;
}

.featured-card-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.featured-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  letter-spacing: -0.02em;
}


/* Next Gen Homepage Carousel */
.container.relative {
  position: relative;
}

.carousel-nav {
  display: flex;
  gap: 1rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 10;
  pointer-events: none;
}

.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-main) 0%, transparent 100%);
}

.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-main) 0%, transparent 100%);
}

.products-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 3rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  /* IE/Edge */
  scrollbar-width: none;
  /* Firefox */
}

.products-carousel::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.products-carousel .product-card {
  min-width: 250px;
  max-width: 250px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.products-carousel .product-img {
  height: 180px;
}

.products-carousel .product-title {
  font-size: 1rem;
}

/* Archive Grid */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.1);
}

.product-img {
  background: var(--bg-main);
  border-radius: var(--radius-sm);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}

.oz-marka-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(14, 165, 233, 0.85);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  z-index: 10;
  pointer-events: none;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
}

.product-card:hover .oz-marka-badge {
  background: rgba(14, 165, 233, 1);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.6);
  transform: scale(1.05);
}

.product-img .product-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.placeholder-img {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.product-meta {
  margin-top: auto;
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.product-meta span {
  background: var(--bg-main);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}

/* ── Why Us Section ── */
.why-us-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2744 100%);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

/* Header */
.why-us-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}

.why-us-badge {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 50px;
  color: #38bdf8;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.why-us-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.why-us-title span {
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-us-desc {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Stats */
.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
}

.why-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.why-stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.why-stat-num span {
  font-size: 1.5rem;
  color: #38bdf8;
}

.why-stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: #64748b;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Feature Cards */
.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.why-feature {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.why-feature:hover {
  background: rgba(14, 165, 233, 0.07);
  border-color: rgba(14, 165, 233, 0.2);
  transform: translateY(-4px);
}

.why-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(2, 132, 199, 0.1));
  border: 1px solid rgba(14, 165, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  margin-bottom: 1.25rem;
}

.why-feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.why-feature p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
}

/* CTA */
.why-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .why-us-section {
    padding: 4rem 0;
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.25rem;
  }

  .why-stat-num {
    font-size: 2rem;
  }

  .why-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-feature {
    padding: 1.5rem;
  }

  .why-cta {
    gap: 1rem;
  }
}

/* Archive Layout */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 7rem 0 5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(2, 132, 199, 0.1) 0%, transparent 40%);
  animation: slowSpin 25s linear infinite;
  z-index: 0;
}

@keyframes slowSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

.page-hero .page-title {
  color: white;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.archive-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.archive-sidebar {
  width: 100%;
  text-align: center;
}

.filter-group {
  margin-bottom: 2.5rem;
}

.filter-group h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.filter-select:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

/* ── Footer ── */
.site-footer {
  background: #060d1a;
  color: #64748b;
  padding: 5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Brand Col */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.footer-brand .footer-logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.3);
  color: #38bdf8;
  transform: translateY(-2px);
}

/* Column Titles */
.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

/* Nav Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #38bdf8;
}

/* Contact List */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #475569;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #38bdf8;
}

.footer-contact a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #38bdf8;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: #334155;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom-right {
  color: #334155;
}

/* Footer Responsive */
@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}


/* ============================================================
   RESPONSIVE - Mobile First
   ============================================================ */

/* Tablet: ≤ 992px */
@media (max-width: 992px) {

  /* Archive */
  .archive-container {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .archive-sidebar {
    position: static;
    margin-bottom: 2rem;
  }

  /* Hero */
  .page-hero {
    padding: 5rem 0 3rem;
  }

  .page-hero .page-title {
    font-size: 2.5rem;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  /* Products Grid */
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {

  /* Global spacing */
  .container {
    padding: 0 1.25rem;
  }

  /* Header: already handled by header-specific rule above */

  /* Hero */
  .page-hero {
    padding: 4rem 0 2.5rem;
  }

  .page-hero .page-title {
    font-size: 1.9rem;
    letter-spacing: -0.5px;
  }

  .page-hero p {
    font-size: 1rem !important;
  }

  /* Homepage Hero (index) */
  .hero-title {
    font-size: 2.2rem !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /* Stats row */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem;
  }

  /* Section title */
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  /* Archive layout */
  .archive-container {
    padding: 1.5rem 1.25rem;
    gap: 2rem;
  }

  .archive-sidebar {
    text-align: left;
  }

  /* Brand buttons: scroll horizontally on mobile */
  .brand-visual-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .brand-visual-list::-webkit-scrollbar {
    display: none;
  }

  .brand-btn {
    flex-shrink: 0;
  }

  /* Category pills: horizontal scroll */
  .category-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .category-pills::-webkit-scrollbar {
    display: none;
  }

  .cat-btn {
    flex-shrink: 0;
  }

  /* Products Grid: 2 columns on mobile */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Product card: tighter on mobile */
  .product-card {
    padding: 1rem;
  }

  .product-img {
    height: 160px;
    margin-bottom: 1rem;
  }

  .product-title {
    font-size: 0.95rem;
  }

  .product-brand {
    font-size: 0.7rem;
  }

  /* Footer: single column */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer {
    padding: 3rem 0 2rem;
  }

  .footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer-bottom {
    padding-top: 2rem;
    font-size: 0.8rem;
  }

  /* Homepage brand ticker */
  .brand-ticker {
    gap: 3rem;
  }

  .brand-item {
    font-size: 1.3rem;
  }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {

  /* Only 1 column on very small screens */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .page-hero .page-title {
    font-size: 1.6rem;
  }

  .hero-title {
    font-size: 1.8rem !important;
  }

  /* Logo sub text hidden on tiny screens */
  .logo-sub {
    display: none;
  }
}

/* Visual Filters */
.brand-visual-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.brand-btn {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: inherit;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
}

.brand-btn:hover {
  border-color: var(--accent-primary);
  background: #f0f9ff;
}

.brand-btn.active {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.cat-btn {
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cat-btn:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.cat-btn.active {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

/* Brand Oz Badge for Logos */
.brand-oz-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #0ea5e9;
  color: #ffffff;
  padding: 3px 6px;
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  border: 1.5px solid #ffffff;
  box-shadow: 0 2px 6px rgba(14, 165, 233, 0.4);
  z-index: 10;
  pointer-events: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.3s ease;
  line-height: 1;
  white-space: nowrap;
}

.brand-btn:hover .brand-oz-badge,
.brand-item:hover .brand-oz-badge {
  background: #0284c7;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.6);
}

/* Footer Oz Badge */
.footer-oz-badge {
  display: inline-block;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: #38bdf8;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Brand Tabs in Sidebar */
.brand-tabs-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.brand-tab-btn {
  background: none;
  border: none;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.brand-tab-btn:hover {
  color: var(--text-dark);
}

.brand-tab-btn.active {
  color: var(--text-dark);
  border-bottom-color: var(--accent-secondary);
}

.brand-tab-separator {
  color: #cbd5e1;
  font-size: 1.2rem;
  font-weight: 300;
}