.products-toolbar {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.toolbar-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 0.8rem;
}

.toolbar-grid .field input,
.toolbar-grid .field select {
  min-height: 2.65rem;
}

.products-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  display: grid;
  align-content: start;
  box-shadow: var(--shadow-soft);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(22, 17, 11, 0.16);
}

.product-card.sold-out {
  opacity: 0.72;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 4.15;
  background: #f4eee5;
  overflow: hidden;
}

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

.product-badge-row {
  position: absolute;
  left: 0.6rem;
  top: 0.6rem;
  display: inline-flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.45rem;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}

.badge.discount {
  color: #fff;
  background: #111;
}

.badge.bundle {
  color: #5f4821;
  background: #f4e3b8;
  border-color: #d0b075;
}

.badge.out {
  color: #fff;
  background: #a83434;
}

.product-body {
  padding: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.product-title {
  margin: 0;
  font-size: 1rem;
}

.product-meta {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.product-desc {
  margin: 0;
  color: #4f4a44;
  font-size: 0.86rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-bundle-items {
  margin: 0;
  font-size: 0.78rem;
  color: #4e4339;
  line-height: 1.45;
}

.bundle-offers-section {
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.2rem, 4vw, 2rem) 0;
  background: linear-gradient(180deg, #fffaf5 0%, #f6ece2 100%);
  border-top: 1px solid #ead9c7;
  border-bottom: 1px solid #ead9c7;
}

.bundle-offers-section[hidden] {
  display: none;
}

.bundle-offers-head {
  align-items: end;
}

.bundle-offers-head .eyebrow {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: #9a3158;
}

.bundle-offers-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.bundle-offer-card {
  border: 1px solid #e4cdb9;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.bundle-offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(50, 36, 24, 0.16);
}

.bundle-offer-card.sold-out {
  opacity: 0.72;
}

.bundle-offer-media {
  position: relative;
  aspect-ratio: 16 / 11;
  background: #f3e3d5;
  overflow: hidden;
}

.bundle-offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bundle-offer-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  min-height: 1.7rem;
  border-radius: 999px;
  background: #14110f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bundle-offer-body {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
  align-content: space-between;
}

.bundle-offer-kicker {
  margin: 0 0 0.3rem;
  color: #9a3158;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bundle-offer-body h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.2;
}

.bundle-offer-body p {
  margin: 0.45rem 0 0;
  color: #524940;
  font-size: 0.87rem;
  line-height: 1.55;
}

.bundle-offer-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.bundle-offer-items li {
  position: relative;
  padding-left: 1rem;
  color: #403a34;
  font-size: 0.84rem;
  line-height: 1.35;
}

.bundle-offer-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #d34d7e;
}

.bundle-offer-price {
  border-top: 1px solid #efe1d4;
  padding-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.bundle-offer-price div {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.bundle-offer-price strong {
  font-size: 1.35rem;
  color: #17130f;
}

.bundle-offer-price del {
  color: #8a7c70;
  font-size: 0.9rem;
}

.bundle-offer-price span {
  border-radius: 999px;
  background: #fff2f5;
  color: #9a3158;
  padding: 0.28rem 0.58rem;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.product-highlights {
  border: 1px solid #efccd2;
  border-radius: 10px;
  background: #fff5f7;
  padding: 0.5rem 0.6rem;
}

.product-highlights strong {
  display: block;
  color: #b12b2b;
  font-size: 0.78rem;
}

.product-highlights ul {
  margin: 0.3rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.16rem;
}

.product-highlights li {
  color: #5a4d44;
  font-size: 0.75rem;
  line-height: 1.4;
}

.product-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.42rem;
  font-weight: 800;
}

.product-price strong {
  font-size: 1.04rem;
}

.product-price del {
  color: #8b8077;
  font-size: 0.84rem;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
}

.product-actions .btn {
  flex: 1;
  min-height: 2.45rem;
  font-size: 0.82rem;
}

.link-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  min-height: 2.45rem;
  padding: 0.6rem 0.85rem;
  background: #fff;
  color: #2b2823;
  font-weight: 700;
  cursor: pointer;
}

.link-btn:hover {
  border-color: #000;
}

.quick-view {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.25fr);
  gap: 1rem;
}

.quick-gallery {
  display: grid;
  gap: 0.55rem;
}

.quick-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #f3eee7;
}

.quick-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
}

.quick-thumbs button {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  background: #fff;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.quick-thumbs button.active {
  border-color: #101010;
}

.quick-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-info h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.25;
}

.quick-info p {
  margin: 0.8rem 0;
  color: #4f4a44;
  line-height: 1.7;
  white-space: pre-wrap;
}

.quick-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.quick-meta .pill {
  min-height: 1.9rem;
}

.cta-strip {
  margin-top: 1.4rem;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, #f8efe1, #fff8ee);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
}

.cta-strip h3,
.cta-strip p {
  margin: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1rem, 3vw, 2.2rem);
  align-items: start;
}

.about-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 2vw, 1.4rem);
}

.about-card h2 {
  margin: 0 0 0.7rem;
  font-family: "Bodoni Moda", serif;
}

.about-card p {
  margin: 0 0 0.9rem;
  line-height: 1.72;
  color: #4e473f;
}

.about-highlight {
  margin-top: 0.6rem;
  border-left: 3px solid #111;
  padding-left: 0.8rem;
  font-style: italic;
}

.about-image {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #23190d;
}

.about-image img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  mix-blend-mode: screen;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.panel h2,
.panel h3 {
  margin: 0 0 0.7rem;
}

.panel p {
  margin: 0 0 0.7rem;
  line-height: 1.7;
  color: #4e473f;
}

.inline-list {
  display: grid;
  gap: 0.45rem;
}

.inline-list a {
  color: #2f2b25;
  font-weight: 600;
}

.empty-grid {
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  color: var(--ink-soft);
}

.receipt-page {
  padding: clamp(1.4rem, 4vw, 3rem) 0;
}

.receipt-page .container {
  display: grid;
  gap: 1rem;
  max-width: 920px;
}

.receipt-hero,
.receipt-panel,
.receipt-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.receipt-hero {
  padding: clamp(1.2rem, 4vw, 2rem);
  display: grid;
  gap: 0.65rem;
  text-align: center;
  justify-items: center;
}

.receipt-hero img {
  width: min(220px, 70vw);
}

.receipt-kicker {
  margin: 0;
  color: var(--success);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.receipt-hero h1,
.receipt-empty h1 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
}

.receipt-hero p,
.receipt-empty p,
.receipt-panel p {
  margin: 0;
  color: #514b44;
  line-height: 1.65;
}

.receipt-panel {
  padding: clamp(1rem, 3vw, 1.4rem);
  display: grid;
  gap: 0.9rem;
}

.receipt-panel h2 {
  margin: 0;
  font-size: 1.05rem;
}

.receipt-section-head,
.receipt-line,
.receipt-totals p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.receipt-section-head span {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.receipt-lines {
  display: grid;
  gap: 0.55rem;
}

.receipt-line {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem;
}

.receipt-line h3 {
  margin: 0;
  font-size: 0.96rem;
}

.receipt-line p,
.receipt-totals p {
  margin: 0;
}

.receipt-totals {
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  display: grid;
  gap: 0.45rem;
}

.receipt-grand {
  font-size: 1.15rem;
}

.receipt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.receipt-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.receipt-empty {
  padding: clamp(1.3rem, 4vw, 2.2rem);
  display: grid;
  gap: 0.8rem;
  justify-items: start;
}

@media (max-width: 1120px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bundle-offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .toolbar-grid,
  .quick-view,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .products-grid,
  .bundle-offers-grid {
    grid-template-columns: 1fr;
  }

  .bundle-offer-price {
    align-items: flex-start;
    flex-direction: column;
  }
}
