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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background: #ffffff;
  color: #1a1a2e;
  line-height: 1.5;
}

/* ========== HEADER / NAVIGATION MENU ========== */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eef2f0;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 90px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e2a5e, #3b6eff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.3px;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #2d3a5e;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.2s;
}

.main-nav a:hover {
  color: #3b6eff;
}

.nav-shop-btn {
  background: #1e2a5e;
  color: white !important;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
}

.nav-shop-btn:hover {
  background: #0f1a47;
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #1e2a5e;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
    gap: 25px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    z-index: 999;
  }
  .main-nav.active {
    left: 0;
  }
  .main-nav a {
    font-size: 1.1rem;
  }
  .header-container {
    height: 65px;
  }
}

/* ========== HERO SECTION - WITH IMAGE (TEXT LEFT, IMAGE RIGHT) ========== */
.hero {
  background: linear-gradient(145deg, #f8faff 0%, #ffffff 100%);
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 60px 24px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #141b34;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.hero-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e2a5e, #3b6eff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 28px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1e2a5e;
  color: white;
  font-weight: 600;
  padding: 12px 34px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.2s;
  box-shadow: 0 8px 18px rgba(30, 42, 94, 0.15);
}

.btn-primary:hover {
  background: #0f1a47;
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-stack {
  position: relative;
}

.img-main {
  border-radius: 24px;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.2);
}

.img-small {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 160px;
  border-radius: 20px;
  box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.15);
  border: 4px solid white;
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    text-align: center;
  }
  .img-small {
    right: -10px;
    width: 120px;
  }
  .img-main {
    width: 100%;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== WHY CHOOSE SECTION ========== */
.why-choose {
  padding: 70px 0 50px;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #141b34;
}

.section-subhead {
  text-align: center;
  color: #5b6e8c;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #edf2f7;
  transition: 0.2s;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
  border-color: #dce5f0;
  box-shadow: 0 15px 25px -12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: -14px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #1e2a5e;
}

.feature-card p {
  color: #5a6e8c;
  font-size: 0.9rem;
}

/* ========== PRODUCT SECTIONS WITH IMAGES ========== */
.products-section {
  padding: 60px 0 40px;
  background: #fafcfd;
  border-top: 1px solid #eef2f8;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.section-header h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #141b34;
}

.section-header p {
  color: #5b6e8c;
  font-size: 0.9rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* desktop default */
    gap: 30px;
    margin-top: 20px;
}

/* Tablet */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.product-card {
  background: white;
  border-radius: 24px;
  padding: 20px;
  border: 1px solid #eef2f0;
  transition: 0.2s;
  gap: 16px;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    position: relative;
    justify-content: center;
    display: grid;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #cddae9;
  box-shadow: 0 20px 28px -12px rgba(0, 0, 0, 0.08);
}

.product-image {
  width: 100%;
    height: auto;
    border-radius: 16px;
    align-items: center;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
     object-fit: fill;
    max-width: 190px;
}

.product-info {
  flex: 1;
}

.brand-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3b6eff;
  background: #eef4ff;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 30px;
  margin-bottom: 8px;
}

.product-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 4px 0 6px;
  line-height: 1.3;
  color: #121826;
}

.product-desc {
  font-size: 0.75rem;
  color: #68748e;
  margin-bottom: 8px;
  line-height: 1.3;
}

.stars {
  color: #f5b042;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin: 6px 0 10px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 1px solid #cddae9;
  padding: 5px 14px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.7rem;
  text-decoration: none;
  color: #1e2a5e;
  transition: 0.2s;
        margin-top: 12px;
}

.read-more:hover {
  background: #1e2a5e;
  color: white;
  border-color: #1e2a5e;
}

@media (max-width: 640px) {
  .product-card {
    flex-direction: column;
    text-align: center;
  }
  .product-info {
    text-align: center;
  }
  .product-image {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
  }
}

.mt-3 {
  margin-top: 24px;
}

/* CTA BANNER */
.cta-banner {
  background: #f0f4fe;
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #141b34;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: #3f5579;
  max-width: 550px;
  margin: 0 auto 28px;
}

/* ========== FOOTER ========== */
.footer {
  background: #0c1126;
  color: #e2e8f0;
  padding: 55px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 45px;
  margin-bottom: 45px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 18px;
  font-size: 1.15rem;
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  color: #b9c2dd;
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-col a:hover {
  color: white;
}

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

.footer-col li {
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  border-top: 1px solid #1f2a50;
  padding-top: 28px;
  font-size: 0.8rem;
  color: #8a98b9;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }
  .hero-content h2 {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }
  .container {
    padding: 0 20px;
  }
  .cta-banner h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }
  .hero-content h2 {
    font-size: 1.5rem;
  }
  .btn-primary {
    padding: 10px 26px;
  }
}


