:root {
  --primary-color: #0c1a30;
  /* Navy Blue */
  --secondary-color: #ffffff;
  /* White */
  --accent-color: #1e3a8a;
  /* Lighter blue for interactions */
  --text-color: #333333;
  --bg-light: #f3f4f6;
  --border-color: #e5e7eb;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

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

/* Global Typography & Reset */
body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-color);
  line-height: 1.8;
  /* Increased for readability */
  -webkit-font-smoothing: antialiased;
  /* Smoother fonts */
}

/* Header Refinement */
header {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  /* Softer shadow */
}

/* Hero Section */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(12, 26, 48, 0.7), rgba(12, 26, 48, 0.5));
  /* Gradient overlay */
}

/* Product Cards: Premium Feel */
.product-card {
  background: white;
  border-radius: 16px;
  /* More rounded */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* Soft ambient shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Buttons: Gradient & Pop */
.btn-primary,
.contact-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover,
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  filter: brightness(1.1);
}

/* About Us & Shop Photo */
.shop-photo {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 4px solid white;
}

.about-content p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: #4a4a4a;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Social Icons: Interactive */
.social-links a {
  display: inline-flex;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy effect */
}

.social-links a:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

/* Info Cards */
.info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Header */
header {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand img {
  height: 40px;
  width: auto;
  border-radius: 4px;
}

.brand h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-btn {
  background-color: #1e3a8a;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #1e3a8a;
  display: inline-block;
}

.contact-btn:hover {
  background-color: #0c1a30;
  border-color: #0c1a30;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-image: url('./assets/hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--secondary-color);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 26, 48, 0.6);
  /* Overlay */
}

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

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Smart TV carousel */
.smart-tv-showcase {
  max-width: 1280px;
  margin: 3rem auto;
  padding: 3.5rem 1.25rem 4rem;
  background: radial-gradient(120% 120% at 10% 20%, #e0e7ff 0, #eef2ff 40%, #f8fbff 100%);
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(30, 64, 175, 0.12);
}

.smart-tv-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: #0f172a;
}

.smart-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 1.05rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1e3a8a;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.smart-tv-head h2 {
  font-size: 2.1rem;
  margin: 0.75rem 0 0.4rem;
  letter-spacing: -0.02em;
}

.smart-tv-head p {
  color: #475569;
  font-size: 1rem;
}

.smart-carousel {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-window {
  overflow: hidden;
  flex: 1;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.carousel-window:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 1.1rem;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.tv-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 1rem 1rem 1.25rem;
  min-width: clamp(260px, 32vw, 340px);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.tv-card.is-active {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 45px rgba(30, 64, 175, 0.18);
  border-color: #bfdbfe;
}

.tv-image-wrap {
  background: #f8fafc;
  border-radius: 12px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.tv-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tv-chip {
  align-self: flex-start;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  background: #e2e8f0;
  color: #0f172a;
}

.tv-card[data-tone="mint"] .tv-chip {
  background: #d1fae5;
  color: #166534;
}

.tv-card[data-tone="amber"] .tv-chip {
  background: #fef3c7;
  color: #92400e;
}

.tv-card[data-tone="rose"] .tv-chip {
  background: #ffe4e6;
  color: #9f1239;
}

.tv-card[data-tone="blue"] .tv-chip {
  background: #dbeafe;
  color: #1d4ed8;
}

.tv-card[data-tone="violet"] .tv-chip {
  background: #ede9fe;
  color: #5b21b6;
}

.tv-card h3 {
  font-size: 1.1rem;
  color: #0f172a;
}

.tv-card p {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.5;
}

.tv-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  background: #f8fafc;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.tv-link i {
  color: inherit;
}

.tv-card:hover .tv-link {
  background: #e0f2fe;
  color: #1d4ed8;
  transform: translateX(2px);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #1e293b;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #cbd5e1;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.carousel-dots .dot.active {
  width: 28px;
  background: #2563eb;
}

/* Catalog Section */
.catalog-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  background: none;
  border: 2px solid var(--primary-color);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

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

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img {
  width: 100%;
  height: 280px;
  background-color: #fff;
  object-fit: contain;
  padding: 10px;
}

.card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.card-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.inquire-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  /* WhatsApp Green */
  color: white;
  text-decoration: none;
  padding: 0.85rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s;
}

.inquire-btn:hover {
  background-color: #1ebc57;
}

/* About Section */
.about-section {
  background-color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.insta-id {
  font-weight: 700;
  color: #E1306C;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Shop Reels */
.reels-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.reel-wrapper {
  position: relative;
  width: 300px;
  flex: 0 1 30%;
  /* Try to fit 3 in row */
  min-width: 250px;
  max-width: 350px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: #000;
  border: 4px solid var(--primary-color);
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Location Section */
.location-section {
  background-color: var(--bg-light);
  padding: 4rem 1rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.store-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.shop-inside-img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
  object-fit: cover;
  flex: 1 1 300px;
}

.info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  flex: 1 1 300px;
  min-width: 300px;
  max-width: 500px;
}

.info-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: auto;
}

/* Brands Section */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 3rem auto 0;
  align-items: center;
}

.brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  max-width: 150px;
}

.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  header {
    padding: 0.75rem 1rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  .brand h1 {
    font-size: 1rem;
  }

  .brand p {
    font-size: 0.75rem !important;
  }

  .brand img {
    height: 32px;
  }

  nav {
    width: 100%;
    justify-content: center !important;
  }

  .contact-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .hero {
    height: 50vh;
    min-height: 300px;
  }

  .hero h2 {
    font-size: 1.5rem;
    padding: 0 1rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .smart-tv-showcase {
    padding: 2rem 0.75rem;
    margin: 1.5rem auto;
  }

  .smart-tv-head h2 {
    font-size: 1.6rem;
  }

  .smart-tv-head p {
    font-size: 0.9rem;
  }

  .smart-pill {
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .tv-card {
    min-width: clamp(220px, 85vw, 280px);
    padding: 0.85rem;
  }

  .tv-image-wrap {
    height: 160px;
  }

  .tv-card h3 {
    font-size: 1rem;
  }

  .tv-card p {
    font-size: 0.9rem;
  }

  .tv-chip {
    font-size: 0.8rem;
    padding: 0.25rem 0.7rem;
  }

  .tv-link {
    font-size: 0.85rem;
    padding: 0.55rem 0.7rem;
  }

  .carousel-dots .dot {
    width: 8px;
    height: 8px;
  }

  .carousel-dots .dot.active {
    width: 22px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card-img {
    height: 220px;
  }

  .reels-container {
    gap: 1rem;
  }

  .reel-wrapper {
    width: 100%;
    max-width: 300px;
  }

  .brands-grid {
    gap: 1.5rem;
  }

  .brand-logo {
    height: 45px;
  }

  .store-info {
    gap: 1.5rem;
  }

  .info-card {
    padding: 1.5rem;
    min-width: unset;
  }

  .action-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .shop-photo {
    max-width: 100%;
    border-radius: 12px;
    border: 2px solid white;
  }
}

@media (max-width: 900px) {
  .smart-tv-showcase {
    padding: 2.5rem 1rem 3rem;
  }

  .smart-carousel {
    gap: 0.5rem;
  }

  .tv-card {
    min-width: clamp(240px, 70vw, 320px);
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  header {
    padding: 1rem 1.5rem;
  }

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

  .hero h2 {
    font-size: 2rem;
  }

  .smart-tv-head h2 {
    font-size: 1.8rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* About Page Redesign */
.trust-badge {
  background-color: #FEF3C7;
  color: #D97706;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  text-align: left;
}

.about-text-col h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8fafc;
  padding: 1rem;
  border-radius: 12px;
  margin-top: 2rem;
  border: 1px solid #e2e8f0;
}

.founder-avatar {
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: white;
  /* Light background */
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  background: #eff6ff;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.stat-card h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0px;
}

.stat-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
}

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