:root {
  --gold: #c8a97e;
  --text: #333333;
  --muted: #777777;
  --line: #ececec;
  --dark: #1a1a1a;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  font-size: 13px;
}

body.lightbox-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

.page-shell {
  min-height: 100vh;
}

.site-topbar {
  background: var(--gold);
  color: #ffffff;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
}

.hamburger {
  background: none;
  border: 2px solid var(--text);
  border-radius: 4px;
  padding: 6px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  cursor: pointer;
}

.brand__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dark);
  white-space: nowrap;
}

.brand__subtitle {
  font-size: 10px;
  letter-spacing: 3px;
  color: #666666;
  font-weight: 400;
}

.search-bar {
  flex: 1;
  max-width: 520px;
  display: flex;
}

.search-bar input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #cccccc;
  border-right: none;
  outline: none;
  border-radius: 3px 0 0 3px;
  min-height: 44px;
}

.search-bar button {
  padding: 10px 18px;
  background: #f5f0e8;
  border: 1px solid #cccccc;
  border-left: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 0 3px 3px 0;
  min-height: 44px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.action-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid transparent;
  padding: 8px 12px;
  transition: 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.action-link:hover {
  border-color: var(--line);
}

.action-link--accent {
  border: 1px solid var(--text);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-panel {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100%;
  background: var(--dark);
  color: #ffffff;
  z-index: 200;
  transition: left 0.35s ease;
  overflow-y: auto;
}

.side-panel.active {
  left: 0;
}

.side-panel-header {
  display: flex;
  justify-content: flex-end;
  padding: 15px 20px;
}

.side-panel-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
}

.side-panel nav {
  padding: 0 20px 30px;
}

.menu-item {
  border-bottom: 1px solid #444444;
}

.menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}

.menu-link:hover,
.submenu-link:hover,
.sub-submenu-item:hover {
  color: var(--gold);
}

.submenu-item + .submenu-item {
  border-top: 1px solid #2d2d2d;
}

.toggle-icon {
  font-size: 20px;
  font-weight: 300;
}

.submenu,
.sub-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.submenu.open {
  max-height: 500px;
}

.sub-submenu.open {
  max-height: 320px;
}

.submenu-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 12px 0 12px 18px;
  color: #f1f1f1;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  line-height: 1.4;
}

.sub-submenu-item {
  padding: 12px 0 12px 30px;
  color: #aaaaaa;
  cursor: pointer;
  border-bottom: 1px solid #2a2a2a;
}

.restricted {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 110px);
  padding: 24px;
}

.restricted-card {
  max-width: 760px;
  border: 1px solid var(--line);
  padding: 40px;
  text-align: center;
}

.restricted-card h1 {
  margin: 0 0 14px;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.restricted-card p {
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
}

.restricted-card__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid #dddddd;
  background: #ffffff;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.listing-page.hidden,
.product-page.hidden {
  display: none;
}

.breadcrumb {
  padding: 10px 30px;
  font-size: 12px;
  color: #888888;
}

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

.page-title {
  text-align: center;
  padding: 20px 0 10px;
}

.page-title h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.filters-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-bottom: 1px solid var(--line);
}

.filter-btn {
  padding: 6px 14px;
  border: 1px solid #dddddd;
  background: #ffffff;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.2s ease;
  min-height: 40px;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--text);
  background: var(--text);
  color: #ffffff;
}

.sort-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
}

.sort-bar label {
  font-size: 12px;
  color: #666666;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sort-bar select {
  padding: 6px 10px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  min-height: 40px;
}

.view-toggle {
  display: flex;
  gap: 5px;
  margin-right: 15px;
}

.view-toggle button {
  background: none;
  border: 1px solid #dddddd;
  padding: 5px 8px;
  cursor: pointer;
  min-width: 40px;
  min-height: 40px;
}

.view-toggle button.active {
  background: var(--text);
  color: #ffffff;
  border-color: var(--text);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  cursor: pointer;
  transition: transform 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card .img-wrap {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 3 / 4;
}

.product-card .img-wrap .img-primary,
.product-card .img-wrap .img-secondary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.55s ease;
}

.product-card .img-wrap .img-primary {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transform: scale(1);
}

.product-card .img-wrap .img-secondary {
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transform: scale(1.03);
}

.product-card:hover .img-wrap .img-primary {
  opacity: 0;
  visibility: hidden;
}

.product-card:hover .img-wrap .img-secondary {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.product-card.is-previewing .img-wrap .img-primary {
  opacity: 0;
  visibility: hidden;
}

.product-card.is-previewing .img-wrap .img-secondary {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.product-info {
  padding: 12px 0;
}

.product-name {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-weight: 500;
}

.product-code,
.product-note {
  color: #666666;
  font-size: 12px;
  margin-bottom: 8px;
}

.color-swatches,
.detail-swatches {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.color-swatch,
.detail-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #dddddd;
  cursor: pointer;
  transition: border-color 0.2s ease;
  padding: 0;
  appearance: none;
}

.color-swatch.active,
.color-swatch:hover,
.detail-swatch.active {
  border-color: var(--text);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 40px 0;
}

.pagination button,
.pagination span {
  padding: 8px 14px;
  border: 1px solid #dddddd;
  background: #ffffff;
  cursor: pointer;
}

.pagination .active {
  background: var(--text);
  color: #ffffff;
  border-color: var(--text);
}

.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 30px;
  text-align: center;
}

.content-section h2 {
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: 600;
}

.content-section p {
  margin: 0 0 15px;
  line-height: 1.8;
  color: #555555;
  text-align: left;
}

.recently-viewed {
  padding: 40px 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.recently-viewed h2 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 400;
}

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

.product-page {
  display: block;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid #dddddd;
  background: #ffffff;
  font-size: 12px;
  cursor: pointer;
  margin: 20px 30px;
  min-height: 44px;
}

.back-btn:hover {
  background: #f5f5f5;
}

.product-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.product-gallery {
  display: flex;
  gap: 20px;
}

.product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-thumbnails button {
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.product-thumbnails button.active {
  border-color: var(--text);
}

.product-thumbnails button:hover {
  transform: translateY(-2px);
}

.product-thumbnails img {
  width: 70px;
  height: 90px;
  object-fit: cover;
}

.product-main-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.product-main-image img {
  width: 100%;
  height: auto;
  cursor: zoom-in;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

.product-main-image img:hover {
  transform: scale(1.02);
}

.product-main-image img.is-switching {
  opacity: 0;
}

.color-label-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffffff;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.zoom-hint {
  position: absolute;
  right: 15px;
  bottom: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 1px;
}

.product-detail-info h1 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;
}

.product-detail-meta {
  font-size: 12px;
  color: #666666;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  line-height: 1.8;
}

.share-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #666666;
}

.share-icons {
  display: flex;
  gap: 8px;
}

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

.selector-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.color-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  background: #ffffff;
}

.size-measurements {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 11px;
  color: #666666;
}

.size-measurements span {
  font-weight: 600;
  color: var(--text);
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 15px;
}

.size-option {
  display: grid;
  gap: 4px;
  padding: 10px 8px;
  border: 1px solid #dddddd;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  background: #ffffff;
}

.size-option small {
  font-size: 10px;
  color: #666666;
}

.size-option.selected {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
}

.size-option.selected small {
  color: rgba(255, 255, 255, 0.82);
}

.size-option.is-unavailable {
  cursor: not-allowed;
  color: #9b9b9b;
  background: #f7f7f7;
  text-decoration: line-through;
}

.what-size-btn,
.contact-btn {
  padding: 10px 18px;
  border: 1px solid var(--text);
  background: #ffffff;
  font-size: 12px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: 0.2s ease;
  min-height: 44px;
}

.what-size-btn:hover,
.contact-btn:hover {
  background: var(--text);
  color: #ffffff;
}

.stock-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: #fff5f5;
  border-left: 3px solid #e74c3c;
  margin-bottom: 15px;
  font-size: 12px;
}

.stock-alert strong {
  color: #e74c3c;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 25px;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  font-size: 24px;
  margin-bottom: 5px;
}

.benefit-text {
  font-size: 10px;
  color: #666666;
  line-height: 1.3;
}

.accordion {
  border-bottom: 1px solid var(--line);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.accordion-icon {
  font-size: 20px;
  font-weight: 300;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-content.open {
  max-height: 460px;
}

.accordion-content-inner {
  padding: 0 0 20px;
  font-size: 12px;
  line-height: 1.8;
  color: #666666;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  padding: 28px;
  background: rgba(10, 10, 10, 0.74);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.lightbox-overlay.active .lightbox-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.lightbox-content img.is-switching {
  opacity: 0.2;
  transform: scale(0.985);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox-close:hover {
  transform: translateY(-1px);
}

.lightbox-nav:hover {
  transform: translateY(calc(-50% - 1px));
}

.lightbox-close {
  top: -54px;
  right: 0;
  min-width: 108px;
  height: 42px;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 2px;
}

.site-footer {
  background: var(--dark);
  color: #cccccc;
  padding: 40px 30px 20px;
  margin-top: 10px;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__inner p,
.site-footer__inner span {
  margin: 0;
  line-height: 1.7;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 40px 20px;
  text-align: center;
  border: 1px dashed #dddddd;
  color: #666666;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1024px) {
  .product-grid,
  .recently-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 768px) {
  .site-topbar,
  .site-header__inner,
  .site-footer__inner {
    flex-wrap: wrap;
  }

  .site-topbar {
    padding: 7px 14px;
    font-size: 11px;
    line-height: 1.45;
  }

  .site-header__inner {
    gap: 12px;
    padding: 10px 14px;
  }

  .brand__title {
    font-size: 24px;
  }

  .brand__subtitle {
    letter-spacing: 2px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .action-link {
    padding: 9px 10px;
    font-size: 11px;
  }

  .search-bar {
    order: 3;
    max-width: 100%;
    flex-basis: 100%;
  }

  .search-bar input,
  .search-bar button {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    padding: 20px 15px;
  }

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

  .side-panel {
    width: 280px;
    left: -280px;
  }

  .product-detail-container {
    padding: 15px;
  }

  .product-page {
    padding: 18px 15px 28px;
  }

  .product-detail-info h1 {
    font-size: 20px;
    line-height: 1.35;
  }

  .product-detail-meta {
    margin-bottom: 16px;
    padding-bottom: 16px;
    line-height: 1.65;
  }

  .share-section {
    flex-wrap: wrap;
    margin-bottom: 16px;
  }

  .selector-group {
    margin-bottom: 16px;
  }

  .size-measurements {
    gap: 10px 14px;
    font-size: 10px;
  }

  .size-option {
    padding: 9px 7px;
  }

  .breadcrumb {
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .breadcrumb a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 4px 0;
  }

  .color-swatches,
  .detail-swatches {
    gap: 8px;
  }

  .color-swatch {
    width: 36px;
    height: 36px;
    border-width: 2px;
  }

  .detail-swatch {
    width: 44px;
    height: 44px;
    border-width: 2px;
  }

  .what-size-btn,
  .contact-btn {
    width: 100%;
    margin-bottom: 16px;
  }

  .stock-alert {
    align-items: flex-start;
    padding: 10px 12px;
    line-height: 1.5;
  }

  .lightbox-overlay {
    padding: 18px;
  }

  .lightbox-close {
    min-width: auto;
    padding: 0 14px;
    font-size: 12px;
  }

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

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px 0;
    margin-bottom: 20px;
  }

  .lightbox-nav {
    display: none;
  }
}

@media (max-width: 540px) {
  .site-topbar {
    justify-content: center;
    text-align: center;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .action-link {
    flex: 1 1 calc(50% - 6px);
    text-align: center;
  }

  .filter-btn {
    min-height: 44px;
    padding: 9px 12px;
  }

  .sort-bar {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
  }

  .sort-bar label {
    width: 100%;
  }

  .sort-bar select {
    flex: 1 1 180px;
    min-height: 44px;
  }

  .view-toggle button {
    min-width: 44px;
    min-height: 44px;
  }

  .section-header,
  .content-section,
  .recently-viewed,
  .sort-bar {
    padding-left: 14px;
    padding-right: 14px;
  }

  .zoom-hint {
    right: 10px;
    bottom: 10px;
    padding: 5px 10px;
    font-size: 9px;
  }

  .back-btn {
    margin: 14px 14px 6px;
    width: calc(100% - 28px);
    justify-content: center;
  }

  .product-thumbnails {
    gap: 8px;
  }

  .size-grid {
    gap: 7px;
  }

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