/* Modernized Stylesheet - Mobile First */

:root {
  --primary: #3483fa;
  --secondary: #00c7b6;
  --text-color: #333;
  --bg-light: #fff;
  --bg-dark: #f9f9f9;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --font-main: "Inter", Arial, sans-serif;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul { list-style: none; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--text-color);
  background-color: var(--bg-dark);
  line-height: 1.5;
}

.section {
    width: 100%;
    margin: 0px auto;
    text-align: -webkit-center;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
  padding: 0 16px;
}

/* Header */
.header {
  background: var(--bg-light);
  box-shadow: var(--shadow);
  padding: 0px 0;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img { max-height: 50px; }
.cart-icon svg { stroke: var(--primary); }

/* Hero */
.hero {
  text-align: center;
  padding: 8px 0;
  background: var(--bg-light);
}
.title {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--primary);
}
.subtitle {
  font-size: 1rem;
  color: #666;
}

/* Sections */
.section-title {
  font-size: 1.4rem;
  margin: 20px 0;
  text-align: left;
  color: var(--text-color);
}

/* Products */
.products {
  margin: 15px auto;
}
.product-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .product-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .product-list { grid-template-columns: repeat(2, 1fr); }
}

.product-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.product-item:hover { transform: translateY(-5px); }
.product-logo img { max-height: 30px; margin-bottom: 8px; }
.product-img { max-width: 70%;margin: 0px auto;margin-bottom: 12px; border-radius: var(--radius); }
.freight { color: var(--secondary); font-size: 0.9rem; margin-bottom: 8px; }
.promo-price { font-size: 1.2rem; font-weight: bold; color: var(--text-color); margin-bottom: 12px; }

.product-info-list li { font-size: 0.9rem; color: #666; }

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 16px;
  margin: 6px 0;
  border-radius: var(--radius);
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary {
  background: linear-gradient(45deg, var(--primary), #5a9bff);
  color: #fff;
}
.btn-secondary {
  background: linear-gradient(45deg, var(--secondary), #37d7b6);
  color: #fff;
}
.btn-primary:hover,
.btn-secondary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

/* Badges */
.badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: center;
  margin: 30px 0;
}
@media (min-width: 768px) {
  .badges { grid-template-columns: repeat(4, 1fr); }
}
.badge-item img { max-height: 60px; margin-bottom: 8px; }
.badge-item h3 { font-size: 1rem; margin-bottom: 4px; }
.badge-item p { font-size: 0.9rem; color: #666; }

/* Footer */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 24px 16px;
}
.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer-columns { grid-template-columns: repeat(3, 1fr); }
}
.footer h3 { margin-bottom: 8px; font-size: 1rem; }
.footer a { color: #fff; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-disclaimer { font-size: 0.8rem; margin-top: 16px; color: #ddd; text-align: center; }