/* ===== TYGATEC EXACT CLONE CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --yellow: #8898e6;
  --yellow-dark: #6e7cd6;
  --black: #000000;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --gray: #999999;
  --dark-gray: #333333;
  --text: #1a1a1a;
  --border: #e0e0e0;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: #193169;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-wrap {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.ticker {
  display: flex;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticker-item::after {
  content: '•';
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--yellow);
  border-bottom: none;
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  flex-shrink: 0;
  padding: 20px 0;
  display: flex;
  align-items: center;
}
.logo img {
  height: 50px;
  width: auto;
}
.logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0px;
  color: var(--white);
  font-style: normal;
}
.logo-tiger {
  font-size: 24px;
}

/* Nav */
.main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-item > a, .nav-item > button {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 20px 0;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-item > a:hover, .nav-item > button:hover { color: #e0e6ff; }
.nav-item .chevron { font-size: 10px; }

/* Dropdown & Mega Menu */
.main-nav { position: static; }
.header-inner { position: relative; }
.nav-item { position: static; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  display: flex;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.mega-link:hover {
  color: var(--yellow);
}
.mega-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  overflow: hidden;
  transition: transform 0.2s;
}
.mega-link:hover .mega-icon {
  transform: scale(1.05);
  border-color: var(--yellow);
}
.mega-icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  mix-blend-mode: darken;
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.header-icons button, .header-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  padding: 4px;
  position: relative;
  transition: color 0.2s;
}
.header-icons button:hover, .header-icons a:hover { color: #e0e6ff; }
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== HERO SLIDER BANNER ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--light-gray);
}
.slides { display: flex; transition: transform 0.6s ease; }
.slide.banner-slide {
  min-width: 100%;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10%;
  overflow: hidden;
  background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%); /* Premium light gradient for all */
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  color: var(--black);
}
.banner-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 16px;
}
.banner-content h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--black);
}
.banner-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.6;
  color: var(--dark-gray);
}

.banner-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10%;
}
.banner-image img {
  max-width: 100%;
  max-height: 85%;
  object-fit: contain;
  mix-blend-mode: multiply; /* Blends white backgrounds perfectly with the light gradient */
  transition: transform 0.8s ease;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}
.banner-slide:hover .banner-image img {
  transform: scale(1.05);
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(245,197,24,0.3);
}
.explore-btn:hover { 
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245,197,24,0.4);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--black);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 10;
  transition: all 0.2s;
}
.slider-btn:hover { background: var(--black); color: var(--white); }
.slider-btn.prev { left: 30px; }
.slider-btn.next { right: 30px; }

/* ===== CATEGORY SHOWCASE ===== */
.category-showcase {
  position: relative;
  background: var(--white);
  padding-bottom: 40px;
}
.cat-showcase-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: repeating-linear-gradient(110deg, var(--yellow), var(--yellow) 80px, var(--yellow-dark) 80px, var(--yellow-dark) 160px);
  opacity: 0.8;
}
.cat-showcase-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 40px 24px 0;
}
.cat-showcase-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s;
}
.cat-showcase-item:hover {
  transform: translateY(-8px);
}
.cat-showcase-item img {
  width: 100%;
  max-width: 220px;
  height: 220px;
  object-fit: contain;
  margin-bottom: 20px;
  background: #f5f5f5;
  border-radius: 50%;
  padding: 20px;
  filter: drop-shadow(0 15px 15px rgba(0,0,0,0.05));
}
.cat-showcase-item span {
  background: var(--white);
  color: var(--yellow);
  border: 1px solid var(--yellow);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 30px;
  text-transform: uppercase;
  width: auto;
  box-shadow: none;
  transition: background 0.3s, color 0.3s;
}
.cat-showcase-item:hover span {
  background: var(--yellow);
  color: var(--white);
}

/* ===== TICKER BANNER ===== */
.brand-ticker-bar {
  background: transparent;
  color: #92d499;
  padding: 50px 0 30px 0;
  overflow: hidden;
}
.brand-ticker {
  display: flex;
  animation: ticker 25s linear infinite;
}
.brand-ticker-item {
  padding: 0 40px;
  font-size: 50px;
  font-weight: 900;
  text-transform: capitalize;
  letter-spacing: 2px;
  white-space: nowrap;
  opacity: 0.8;
}

/* ===== WHY TYGATEC SECTION ===== */
.why-section {
  padding: 50px 0;
  background: var(--white);
}
.section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--black);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}
.why-item {
  cursor: pointer;
}
.why-icon {
  width: 80px;
  height: 80px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(245,197,24,0.3);
  transition: transform 0.3s ease;
}
.why-item:hover .why-icon {
  transform: translateY(-8px);
}
.why-item-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ===== PRODUCTS IN ACTION ===== */
.products-action {
  padding: 40px 0;
  background: var(--white);
}
.action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: transparent;
}
.action-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.action-card-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.action-card-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 0;
}
.action-card-thumb {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 2px;
  flex-shrink: 0;
}
.action-card-name {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--dark-gray);
}
.action-card-price {
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.action-card-footer {
  display: flex;
  border-top: 1px solid var(--border);
  margin-top: 10px;
}
.btn-add-cart {
  flex: 1;
  background: var(--yellow);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 12px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: capitalize;
}
.btn-add-cart:hover { background: var(--yellow-dark); }
.btn-add-cart.sold-out { background: var(--yellow); color: var(--white); cursor: default; }
.btn-more {
  width: 44px;
  background: var(--yellow);
  border-left: 1px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
}
.btn-more:hover { background: var(--yellow-dark); }



/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal.fade-left {
  transform: translateX(-40px);
}
.reveal.fade-right {
  transform: translateX(40px);
}
.reveal.zoom-in {
  transform: scale(0.95);
}
.reveal.active.fade-left,
.reveal.active.fade-right {
  transform: translateX(0);
}
.reveal.active.zoom-in {
  transform: scale(1);
}
/* Staggering utility */
.reveal.delay-100 { transition-delay: 0.1s; }
.reveal.delay-200 { transition-delay: 0.2s; }
.reveal.delay-300 { transition-delay: 0.3s; }
.reveal.delay-400 { transition-delay: 0.4s; }

/* ===== BEST SELLERS ===== */
.best-sellers {
  padding: 50px 0;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.view-all-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-gray);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s;
}
.view-all-link:hover { border-color: var(--black); color: var(--black); }
.products-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s;
  cursor: pointer;
}
.product-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--light-gray);
}
.product-card-img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  mix-blend-mode: darken;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img { transform: scale(1.04); }
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}
.badge-sold-out { background: var(--black); color: var(--white); }
.badge-save { background: var(--yellow); color: var(--black); }
.product-card-body { padding: 12px; }
.product-card-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-gray);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.star-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.stars { color: var(--yellow); font-size: 13px; }
.review-count { font-size: 12px; color: var(--gray); }
.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.price-sale { font-size: 15px; font-weight: 700; color: var(--black); }
.price-original { font-size: 13px; color: var(--gray); text-decoration: line-through; }

/* ===== RECOMMENDED BY ===== */
.recommended-section {
  padding: 50px 0;
  background: var(--white);
}
.recommended-slider {
  position: relative;
  display: flex;
  align-items: center;
}
.recommended-track {
  width: 100%;
  min-width: 0;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex-grow: 1;
  padding: 10px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.recommended-track::-webkit-scrollbar { display: none; }
.recommended-card {
  min-width: 320px;
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.recommended-card:hover { transform: scale(1.02); }
.rec-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rec-thumb::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.25);
}
.play-btn {
  position: relative;
  width: 50px;
  height: 35px;
  background: rgba(0,0,0,0.8);
  border-radius: 6px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}
.recommended-card:hover .play-btn { background: #ff0000; transform: scale(1.1); }
.rec-text {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  z-index: 2;
  text-transform: uppercase;
}
.rec-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background 0.2s;
}
.rec-nav:hover { background: var(--light-gray); }
.rec-nav.prev { left: -20px; }
.rec-nav.next { right: -20px; }

/* ===== FEATURED COLLECTION ===== */
.featured-collection {
  padding: 60px 0;
  background: var(--light-gray);
}
.featured-slider {
  position: relative;
  display: flex;
  align-items: center;
}
.featured-track {
  width: 100%;
  min-width: 0;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex-grow: 1;
  padding: 15px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.featured-track::-webkit-scrollbar { display: none; }
.feat-card {
  min-width: 320px;
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  position: relative;
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.feat-card:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.06); }
.feat-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
  text-transform: uppercase;
}
.feat-img-wrap {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.feat-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 20px;
}
.feat-img.hover-img {
  opacity: 0;
  object-fit: cover;
  padding: 0;
}
.feat-img.hover-img.zoomed {
  object-fit: cover;
  transform: scale(1.3);
  filter: brightness(0.7); /* Darken slightly to mimic lifestyle shot */
}
.feat-card:hover .primary-img { opacity: 0; }
.feat-card:hover .hover-img {
  opacity: 1;
}
.feat-card:hover .hover-img.zoomed {
  transform: scale(1.4); /* Extra zoom on hover */
}
.quick-add-btn {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  transition: bottom 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.quick-add-btn:hover {
  background: var(--black);
  color: var(--white);
}
.feat-card:hover .quick-add-btn {
  bottom: 20px;
}
.feat-info {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.feat-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
}
.feat-rating {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.feat-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background 0.2s;
}
.feat-nav:hover { background: var(--light-gray); }
.feat-nav.prev { left: -22px; }
.feat-nav.next { right: -22px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--yellow);
  color: var(--white);
  padding: 50px 0 0;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-newsletter h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
.newsletter-form {
  display: flex;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  margin-bottom: 28px;
}
.newsletter-input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  background: transparent;
}
.newsletter-btn {
  background: var(--yellow);
  border: none;
  padding: 0 16px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}
.footer-contact h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.footer-contact p {
  font-size: 13px;
  margin-bottom: 6px;
  line-height: 1.6;
}
.footer-contact strong { font-weight: 700; }
.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  font-size: 20px;
}
.social-icons a { color: var(--black); transition: opacity 0.2s; }
.social-icons a:hover { opacity: 0.7; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: var(--dark-gray);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--black); }
.footer-bottom {
  max-width: 1440px;
  margin: 40px auto 0;
  padding: 16px 24px;
  border-top: 1px solid rgba(0,0,0,0.15);
  background: var(--black);
  text-align: center;
  color: var(--white);
  font-size: 12px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25d366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: red;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== NEWSLETTER POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-overlay.hidden { display: none; }
.popup-box {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  max-width: 420px;
  width: 90%;
  position: relative;
  text-align: center;
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
  color: var(--dark-gray);
}
.popup-box h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.popup-input {
  width: 100%;
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 14px;
  font-family: var(--font);
  outline: none;
}
.popup-btn {
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
}
.popup-desc { font-size: 12px; color: var(--gray); margin-top: 12px; }

/* Responsive */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .action-grid { grid-template-columns: repeat(2, 1fr); }
  .products-scroll { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .slide { height: 280px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-scroll { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
}


/* === IN-HOUSE MANUFACTURED === */
.inhouse-section {
  padding: 40px 0 60px 0;
  background: var(--white);
}
.inhouse-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.inhouse-track {
  display: flex;
  width: max-content;
  animation: inhouseScroll 30s linear infinite;
}
.inhouse-item {
  flex: 0 0 auto;
  width: 350px;
  margin: 0;
  padding: 0;
}
.inhouse-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
@keyframes inhouseScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* === REVIEWS SUMMARY === */
.reviews-summary {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid #eaeaea;
}
.reviews-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.review-text {
  font-size: 14px;
  color: var(--gray);
  flex: 1;
}
.review-text:first-child {
  text-align: right;
}
.review-text:last-child {
  text-align: left;
}
.review-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.review-rating-block {
  display: flex;
  align-items: center;
  gap: 15px;
}
.rating-number {
  font-size: 52px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.review-stars {
  color: #ffb800;
  font-size: 18px;
  display: flex;
  gap: 4px;
}
@media (max-width: 768px) {
  .reviews-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .review-text:first-child, .review-text:last-child {
    text-align: center;
  }
}

/* TRACK ORDER MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: #fff; padding: 40px; border-radius: 8px;
  width: 90%; max-width: 500px; position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.close-modal {
  position: absolute; top: 16px; right: 24px;
  font-size: 28px; cursor: pointer; color: #888;
}
.close-modal:hover { color: #333; }
