﻿@charset "UTF-8";
:root {
  --charcoal:hsl(220 15% 20%);
  --charcoal-light:hsl(220 12% 30%);
  --gold:50 95% 64%;
  --goldDark:hsl(48 90% 50%);
  --rasta-red:hsl(0 72% 45%);
  --cream:hsl(45 30% 96%);
  --muted-fg:hsl(220 10% 40%);
  --border:hsl(45,15%,85%);
  --primary:hsl(50 95% 64%);
  --headerHeight:132px;
  --maxCenterWidth:1280px;
  --goldBorderWidth:4px;
  --s1:4px;
  --s2:8px;
  --s3:12px;
  --s4:16px;
  --s5:20px;
  --s6:24px;
  --s7:32px;
  --s8:64px;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.block {
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

.pointer {
  cursor: pointer;
}

.object-cover {
  object-fit: cover;
}

.aspect-square {
  aspect-ratio: 1/1;
}

.aspect-auto {
  aspect-ratio: auto;
}

.aspect-16-9 {
  aspect-ratio: 16/9;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.min-h-screen {
  min-height: 100vh;
}

.pt-24 {
  padding-top: 6rem;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.overlay.light {
  background: rgba(0, 0, 0, 0.1);
}
.overlay.gradient-from-top {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.61) 50%, #000 100%);
}
.overlay.gradient-2 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.7) 75%, rgba(0, 0, 0, 0.8) 100%);
}
.overlay.gradient-3 {
  background: linear-gradient(to left, rgba(72, 67, 67, 0.8) 0%, rgba(150, 150, 150, 0.3) 7%, rgba(39, 39, 39, 0.7) 75%, rgba(0, 0, 0, 0.8) 100%);
}
.overlay.char-gradient {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.06) 50%, #000 100%);
}

.flex-end {
  justify-content: flex-end;
}

/* grid stuff */
.grid {
  display: grid;
}

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

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

.col-span-1 {
  grid-column: span 1/span 1;
}

.row-span-2 {
  grid-row: span 2/span 2;
}

/* colour presets */
.bg-white {
  background-color: #fff;
}

.font-heading {
  font-family: Cinzel, serif;
}

.font-body {
  font-family: Outfit, sans-serif;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-6xl {
  font-size: 4.25rem;
  line-height: 1;
}

.text-7xl {
  font-size: 4.75rem;
  line-height: 1;
}

.text-cream {
  color: var(--cream);
}

.text-gold {
  color: hsl(var(--gold));
}

.uppercase {
  text-transform: uppercase;
}

.w-\[120\%\] {
  width: 120%;
}

.h-\[120\%\] {
  height: 120%;
}

.-top-\[10\%\] {
  top: -10%;
}

.-left-\[10\%\] {
  left: -10%;
}

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

  .grid-cols-2,
.grid-cols-3,
.grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

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

  .col-span-2 {
    grid-column: span 2/span 2;
  }

  .row-span-2 {
    grid-row: span 2/span 2;
  }

  .aspect-auto {
    aspect-ratio: auto;
  }

  .h-full {
    height: 100%;
  }

  .columns-3 {
    -moz-columns: 3;
    columns: 3;
  }

  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
body {
  font-size: 14px;
  background: #faf8f4;
  color: #2c2416;
  -webkit-font-smoothing: antialiased;
}

.remove-link {
  color: #b0a090;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.remove-link:hover {
  color: #c0392b;
}

.gold-link {
  color: #A67828;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.gold-link:hover {
  color: #C8973A;
}

.divider {
  border: none;
  border-top: 1px solid #e8e0d0;
  margin: 16px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  background: #f5f0e8;
  border-bottom: 1px solid #e8e0d0;
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, #A67828 0, #A67828 1px, transparent 1px, transparent 32px), repeating-linear-gradient(90deg, #A67828 0, #A67828 1px, transparent 1px, transparent 32px);
  pointer-events: none;
}
.hero__content {
  position: relative;
  text-align: center;
}
.hero__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #A67828;
  margin-bottom: 12px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
  color: #2c2416;
}
.hero__title--gold {
  color: #A67828;
}
.hero__taglines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__taglines p {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #b0a090;
}

.empty-basket {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  background: #ffffff;
  border: 1px solid #e8e0d0;
  border-radius: 8px;
}

.empty-basket__icon {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.5rem;
  color: #A67828;
  opacity: 0.2;
  margin-bottom: 1.25rem;
  user-select: none;
}

.empty-basket__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: #2c2416;
  margin: 0 0 0.5rem;
}

.empty-basket__sub {
  font-size: 0.875rem;
  color: #7a6a52;
  margin: 0 0 2rem;
}

.empty-basket__btn {
  display: inline-block;
  background: #A67828;
  color: #fff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: background 0.15s;
}

.empty-basket__btn:hover {
  background: #C8973A;
}

.layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto;
  padding: 40px 24px;
}
@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-list__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4px;
}
.product-list__count {
  font-size: 1.2rem;
  font-weight: 300;
  color: #2c2416;
}

.continue-link {
  margin-top: 8px;
}

#basket-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card {
  display: flex;
  background: #ffffff;
  border: 1px solid #e8e0d0;
  border-radius: 6px;
  overflow: hidden;
  animation: fadeIn 0.35s ease;
}
@media (max-width: 600px) {
  .product-card {
    flex-direction: column;
  }
}
.product-card__image-wrap {
  position: relative;
  flex-shrink: 0;
  width: 142px;
  background: #f0ebe0;
  overflow: hidden;
}
@media (max-width: 600px) {
  .product-card__image-wrap {
    width: 100%;
    aspect-ratio: 1;
  }
}
.product-card__primary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}
.product-card__thumbnails {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  gap: 6px;
}
.product-card__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 16px;
}
.product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.product-card__title {
  font-size: 1.35rem;
  font-weight: 300;
  color: #2c2416;
  line-height: 1.3;
}
.product-card__subtitle {
  margin-top: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A67828;
}
.product-card__price-wrap {
  text-align: right;
  flex-shrink: 0;
}
.product-card__price {
  font-size: 1.2rem;
  font-weight: 500;
  color: #2c2416;
  display: block;
}
.product-card__unit-price {
  font-size: 0.7rem;
  color: #b0a090;
  margin-top: 2px;
  display: none;
}
.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #e8e0d0;
}

.thumb {
  width: 32px;
  height: 32px;
  border-radius: 3px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.5);
  opacity: 0.65;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
  padding: 0;
  cursor: pointer;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb:hover {
  opacity: 0.9;
}
.thumb--active {
  border-color: #A67828;
  opacity: 1;
  transform: scale(1.1);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-control__label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b0a090;
}
.qty-control__stepper {
  display: flex;
  align-items: center;
  border: 1px solid #e8e0d0;
  border-radius: 4px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #7a6a52;
  transition: color 0.2s;
}
.qty-btn:hover {
  color: #A67828;
}

.qty-value {
  width: 28px;
  text-align: center;
  font-size: 0.875rem;
  color: #2c2416;
}

.order-summary {
  position: sticky;
  top: 24px;
  align-self: start;
  background: #ffffff;
  border: 1px solid #e8e0d0;
  border-radius: 6px;
  padding: 24px;
}
.order-summary__title {
  font-size: 1.5rem;
  font-weight: 300;
  color: #2c2416;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e8e0d0;
}
.order-summary__note {
  text-align: center;
  font-size: 0.7rem;
  color: #b0a090;
  margin-top: 12px;
}

.summary-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.summary-line__name {
  font-size: 0.75rem;
  color: #7a6a52;
}
.summary-line__name em {
  font-style: normal;
  color: #b0a090;
}
.summary-line__price {
  font-size: 0.875rem;
  color: #2c2416;
  flex-shrink: 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.summary-row__label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b0a090;
}
.summary-row__value {
  font-size: 0.875rem;
  color: #2c2416;
}

.shipping-selector {
  margin-bottom: 20px;
}
.shipping-selector__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b0a090;
  margin-bottom: 10px;
}

.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid #e8e0d0;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.shipping-option input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.shipping-option__radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #e8e0d0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}
.shipping-option__radio::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #A67828;
  opacity: 0;
  transition: opacity 0.15s;
}
.shipping-option__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.shipping-option__name {
  font-size: 0.78rem;
  font-weight: 500;
  color: #2c2416;
  transition: color 0.15s;
}
.shipping-option__days {
  font-size: 0.68rem;
  color: #b0a090;
}
.shipping-option__price {
  font-size: 0.875rem;
  font-weight: 500;
  color: #7a6a52;
  flex-shrink: 0;
  transition: color 0.15s;
}
.shipping-option--selected {
  border-color: #A67828;
  background: rgba(166, 120, 40, 0.06);
}
.shipping-option--selected .shipping-option__radio {
  border-color: #A67828;
}
.shipping-option--selected .shipping-option__radio::after {
  opacity: 1;
}
.shipping-option--selected .shipping-option__name {
  color: #A67828;
}
.shipping-option--selected .shipping-option__price {
  color: #A67828;
}
.shipping-option:hover:not(.shipping-option--selected) {
  border-color: #dbceb5;
}

.grand-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  margin-bottom: 24px;
  border-top: 2px solid #A67828;
}
.grand-total__label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #A67828;
}
.grand-total__value {
  font-size: 1.5rem;
  font-weight: 300;
  color: #2c2416;
}

.address-section {
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid #e8e0d0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.address-section__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b0a090;
  margin-bottom: 4px;
}

.address-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.addr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.addr-input {
  width: 100%;
  padding: 8px 10px;
  font-size: 0.8rem;
  color: #2c2416;
  background: #faf8f4;
  border: 1.5px solid #e8e0d0;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
}
.addr-input::placeholder {
  color: #b0a090;
}
.addr-input:focus {
  border-color: #A67828;
}
.addr-input--short {
  /* used in grid cols — just inherits width: 100% */
}

.addr-select-wrap {
  position: relative;
  width: 100%;
}

.addr-select {
  width: 100%;
  padding-right: 28px;
  cursor: pointer;
  background-color: #faf8f4;
}

.addr-select-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  color: #b0a090;
  pointer-events: none;
}

.checkout-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: #A67828;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.checkout-btn:hover {
  background: #C8973A;
}
.checkout-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
