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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
  width: auto;
}

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

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  transition: color 0.2s;
  padding: 5px 0;
}

.nav a:hover,
.nav a.active {
  color: #1a73e8;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  border-radius: 8px;
  min-width: 200px;
  padding: 8px 0;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

/* Promo Hero Banner */
.promo-hero {
  background: #d60000;
  color: #fff;
  padding: 90px 20px;
  text-align: center;
}

.promo-hero-content {
  max-width: 1100px;
  margin: 0 auto;
}

.promo-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 32px;
}

.promo-subtitle {
  font-size: 19px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  margin-top: -8px;
}

.promo-shop-now {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.85);
  padding: 16px 52px;
  transition: all 0.25s;
}

.promo-shop-now:hover {
  background: #fff;
  color: #d60000;
  border-color: #fff;
}

/* Perks Strip */
.perks-strip {
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
  padding: 32px 20px;
}

.perks-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 8px;
}

.perk-icon {
  font-size: 30px;
  flex-shrink: 0;
}

.perk-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 3px;
}

.perk-text span {
  font-size: 13px;
  color: #888;
}

/* Page Hero (interior pages) */
.page-hero {
  background: #1a1a2e;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.page-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 0;
  font-size: 13px;
  color: #999;
}

.breadcrumb a {
  color: #999;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.breadcrumb a:hover {
  color: #333;
}

.breadcrumb span {
  margin: 0 6px;
}

/* Hero */
.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner1.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #1a1a2e;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.2s;
  border: 2px solid #fff;
}

.btn:hover {
  background: transparent;
  color: #fff;
}

.btn-primary {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}

.btn-primary:hover {
  background: #2d2d4a;
  border-color: #2d2d4a;
}

/* Products Section */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 42px;
  font-weight: 400;
  color: #000;
  margin-bottom: 0;
}

.section-header .section-title {
  margin-bottom: 0;
}

.view-all {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  border: 1px solid #000;
  padding: 14px 32px;
  transition: all 0.2s;
}

.view-all:hover {
  background: #000;
  color: #fff;
}

/* Banner Images */
.banner-images {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.banner-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #eee;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f8f8;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  background: #2b2b2b;
}

.badge-trending,
.badge-top-rated,
.badge-best-seller,
.badge-limited,
.badge-new {
  background: #2b2b2b;
  color: #fff;
}

.product-info {
  padding: 16px;
}

.product-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.4;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
}

/* Vision Section */
.vision {
  background: #1a1a2e;
  padding: 90px 20px;
  text-align: center;
}

.vision-inner {
  max-width: 700px;
  margin: 0 auto;
}

.vision-accent {
  width: 48px;
  height: 3px;
  background: #d60000;
  margin: 0 auto 28px;
}

.vision h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
}

.vision p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
}

/* Follow Us */
.social-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.social-section h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #000;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.social-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

/* Footer */
.footer {
  background: #1a1a2e;
  color: #fff;
  padding: 50px 20px 30px;
}

.footer-centered {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-centered .footer-logo {
  margin: 0 auto 20px;
  display: block;
}

.footer-centered .footer-social {
  justify-content: center;
  margin-bottom: 24px;
}

.footer-contact-info p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: #ccc;
  line-height: 1.8;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-social a img {
  width: 28px;
  height: 28px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-social a:hover img {
  opacity: 1;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #888;
}

.payment-methods img {
  height: 24px;
}

/* Contact Page */

.contact-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a73e8;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
}

.contact-info-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #1a1a2e;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #555;
}

.contact-detail .icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* Product Detail Page */
.product-detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.product-detail-image {
  border-radius: 12px;
  overflow: hidden;
  background: #f8f8f8;
}

.product-detail-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-detail-info h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.product-detail-price {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 24px;
}

.product-detail-features {
  list-style: none;
  margin-bottom: 30px;
}

.product-detail-features li {
  padding: 8px 0;
  font-size: 15px;
  color: #555;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-detail-features li::before {
  content: '✓';
  color: #6bcb77;
  font-weight: 700;
}

.product-detail-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.add-to-cart {
  display: inline-block;
  padding: 16px 48px;
  background: #1a1a2e;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.add-to-cart:hover {
  background: #2d2d4a;
}

/* Policy Pages */
.policy-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.policy-page h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 42px;
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
}

.policy-page h2 {
  font-size: 22px;
  color: #1a1a2e;
  margin: 30px 0 12px;
}

.policy-page p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Catalog page */

/* Responsive */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    gap: 16px;
  }
  .nav.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    height: 350px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .contact-section {
    grid-template-columns: 1fr;
  }
  .product-detail {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner-grid {
    grid-template-columns: 1fr;
  }
  .banner-grid img {
    height: 200px;
  }
  .promo-hero {
    padding: 50px 20px;
  }
  .promo-hero h1 {
    font-size: 36px;
  }
  .page-hero {
    padding: 50px 20px;
  }
  .page-hero h1 {
    font-size: 34px;
  }
  .perks-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .vision h2 {
    font-size: 30px;
  }
  .section-title,
  .vision h2,
  .social-section h2 {
    font-size: 30px;
  }
  .section-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .product-info {
    padding: 10px;
  }
  .product-name {
    font-size: 13px;
  }
  .product-price {
    font-size: 16px;
  }
}
