@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --color-bg: #ffffff;
  --color-text: #2c2c2c;
  --color-text-light: #888888;
  --color-text-muted: #aaaaaa;
  --color-border: #e8e8e8;
  --color-accent: #5a7a5a;
  --color-accent-dark: #3d5a3d;
  --color-sale: #c0392b;
  --color-badge: #f5f5f0;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --max-width: 1280px;
  --header-height: 72px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #f7f7f5;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  color: var(--color-text-light);
}

.top-bar__track {
  overflow: hidden;
  padding: 8px 0;
}

.top-bar__marquee {
  display: flex;
  width: max-content;
  animation: top-bar-scroll 40s linear infinite;
}

.top-bar__group {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.top-bar__sep {
  color: var(--color-text-muted);
}

.top-bar__promo {
  color: var(--color-text);
}

.top-bar__timer {
  display: inline-block;
  min-width: 5.5em;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--color-sale);
}

@keyframes top-bar-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .top-bar__marquee {
    animation: none;
    width: 100%;
    justify-content: center;
  }

  .top-bar__group[aria-hidden="true"] {
    display: none;
  }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  flex-shrink: 0;
}

.logo__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text);
}

.logo__tagline {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-top: 3px;
}

.logo:hover .logo__name,
.logo:hover .logo__tagline {
  color: var(--color-text);
}

.brand-bar {
  height: 4px;
  background: var(--color-accent);
}

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

.nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

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

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

.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.header__icon:hover {
  opacity: 1;
}

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

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: var(--transition);
}

/* ===== HERO BANNER ===== */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  max-height: 680px;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  display: flex;
  align-items: center;
}

.hero__content {
  padding: 0 60px;
  max-width: 560px;
  color: #fff;
}

.hero__subtitle {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__text {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 32px;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: #fff;
  color: var(--color-text);
  border-color: #fff;
}

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

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}

.btn--outline:hover {
  background: var(--color-text);
  color: #fff;
}

.btn--accent {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
}

/* ===== SECTION HEADING ===== */
.section {
  padding: 64px 0;
}

.section__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--color-text);
}

.section__line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.section__link {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-light);
  white-space: nowrap;
}

/* ===== CATEGORY GRID ===== */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-card__image {
  transform: scale(1.05);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.category-card:hover .category-card__overlay {
  background: rgba(0,0,0,0.35);
}

.category-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 16px;
  line-height: 1.3;
}

/* ===== PRODUCT GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f9f9f7;
  margin-bottom: 16px;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.04);
}

.product-card__sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 2px;
}

.product-card__category {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--color-text);
}

.product-card__price {
  font-size: 14px;
  font-weight: 500;
}

.product-card__price--original {
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 400;
}

.product-card__price--sale {
  font-weight: 600;
}

.product-card__badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border: 1px solid var(--color-border);
  font-size: 11px;
  color: var(--color-text-light);
  letter-spacing: 0.5px;
}

/* ===== FEATURES BAR ===== */
.features {
  background: #f7f7f5;
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.features__icon {
  font-size: 28px;
  opacity: 0.7;
}

.features__title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
}

.features__text {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ===== BOTTOM BANNER ===== */
.bottom-banner {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 360px;
  max-height: 520px;
  overflow: hidden;
}

.bottom-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bottom-banner__content {
  color: #fff;
  max-width: 600px;
  padding: 0 24px;
}

.bottom-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  margin-bottom: 16px;
}

.bottom-banner__text {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: #2c2c2c;
  color: #ccc;
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer__brand span {
  color: var(--color-accent);
}

.footer__desc {
  font-size: 13px;
  line-height: 1.7;
  color: #999;
}

.footer__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 13px;
  color: #999;
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid #444;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #666;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 20px 0;
  font-size: 12px;
  color: var(--color-text-light);
}

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

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb span {
  margin: 0 8px;
}

/* ===== PRODUCT PAGE ===== */
.product-page {
  padding: 32px 0 80px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-gallery__main {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f9f9f7;
  margin-bottom: 12px;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.product-gallery__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  background: #f9f9f7;
}

.product-gallery__thumb--active,
.product-gallery__thumb:hover {
  border-color: var(--color-accent);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info__category {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-info__title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}

.product-info__price {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

.product-info__price--original {
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-size: 18px;
  font-weight: 400;
  margin-right: 12px;
}

.product-info__desc {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.product-info__meta {
  margin-bottom: 32px;
}

.product-info__meta dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--color-text-light);
}

.product-info__meta dd {
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-info__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
}

.quantity-selector button {
  width: 40px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--color-text);
}

.quantity-selector input {
  width: 48px;
  height: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-family: var(--font-sans);
  font-size: 14px;
}

.product-info__actions .btn {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
}

.product-info__availability {
  font-size: 14px;
  margin-bottom: 20px;
}

.product-info__availability-label {
  color: var(--color-text-muted);
  margin-right: 6px;
}

.product-info__stock--in {
  color: var(--color-accent);
  font-weight: 500;
}

.product-info__purchase {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.product-info__buy-now {
  flex: 1 1 100%;
  text-align: center;
  padding: 16px 24px;
}

.product-info__stock--out {
  color: #c0392b;
  font-weight: 500;
}

.stock-notify {
  padding: 24px;
  background: var(--color-bg-alt, #f8f6f3);
  border: 1px solid var(--color-border);
  margin-bottom: 32px;
}

.stock-notify__text {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.stock-notify__form {
  display: flex;
  gap: 12px;
}

.stock-notify__input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  font-family: var(--font-sans);
  font-size: 14px;
  background: #fff;
}

.stock-notify__input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.stock-notify__btn {
  white-space: nowrap;
  padding: 14px 24px;
}

.stock-notify--success .stock-notify__text {
  color: var(--color-accent);
  margin-bottom: 0;
}

/* ===== BLOG / CONSEJOS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card__image-link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 20px;
  background: #f9f9f7;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card__image-link:hover .blog-card__image {
  transform: scale(1.04);
}

.blog-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card__excerpt {
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-text-light);
  margin-bottom: 16px;
  flex: 1;
}

.blog-card__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.article-page {
  padding: 48px 0 80px;
}

.article-page__header {
  max-width: 760px;
  margin-bottom: 40px;
}

.article-page__badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--color-border);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.article-page__title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.article-page__lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.article-page__hero {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 48px;
  background: #f9f9f7;
}

.article-page__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-page__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.article-page__gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f9f9f7;
}

.article-page__content {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text);
}

.article-page__content p {
  margin-bottom: 20px;
}

.article-page__content h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  margin: 40px 0 16px;
}

.article-page__back {
  display: inline-block;
  margin-top: 48px;
  font-size: 13px;
  font-weight: 500;
}

.product-tabs {
  margin-top: 64px;
}

.product-tabs__nav {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
}

.product-tabs__btn {
  padding: 12px 24px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--color-text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
}

.product-tabs__btn--active {
  color: var(--color-text);
  border-bottom-color: var(--color-accent);
}

.product-tabs__panel {
  display: none;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.product-tabs__panel--active {
  display: block;
}

/* ===== CATEGORY PAGE ===== */
.page-header {
  padding: 48px 0 32px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 48px;
}

.page-header__title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 12px;
}

.page-header__desc {
  font-size: 14px;
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

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

/* ===== INFO PAGES ===== */
.info-page {
  padding: 48px 0 80px;
}

.info-page__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 32px;
}

.info-page__content {
  max-width: 720px;
}

.info-page__content h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 12px;
}

.info-page__content p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.contact-form {
  max-width: 560px;
  margin-top: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--color-text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text);
  background: #fff;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
}

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

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

  .category-products {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--color-border);
    gap: 16px;
    z-index: 999;
  }

  .nav--open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .article-page__gallery {
    grid-template-columns: 1fr;
  }

  .article-page__title {
    font-size: 30px;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__content {
    padding: 0 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section__title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .categories {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .category-products {
    grid-template-columns: 1fr;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-info__actions {
    flex-direction: column;
  }

  .stock-notify__form {
    flex-direction: column;
  }
}
