:root {
  --green: #2ecc71;
  --green-dark: #27ae60;
  --orange: #e67e22;
  --orange-dark: #d35400;
  --dark: #1a1a2e;
  --dark-soft: #2d2d44;
  --light: #f8f9fa;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --text: #333333;
  --text-light: #777777;
  --rating: #f1c40f;
  --danger: #e74c3c;
  --shadow: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
  --radius: 10px;
  --radius-sm: 6px;
  --transition: all 0.25s ease;
  --font: 'Poppins', Arial, sans-serif;
}

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

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--orange-dark);
}

h1, h2, h3, h4 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--dark);
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
h2 span {
  color: var(--orange);
}

.container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
}

.section {
  padding: 28px 24px;
}

/* === HEADER === */
.header {
  background: var(--dark);
  padding: 16px 24px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}
.header-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-cart {
  position: relative;
  color: var(--white);
  font-size: 20px;
}
.header-cart .cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-nav {
  display: flex;
  gap: 14px;
}
.header-nav a {
  color: var(--light-gray);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.header-nav a:hover {
  color: var(--green);
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero-content {
  padding: 40px 24px 32px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.hero-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.hero-title span {
  color: var(--orange);
}
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-bottom: 8px;
}
.hero-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 18px;
}
.hero-price .original {
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 8px;
}
.hero-image {
  max-width: 100%;
  margin: 0 auto;
}
.hero-image img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

/* === STATS === */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  text-align: center;
}
.stat-item {
  padding: 6px 0;
}
.stat-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.2;
}
.stat-label {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 600;
}

/* === FLASH SALE === */
.flash-sale {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  text-align: center;
  padding: 18px 24px;
}
.flash-sale-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.flash-sale-title span {
  color: rgba(255,255,255,0.85);
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.countdown-item {
  text-align: center;
}
.countdown-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  background: rgba(0,0,0,0.2);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  min-width: 48px;
}
.countdown-label {
  display: block;
  font-size: 9px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* === PRODUCTS === */
.products {
  background: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.product-card {
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.product-card-image {
  position: relative;
  background: var(--white);
  padding: 16px;
  text-align: center;
}
.product-card-image img {
  max-width: 100%;
  height: 140px;
  object-fit: contain;
  margin: 0 auto;
}
.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-badge.sold-out {
  background: var(--text-light);
}
.product-card-body {
  padding: 10px 12px 14px;
}
.product-card-category {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.5px;
  font-weight: 600;
}
.product-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin: 2px 0 4px;
}
.product-card-rating {
  color: var(--rating);
  font-size: 12px;
  margin-bottom: 4px;
}
.product-card-rating .reviews {
  color: var(--text-light);
  font-size: 11px;
  font-weight: 400;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
}
.product-card-price .old {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 4px;
}
.product-card-atc {
  background: var(--orange);
  color: var(--white);
  border: none;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.product-card-atc:hover {
  background: var(--orange-dark);
  transform: scale(1.05);
}

/* === CATEGORIES === */
.categories {
  background: var(--white);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.category-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  text-align: center;
  background: var(--light);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.category-image {
  padding: 20px 12px 8px;
}
.category-image img {
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
}
.category-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  padding: 0 8px 12px;
}
.category-count {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
}

/* === PROMO BANNER === */
.promo-banner {
  background: linear-gradient(135deg, var(--green), #219a52);
  text-align: center;
  padding: 28px 24px;
}
.promo-banner h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 4px;
}
.promo-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  margin-bottom: 12px;
}
.coupon-box {
  display: inline-flex;
  align-items: center;
  background: rgba(0,0,0,0.15);
  border: 2px dashed rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  padding: 8px 20px;
  cursor: pointer;
  transition: var(--transition);
  user-select: all;
}
.coupon-box:hover {
  background: rgba(0,0,0,0.25);
}
.coupon-code {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 3px;
  font-family: 'Courier New', monospace;
}
.coupon-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}
.coupon-hint span {
  color: var(--white);
  text-decoration: underline;
  cursor: pointer;
}

/* === FEATURED SPOTLIGHT === */
.spotlight {
  background: var(--white);
}
.spotlight-card {
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.spotlight-image {
  background: var(--dark-soft);
  text-align: center;
  padding: 24px;
}
.spotlight-image img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin: 0 auto;
}
.spotlight-body {
  padding: 20px 24px 24px;
}
.spotlight-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.spotlight-body h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 6px;
}
.spotlight-body p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-bottom: 12px;
}
.spotlight-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 12px;
}
.spotlight-price .old {
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 8px;
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--light);
}
.testimonials-grid {
  display: grid;
  gap: 12px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 18px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
}
.testimonial-stars {
  color: var(--rating);
  font-size: 14px;
  margin-bottom: 6px;
}
.testimonial-text {
  font-size: 13px;
  color: var(--text);
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.testimonial-name small {
  font-weight: 400;
  color: var(--text-light);
  font-size: 11px;
}

/* === CTA === */
.cta-section {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  text-align: center;
  padding: 32px 24px;
}
.cta-section h2 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 4px;
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 16px;
}
.cta-urgency {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(230,126,34,0.4);
}
.btn-secondary {
  background: var(--white);
  color: var(--orange);
}
.btn-secondary:hover {
  background: var(--light-gray);
  transform: scale(1.03);
}
.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(46,204,113,0.4);
}
.btn-sm {
  font-size: 11px;
  padding: 8px 18px;
}

/* === SOCIAL === */
.social-section {
  background: var(--white);
  text-align: center;
  padding: 24px 24px 18px;
  border-top: 1px solid var(--light-gray);
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-soft);
  font-size: 18px;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}
.social-icon:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  padding: 24px;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}
.footer-links a:hover {
  color: var(--green);
}
.footer-info {
  margin-bottom: 8px;
  line-height: 1.8;
}
.footer-info strong {
  color: rgba(255,255,255,0.8);
}
.footer-copyright {
  color: rgba(255,255,255,0.35);
  font-size: 11px;
}
.footer-copyright a {
  color: var(--green);
}

/* === PREVIEW TEXT + UTILITIES === */
.preview-text {
  display: none;
  max-height: 0;
  overflow: hidden;
  font-size: 1px;
  color: transparent;
  line-height: 1px;
  mso-hide: all;
}
.text-center {
  text-align: center;
}
.view-browser {
  text-align: center;
  padding: 10px 24px;
  background: var(--dark);
  font-size: 11px;
}
.view-browser a {
  color: rgba(255,255,255,0.5);
}
.view-browser a:hover {
  color: var(--green);
}
.spacer-8 {
  height: 8px;
}
.spacer-16 {
  height: 16px;
}
.spacer-24 {
  height: 24px;
}

/* === RESPONSIVE === */
@media screen and (max-width: 600px) {
  .section {
    padding: 22px 18px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-content {
    padding: 30px 18px 24px;
  }
  .products-grid {
    gap: 10px;
  }
  .product-card-image img {
    height: 110px;
  }
  .categories-grid {
    gap: 8px;
  }
  .category-image img {
    height: 60px;
  }
  .stats-grid {
    gap: 6px;
  }
  .stat-number {
    font-size: 18px;
  }
  .spotlight-image img {
    height: 160px;
  }
  .header-nav {
    gap: 10px;
  }
  .header-nav a {
    font-size: 11px;
  }
}

@media screen and (max-width: 480px) {
  .section {
    padding: 18px 14px;
  }
  h2 {
    font-size: 20px;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-price {
    font-size: 22px;
  }
  .hero-image img {
    max-width: 240px;
  }
  .header {
    padding: 12px 14px;
  }
  .header-logo {
    font-size: 18px;
  }
  .header-nav a {
    font-size: 10px;
    letter-spacing: 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .stat-item {
    padding: 8px 0;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .product-card {
    display: flex;
    align-items: center;
  }
  .product-card-image {
    flex: 0 0 120px;
    padding: 10px;
  }
  .product-card-image img {
    height: 80px;
  }
  .product-card-body {
    flex: 1;
    padding: 8px 10px 8px 6px;
  }
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .category-card {
    display: flex;
    align-items: center;
    padding: 8px 14px;
  }
  .category-image {
    flex: 0 0 60px;
    padding: 0;
  }
  .category-image img {
    height: 50px;
  }
  .category-name {
    padding: 0 0 0 12px;
    font-size: 16px;
  }
  .category-count {
    display: block;
  }
  .countdown-num {
    font-size: 22px;
    min-width: 40px;
    padding: 2px 8px;
  }
  .coupon-code {
    font-size: 18px;
    letter-spacing: 2px;
  }
  .spotlight-card {
    flex-direction: column;
  }
  .spotlight-image img {
    height: 140px;
  }
  .spotlight-body {
    padding: 14px 16px 18px;
  }
  .spotlight-body h3 {
    font-size: 17px;
  }
  .btn {
    font-size: 12px;
    padding: 10px 22px;
  }
  .footer-links {
    gap: 4px 12px;
  }
  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .cta-section h2 {
    font-size: 22px;
  }
}
