/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --primary-color: #d4af37;
  --primary-dark: #b8941f;
  --secondary-color: #1a1a1a;
  --accent-color: #dc3545;
  --text-color: #333333;
  --text-light: #666666;
  --white-color: #ffffff;
  --gray-light: #f8f9fa;
  --gray-medium: #e9ecef;
  --gray-dark: #2d2d2d;
  --success-color: #1e7e34;
  
  /* Typography */
  --body-font: 'Inter', sans-serif;
  --title-font: 'Oswald', sans-serif;
  --biggest-font-size: 3rem;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  
  /* Font Weight */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  
  /* Spacing */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  
  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  
  /* Border Radius */
  --border-radius: 8px;
  --border-radius-small: 4px;
  --border-radius-large: 16px;
  
  /* Shadows */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--white-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: var(--secondary-color);
  font-family: var(--title-font);
  font-weight: var(--font-semi-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

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

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section {
  padding: 4rem 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--mb-3);
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--secondary-color);
  margin-bottom: var(--mb-0-5);
  position: relative;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 2px;
}

.section__subtitle {
  color: var(--text-light);
  font-size: var(--normal-font-size);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  min-width: 140px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--secondary-color);
  box-shadow: var(--shadow-light);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn--secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  backdrop-filter: blur(10px);
  z-index: var(--z-fixed);
  transition: var(--transition);
  border-bottom: 1px solid var(--primary-dark);
  box-shadow: var(--shadow-light);
}

.nav {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo-img {
  height: 50px;
  width: auto;
}

.nav__list {
  display: flex;
  column-gap: 2rem;
}

.nav__link {
  color: var(--secondary-color);
  font-weight: var(--font-medium);
  transition: var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--white-color);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white-color);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

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

.nav__search,
.nav__cart {
  font-size: 1.25rem;
  color: var(--secondary-color);
  transition: var(--transition);
  position: relative;
}

.nav__search:hover,
.nav__cart:hover {
  color: var(--white-color);
}

.nav__cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-color);
  color: var(--white-color);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-bold);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__toggle,
.nav__close {
  display: none;
}

/* ===== HERO ===== */
.hero {
  padding-top: 120px;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--white-color) 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--secondary-color) 0%, transparent 50%);
  opacity: 0.05;
  z-index: 0;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.hero__content {
  position: relative;
}

.hero__logo-highlight {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  margin-bottom: var(--mb-2);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-heavy);
  position: relative;
  overflow: hidden;
}

.hero__logo-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  opacity: 0.1;
  transform: translate(30px, -30px);
}

.hero__logo-img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
  position: relative;
  z-index: 1;
}

.hero__logo-text {
  color: var(--white-color);
  font-family: var(--title-font);
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  position: relative;
  z-index: 1;
}

.hero__logo-subtext {
  color: var(--primary-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__title {
  font-size: var(--biggest-font-size);
  font-family: var(--title-font);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-1);
  line-height: 1.1;
}

.hero__title-accent {
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: var(--mb-2);
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-bg {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero__img {
  position: relative;
  z-index: 1;
  max-width: 400px;
  filter: drop-shadow(var(--shadow-medium));
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-size: var(--h1-font-size);
  font-family: var(--title-font);
  color: var(--primary-color);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-0-25);
}

.hero__stat-text {
  color: var(--text-light);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

/* ===== CATEGORIES ===== */
.categories__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.category__card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-medium);
  position: relative;
  overflow: hidden;
}

.category__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: var(--transition);
}

.category__card:hover::before {
  left: 100%;
}

.category__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.category__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1);
  font-size: 2rem;
  color: var(--secondary-color);
}

.category__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
  color: var(--secondary-color);
}

.category__count {
  color: var(--text-light);
  margin-bottom: var(--mb-1);
}

.category__link {
  color: var(--primary-color);
  font-weight: var(--font-medium);
  transition: var(--transition);
}

.category__link:hover {
  color: var(--primary-dark);
}

/* ===== PRODUCTS ===== */
.products__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: var(--mb-3);
}

.product__card {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-medium);
  position: relative;
}

.product__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.product__image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  cursor: pointer;
}

.product__card:hover .product__img {
  transform: scale(1.05);
}

.product__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-color);
  color: var(--white-color);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  z-index: 1;
}

.product__badge.new {
  background: var(--success-color);
}

.product__actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(20px);
  transition: var(--transition);
}

.product__card:hover .product__actions {
  opacity: 1;
  transform: translateX(0);
}

.product__action {
  width: 40px;
  height: 40px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.product__action:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.product__content {
  padding: 1.5rem;
}

.product__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
  color: var(--secondary-color);
  font-weight: var(--font-medium);
}

.product__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: var(--mb-0-75);
}

.product__rating i {
  color: #ffc107;
  font-size: var(--small-font-size);
}

.product__rating-count {
  color: var(--text-light);
  font-size: var(--small-font-size);
  margin-left: 0.5rem;
}

.product__price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--mb-1);
}

.product__price-old {
  color: var(--text-light);
  text-decoration: line-through;
  font-size: var(--small-font-size);
}

.product__price-current {
  color: var(--primary-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
}

.product__btn {
  width: 100%;
}

.products__more {
  text-align: center;
}

/* ===== OFFERS ===== */
.offers__banner {
  background: linear-gradient(135deg, var(--secondary-color), var(--gray-dark));
  color: var(--white-color);
  padding: 4rem 2rem;
  border-radius: var(--border-radius-large);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offers__banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0.1;
  animation: rotate 20s linear infinite;
}

.offers__content {
  position: relative;
  z-index: 1;
}

.offers__title {
  font-size: var(--biggest-font-size);
  font-family: var(--title-font);
  margin-bottom: var(--mb-0-5);
  color: var(--white-color);
}

.offers__subtitle {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-2);
  color: var(--primary-color);
}

.offers__countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: var(--mb-2);
  flex-wrap: wrap;
}

.countdown__item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  min-width: 80px;
}

.countdown__number {
  display: block;
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  font-family: var(--title-font);
}

.countdown__label {
  font-size: var(--small-font-size);
  color: var(--white-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== ABOUT ===== */
.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.about__title {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-1);
}

.about__description {
  color: var(--text-light);
  margin-bottom: var(--mb-2);
  line-height: 1.7;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about__feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about__feature-title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
  color: var(--secondary-color);
}

.about__feature-text {
  color: var(--text-light);
}

.about__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__img {
  max-width: 300px;
  filter: drop-shadow(var(--shadow-medium));
}

/* ===== FOOTER ===== */
.footer {
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 3rem 0 1rem;
}

.footer__container {
  display: grid;
  gap: 2rem;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer__logo-img {
  height: 60px;
  margin-bottom: var(--mb-1);
}

.footer__description {
  color: var(--gray-medium);
  line-height: 1.6;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--primary-color);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: var(--gray-medium);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--primary-color);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-medium);
}

.footer__contact-item i {
  color: var(--primary-color);
  width: 20px;
}

.footer__newsletter-text {
  color: var(--gray-medium);
  margin-bottom: var(--mb-1);
}

.footer__newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--mb-1-5);
}

.footer__newsletter-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--gray-dark);
  border-radius: var(--border-radius);
  background: var(--gray-dark);
  color: var(--white-color);
  font-size: var(--normal-font-size);
}

.footer__newsletter-input::placeholder {
  color: var(--gray-medium);
}

.footer__newsletter-btn {
  padding: 0.75rem 1rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.footer__newsletter-btn:hover {
  background: var(--primary-dark);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: var(--gray-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.footer__bottom {
  border-top: 1px solid var(--gray-dark);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

.footer__copy {
  color: var(--gray-medium);
  font-size: var(--small-font-size);
}

/* ===== IMAGE MODAL ===== */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.image-modal.show {
  opacity: 1;
  visibility: visible;
}

.image-modal__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transform: scale(0.8);
  transition: var(--transition);
}

.image-modal.show .image-modal__content {
  transform: scale(1);
}

.image-modal__image {
  width: 100%;
  height: auto;
  display: block;
}

.image-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
}

.image-modal__close:hover {
  background: var(--accent-color);
  color: var(--white-color);
}

.image-modal__info {
  padding: 1.5rem;
  background: var(--white-color);
}

.image-modal__title {
  font-size: var(--h3-font-size);
  color: var(--secondary-color);
  margin-bottom: var(--mb-0-5);
}

.image-modal__description {
  color: var(--text-light);
  margin-bottom: var(--mb-1);
}

.image-modal__price {
  font-size: var(--h3-font-size);
  color: var(--primary-color);
  font-weight: var(--font-bold);
}
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background: var(--primary-color);
  color: var(--secondary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
  z-index: var(--z-tooltip);
  box-shadow: var(--shadow-medium);
}

.scrollup:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

.show-scroll {
  bottom: 3rem;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
  :root {
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
  }
  
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero__image {
    order: -1;
  }
  
  .about__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about__image {
    order: -1;
  }
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white-color);
    padding: 6rem 2rem 2rem;
    transition: var(--transition);
    z-index: var(--z-fixed);
  }
  
  .nav__menu.show-menu {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    row-gap: 2rem;
  }
  
  .nav__link {
    font-size: var(--h3-font-size);
  }
  
  .nav__close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
  }
  
  .nav__toggle {
    display: block;
    font-size: 1.25rem;
    color: var(--secondary-color);
  }
  
  .hero {
    padding-top: 100px;
  }
  
  .hero__buttons {
    justify-content: center;
  }
  
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .categories__container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .products__container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .offers__countdown {
    gap: 1rem;
  }
  
  .countdown__item {
    min-width: 70px;
    padding: 0.75rem;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --biggest-font-size: 2rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.5rem;
  }
  
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .categories__container {
    grid-template-columns: 1fr;
  }
  
  .products__container {
    grid-template-columns: 1fr;
  }
  
  .offers__countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
  }
  
  .footer__newsletter-form {
    flex-direction: column;
  }
}

