.cover-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #cfb6a3;
  border-bottom: 1px solid var(--line);
}

.cover-hero > img {
  display: block;
  width: 100%;
  height: auto;
  min-height: clamp(420px, 36.3vw, 760px);
  object-fit: cover;
  object-position: center;
}

.cover-actions {
  position: absolute;
  inset: auto 0 clamp(1.5rem, 4vw, 4rem);
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.glass-shop-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  min-width: 178px;
  padding: 1rem 1.45rem;
  border: 0;
  border-radius: 999px;
  background: #111;
  box-shadow: 0 10px 26px rgba(35,20,14,.22);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #fff;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: .01em;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.glass-shop-button::before { display: none; }

.glass-shop-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .22s ease;
}

.glass-shop-button:hover {
  transform: translateY(-3px);
  background: #2b2b2b;
  box-shadow: 0 14px 32px rgba(35,20,14,.28);
}

.glass-shop-button:hover svg { transform: translateX(3px); }
.glass-shop-button:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }

.category-filters {
  display: flex;
  gap: .65rem;
  overflow-x: auto;
  padding: 0 0 1.6rem;
  scrollbar-width: none;
}

.category-filters::-webkit-scrollbar { display: none; }

.category-filter {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: #f0eeeb;
  color: #4c4742;
  padding: .72rem 1rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.category-filter:hover { background: #e4e1dd; }
.category-filter.active { background: #111; color: #fff; }

.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: .8rem;
}

.size-picker { display: flex; gap: .5rem; }

.card-actions .size-option {
  width: 38px;
  height: 38px;
  min-width: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f0eeeb;
  color: #4c4742;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: .84rem;
  font-weight: 600;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.card-actions .size-option:hover { background: #e3dfda; transform: translateY(-1px); }
.card-actions .size-option.active { background: #111; color: #fff; }

.card-actions .add-bag-button {
  width: 100%;
  height: 46px;
  padding: 0 1.2rem;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.card-actions .add-bag-button:hover { background: #2b2b2b; }
.checkout-button,
.checkout-dialog form > button { border-radius: 999px; }
.bag-button { border-radius: 999px; background: #f3f1ef; }
.icon-button,
.drawer-close,
.dialog-close,
.search-close { border-radius: 50%; }

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .72s cubic-bezier(.22,1,.36,1), transform .82s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.product-card.reveal-item .product-image img {
  transform: scale(1.035);
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}

.product-card.reveal-visible .product-image img { transform: scale(1); }
.product-card.reveal-visible:hover .product-image img { transform: scale(1.025); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-item,
  .product-card.reveal-item .product-image img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .cover-hero > img { min-height: 56vw; }
}

@media (max-width: 620px) {
  .cover-hero > img {
    height: 78vw;
    min-height: 390px;
    object-fit: cover;
    object-position: center;
  }

  .cover-actions { bottom: 1.4rem; }
  .glass-shop-button { min-width: 156px; padding: .88rem 1.2rem; }
}
