:root {
  --ink: #0d3a5b;
  --paper: #f5f1ea;
  --cream: #fffdf8;
  --coral: #d84d3d;
  --yellow: #f2af2a;
  --sage: #2f7d5d;
  --clay: #b5603f;
  --line: #bac0cc;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
}
main {
  padding-top: 114px;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 70;
  width: min(1152px, calc(100vw - 44px));
  height: 74px;
  padding: 0 18px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(85, 74, 66, 0.68);
  box-shadow: 0 18px 58px rgba(24, 53, 47, 0.18);
  transform: translateX(-50%);
  transition:
    width 0.25s ease,
    top 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  backdrop-filter: blur(18px);
}
.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 112px;
  max-width: 30vw;
  height: 38px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-wordmark {
  display: inline-block;
  width: 78px;
  height: 21px;
  object-fit: contain;
  vertical-align: -5px;
}
.brand-wordmark-copy {
  width: 92px;
  height: 25px;
  vertical-align: -6px;
}
.badge .brand-wordmark {
  width: 58px;
  height: 16px;
  vertical-align: -4px;
}
.product-card:hover .badge img {
  transform: none;
}
.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  color: #f8f6f1;
}
.site-header nav a {
  white-space: nowrap;
}
.site-header nav a:hover,
.footer a:hover,
.text-link:hover {
  color: var(--coral);
}
.site-header.is-solid,
.site-header.is-inner {
  top: 18px;
  width: min(1152px, calc(100vw - 40px));
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(216, 215, 205, 0.9);
  box-shadow: 0 16px 46px rgba(24, 53, 47, 0.13);
}
.site-header.is-solid nav,
.site-header.is-inner nav {
  color: #202340;
}
.header-enquiry {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(13, 58, 91, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}
.header-enquiry:hover {
  background: #0b4b7a;
  color: #fff;
}
.site-header.is-solid .header-enquiry,
.site-header.is-inner .header-enquiry {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.search {
  display: flex;
  border-bottom: 1px solid var(--ink);
  width: 155px;
}
.search input {
  background: none;
  border: 0;
  padding: 7px 0;
  width: 100%;
  outline: 0;
  font: inherit;
}
.search button {
  background: none;
  border: 0;
  font-size: 22px;
}
.menu {
  display: none;
  background: none;
  border: 0;
  font-size: 22px;
}
.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 47% 53%;
  padding: 0 5vw;
}
.hero-copy {
  padding: 100px 15% 80px 0;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 10px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #607870;
}
.hero h1,
.page-intro h1,
.contact-page h1,
.login h1 {
  font: 600 clamp(52px, 7vw, 94px)/0.98 var(--serif);
  letter-spacing: -4px;
  margin: 0 0 28px;
}
.hero h1 em,
.page-intro h1 em,
.contact-page h1 em,
.login h1 em,
.admin-head h1 em,
h2 em {
  color: var(--coral);
  font-style: italic;
}
.lede {
  font-size: 17px;
  line-height: 1.6;
  max-width: 440px;
}
.button {
  display: inline-block;
  border: 0;
  padding: 15px 21px;
  font: 700 12px var(--sans);
  cursor: pointer;
  text-decoration: none;
}
.button span {
  margin-left: 35px;
  font-size: 16px;
}
.dark {
  background: var(--ink);
  color: white;
}
.dark:hover {
  background: var(--coral);
}
.button.secondary {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
}
.button.secondary:hover {
  background: var(--cream);
}
.hero-image {
  background: url("https://images.unsplash.com/photo-1606498679463-30a0eb8824e1?auto=format&fit=crop&w=1400&q=85")
    center/cover;
  position: relative;
  min-height: 650px;
}
.hero-copy h1 {
  letter-spacing: -2px;
}
.hero-copy h1 em {
  color: var(--ink);
  font-style: normal;
  box-shadow: inset 0 -0.14em 0 var(--coral);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.brand-strip {
  padding: 48px 5vw 56px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.brand-strip-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 900px;
  margin: 0 auto 48px;
}
.brand-strip-stats div {
  background: var(--cream);
  padding: 22px 10px;
}
.brand-strip-stats b {
  display: block;
  font: 600 30px var(--serif);
  letter-spacing: -1px;
}
.brand-strip-stats span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #667770;
}
.brand-strip-label {
  margin: 0 0 22px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #708079;
}
.brand-strip-logos {
  width: auto;
  max-width: 780px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.hero-stat-card {
  position: absolute;
  left: 32px;
  bottom: 32px;
  background: #fff;
  padding: 22px 28px;
  box-shadow: 0 18px 45px rgba(24, 53, 47, 0.16);
}
.hero-stat-card b {
  display: block;
  font: 600 40px var(--serif);
  letter-spacing: -1px;
}
.hero-stat-card span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #667770;
}
.stripe {
  background: var(--coral);
  color: #fff;
  padding: 16px 5vw;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.2px;
}
.section {
  padding: 110px 5vw;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 36px;
}
.section-heading h2,
.feature-band h2,
.social h2,
.split-copy h2 {
  font: 500 54px/0.98 var(--serif);
  letter-spacing: -2px;
  margin: 0;
}
.section-heading > a,
.text-link,
.contact-links a {
  font-weight: 700;
  font-size: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 13px;
}
.category {
  display: flex;
  flex-direction: column;
  padding: 28px 25px;
  min-height: 220px;
  background: var(--cream);
  border-bottom: 3px solid transparent;
  transition: 0.25s;
  opacity: 0;
  transform: translateY(18px);
  overflow-wrap: anywhere;
}
.category.visible {
  opacity: 1;
  transform: none;
}
.category:hover {
  border-color: var(--coral);
  transform: translateY(-5px);
}
.category > span:not(.category-mark) {
  font-size: 30px;
}
.category-mark {
  display: block;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: #111;
  margin-bottom: 22px;
}
.category-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}
.category h3 {
  font: 24px/1.08 var(--serif);
  margin: 0;
}
.category p {
  margin: 8px 0 0;
  color: #63746e;
  font-size: 12px;
  line-height: 1.4;
}
.category b {
  display: block;
  margin-top: auto;
  padding-top: 15px;
  font-size: 11px;
}
.feature-band {
  background: var(--clay);
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 510px;
  padding-left: 5vw;
}
.feature-band > div:first-child {
  padding: 90px 15% 60px 0;
}
.feature-band h2 {
  font-size: 62px;
}
.feature-band p:not(.eyebrow) {
  max-width: 340px;
}
.feature-photo {
  background: url("https://images.unsplash.com/photo-1513201099705-a9746e1e201f?auto=format&fit=crop&w=1200&q=85")
    center/cover;
}
.view-count {
  font-size: 12px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  opacity: 0;
  transform: translateY(15px);
  transition: 0.5s;
}
.product-card.visible {
  opacity: 1;
  transform: none;
}
.product-image {
  height: 290px;
  background: #e3e0d6;
  display: block;
  position: relative;
  overflow: hidden;
}
.product-image img {
  transition: transform 0.6s;
}
.product-card:hover img {
  transform: scale(1.05);
}
.badge {
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--yellow);
  padding: 5px 8px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
}
.select-product {
  position: absolute;
  right: 13px;
  bottom: 13px;
  border: 0;
  width: 32px;
  height: 32px;
  background: var(--cream);
  font-size: 22px;
  cursor: pointer;
}
.select-product.chosen {
  background: var(--coral);
  color: #fff;
}
.select-product:disabled {
  cursor: wait;
  opacity: 0.75;
}
.cart-panel {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  width: min(340px, calc(100vw - 32px));
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 20px 55px rgba(24, 53, 47, 0.18);
  padding: 20px;
  transform: translateY(calc(100% + 34px));
  transition: transform 0.28s ease;
}
.cart-panel.open,
.cart-panel.has-items {
  transform: translateY(0);
}
.cart-panel > b {
  display: block;
  margin-bottom: 14px;
  font: 600 20px var(--serif);
}
.cart-panel-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  background: var(--paper);
  cursor: pointer;
}
.cart-panel-items {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
.cart-panel-items p {
  margin: 0;
  color: #6e7974;
  font-size: 12px;
}
.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.cart-line span {
  display: grid;
  gap: 2px;
  font-size: 13px;
}
.cart-line small {
  color: #728179;
  font-size: 10px;
}
.cart-line button {
  width: 28px;
  height: 28px;
  border: 0;
  background: var(--paper);
  cursor: pointer;
}
.cart-line-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-btn {
  width: 24px;
  height: 24px;
  border: 0;
  background: var(--paper);
  cursor: pointer;
  font-size: 13px;
}
.qty-btn:disabled {
  cursor: wait;
  opacity: 0.6;
}
.qty-value {
  width: 34px;
  text-align: center;
  font-size: 12px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  padding: 4px 2px;
  appearance: textfield;
  -moz-appearance: textfield;
}
.qty-value:focus {
  outline: 1px solid var(--ink);
}
.qty-value:disabled {
  cursor: wait;
  opacity: 0.6;
}
.qty-value::-webkit-outer-spin-button,
.qty-value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-info {
  padding-top: 13px;
}
.product-info p {
  font-size: 10px;
  color: #73827c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.product-info h3 {
  font: 20px var(--serif);
  margin: 3px 0;
}
.product-info strong {
  font-size: 13px;
  display: inline-block;
  animation: priceReveal 0.55s ease-out;
}
.product-info del {
  font-size: 11px;
  color: #85908b;
  margin-left: 7px;
  display: inline-block;
  transform-origin: left center;
  animation: priceStrike 0.7s ease;
}
.product-info small {
  display: block;
  font-size: 10px;
  color: #73827c;
  margin-top: 9px;
}
@keyframes priceReveal {
  0% {
    opacity: 0;
    transform: scale(1.25) translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes priceStrike {
  0% {
    opacity: 0;
    transform: scale(1.3) translateY(-3px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.product-price-compact {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.product-price-compact strong {
  font-size: 14px;
  display: inline-block;
  animation: priceReveal 0.5s ease-out;
}
.product-price-compact del {
  color: #85908b;
  font-size: 11px;
  text-decoration-thickness: 2px;
  display: inline-block;
  animation: priceStrike 0.6s ease;
}
.row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.button.small {
  padding: 8px 12px;
  font-size: 12px;
}
.button.small.danger {
  background: #f5e2df;
  color: #8d3b2a;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 25, 20, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
}
.modal-card {
  width: min(960px, 92vw);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(24, 53, 47, 0.22);
  padding: 22px;
}
.modal-head {
  margin-bottom: 18px;
}
.admin-helper-text {
  margin: 0;
  color: #6e7974;
  font-size: 13px;
}
.product-list-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-list-meta img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
}
.product-list-meta div {
  display: grid;
  gap: 2px;
}
.product-list-meta small {
  color: #73827c;
  font-size: 11px;
}
.social {
  padding: 100px 5vw;
  background: var(--cream);
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: 28px;
  align-items: center;
}
.social h2 {
  font-size: 58px;
  margin-bottom: 30px;
}
.video-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  align-items: end;
}
.video {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.video.v1 {
  height: 350px;
  background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=700&q=80");
}
.video.v2 {
  background-image: url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=700&q=80");
}
.video.v3 {
  height: 220px;
  background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=700&q=80");
}
.video span {
  position: absolute;
  bottom: 13px;
  right: 13px;
  background: var(--cream);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  padding-top: 4px;
  font-size: 12px;
}
.reel-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.instagram-reels-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 18px;
  align-items: start;
  min-width: 0;
}
.instagram-reel-embed {
  overflow: hidden;
}
.instagram-reel-embed .instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 540px !important;
  margin: 0 auto !important;
}
.manual-reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 12px;
  align-items: stretch;
}
.local-reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
  align-items: stretch;
  min-width: 0;
}
.local-reel-card {
  position: relative;
  display: block;
  min-width: 0;
  max-width: 220px;
  min-height: clamp(220px, 30vw, 310px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
  color: #fff;
  isolation: isolate;
}
.local-reel-card img,
.local-reel-card video,
.local-reel-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.local-reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 35%,
    rgba(0, 0, 0, 0.68)
  );
  pointer-events: none;
}
.local-reel-card span,
.local-reel-card small {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
}
.local-reel-card span {
  bottom: 34px;
  font-weight: 700;
  font-size: 13px;
}
.local-reel-card small {
  bottom: 15px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.local-reel-card:hover img,
.local-reel-card:hover video {
  transform: scale(1.04);
}
.local-reel-card img,
.local-reel-card video {
  transition: transform 0.45s ease;
}
.local-reel-card video {
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.45s ease;
}
.local-reel-card.is-video-ready video {
  opacity: 1;
}
.local-reel-card.is-video-ready .reel-poster {
  opacity: 0;
}
.manual-reel-card {
  position: relative;
  min-height: 300px;
  background: #111;
  overflow: hidden;
}
.manual-reel-card iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}
.manual-reel-card a {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  background: rgba(24, 53, 47, 0.82);
  color: #fff;
  padding: 9px 10px;
  text-align: center;
  font-size: 11px;
}
.empty-reels {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px;
  display: grid;
  gap: 6px;
}
.empty-reels b {
  font: 600 24px var(--serif);
}
.empty-reels span {
  color: #6e7974;
  font-size: 13px;
}
.reel {
  height: 300px;
  background-color: var(--sage);
  background-position: center;
  background-size: cover;
  display: block;
  overflow: hidden;
}
.reel video {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.reel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(24, 53, 47, 0.72));
  opacity: 0.9;
  z-index: 3;
  pointer-events: none;
}
.reel-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  color: #fff;
  background: rgba(24, 53, 47, 0.28);
}
.reel-placeholder b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: auto;
  border: 1px solid #fff;
  border-radius: 50%;
}
.reel-placeholder span {
  position: static;
  width: auto;
  height: auto;
  background: none;
  font-size: 10px;
}
.reel span,
.reel small {
  z-index: 4;
  pointer-events: none;
}
.reel small {
  position: absolute;
  bottom: 15px;
  left: 14px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.3px;
}
footer {
  padding: 70px 5vw 25px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  border-top: 1px solid var(--line);
}
footer p {
  font-size: 13px;
  color: #667770;
}
footer b,
footer a {
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
}
footer .logo {
  width: 150px;
  height: 41px;
}
footer small {
  grid-column: 1/-1;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: #7c8780;
  display: flex;
  align-items: center;
  gap: 8px;
}
.copyright-logo {
  display: inline-block;
  width: 64px;
  height: 18px;
  object-fit: contain;
}
.page-intro {
  padding: 110px 15vw 90px;
  background: var(--yellow);
}
.page-intro > p:last-child {
  max-width: 420px;
  font-size: 17px;
}
.catalog-layout {
  padding: 65px 5vw 120px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 45px;
}
.catalog-layout label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
.catalog-layout input,
.enquiry-form input,
.enquiry-form textarea {
  display: block;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  width: 100%;
  padding: 12px 0;
  font: 14px var(--sans);
  outline: 0;
}
.catalog-layout .button {
  width: 100%;
  margin-top: 10px;
}
.filter-group {
  margin-bottom: 25px;
}
.filter-group b {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-bar a {
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 9px 12px;
  font-size: 12px;
}
.filter-bar a.active,
.filter-bar a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.results-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
  margin-bottom: 25px;
  font-size: 12px;
}
.catalog-main .product-grid {
  grid-template-columns: repeat(3, 1fr);
}
.product-detail {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: calc(100vh - 82px);
}
.detail-image {
  height: calc(100vh - 82px);
}
.detail-copy {
  padding: 12vw 10vw 60px 8vw;
  background: var(--cream);
}
.detail-copy h1 {
  font: 500 57px/0.98 var(--serif);
  letter-spacing: -2px;
  margin: 0 0 20px;
}
.detail-price {
  font-size: 19px;
}
.detail-price del {
  font-size: 13px;
  color: #87918a;
  margin-left: 8px;
}
.stock {
  font-size: 12px;
  color: #4f7860;
}
.slabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 35px 0;
  padding: 15px 0;
  gap: 5px;
  font-size: 10px;
  color: #6f7b76;
}
.slabs b {
  display: block;
  font-size: 12px;
  color: var(--ink);
}
.slabs small {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  color: #84908a;
}
.fine {
  font-size: 11px;
  color: #75817b;
}
.manifesto {
  padding: 120px 15vw;
  background: var(--coral);
  color: #fff;
}
.manifesto p {
  font: 500 44px/1.1 var(--serif);
  max-width: 780px;
}
.split-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  background: var(--cream);
}
.split-copy p:not(.eyebrow) {
  max-width: 480px;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.highlight-card {
  padding: 26px 22px;
  background: var(--cream);
  border-bottom: 3px solid var(--coral);
}
.highlight-card b {
  display: block;
  font: 20px var(--serif);
  margin-bottom: 10px;
}
.highlight-card p {
  margin: 0;
  font-size: 13px;
  color: #55655f;
  line-height: 1.5;
}
.eco-impact .lede {
  margin-bottom: 40px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  margin: 0;
  padding: 26px 24px;
  background: var(--cream);
  border-top: 3px solid var(--ink);
}
.testimonial-card p {
  margin: 0 0 20px;
  font: 16px/1.5 var(--serif);
  font-style: italic;
}
.testimonial-card footer b {
  display: block;
  font-size: 13px;
  font-style: normal;
}
.testimonial-card footer span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: #667770;
}
.contact-page {
  padding: 100px 12vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  min-height: 650px;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
  margin-top: 50px;
}
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--cream);
  padding: 38px;
}
.enquiry-form textarea {
  resize: vertical;
}
.enquiry-form small {
  font-size: 10px;
  color: #78837d;
}
.cart-summary {
  border: 1px solid var(--line);
  padding: 16px;
  display: grid;
  gap: 10px;
}
.cart-summary b {
  font: 600 18px var(--serif);
}
.cart-summary span,
.enquiry-products span {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--paper);
  padding: 8px 10px;
  font-size: 12px;
}
.cart-summary small,
.enquiry-products small {
  color: #6e7974;
  font-size: 10px;
}
.enquiry-summary {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 18px;
  display: grid;
  gap: 10px;
}
.enquiry-summary > b {
  font: 600 22px var(--serif);
}
.enquiry-summary span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
}
.enquiry-summary strong {
  color: #667770;
}
.enquiry-summary div {
  display: grid;
  gap: 6px;
}
.enquiry-summary p {
  margin: 0;
  color: #667770;
  font-size: 13px;
}
.login {
  padding: 110px 30%;
  min-height: 650px;
}
.error {
  color: #c54f3e;
  font-size: 12px;
}
.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 0 5vw 120px;
}
.journal-image {
  height: 420px;
  background: center/cover;
  margin-bottom: 25px;
}
.j1 {
  background-image: url("https://images.unsplash.com/photo-1544816155-12df9643f363?auto=format&fit=crop&w=1000&q=80");
}
.j2 {
  background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1000&q=80");
}
.journal-grid h2 {
  font: 32px var(--serif);
  max-width: 400px;
}
.admin-head {
  padding: 0 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
}
.admin-head h1 {
  font: 600 40px/1.05 var(--serif);
  letter-spacing: -1.5px;
  margin: 0 0 8px;
}

/* Admin shell */
.admin-body {
  margin: 0;
}
.admin-shell {
  display: flex;
  min-height: 100vh;
  background: var(--paper);
}
.admin-sidebar {
  flex: 0 0 246px;
  width: 246px;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 20px 14px;
  position: sticky;
  top: 0;
  height: 100vh;
  transition:
    width 0.2s ease,
    flex-basis 0.2s ease;
  z-index: 40;
}
.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 22px;
  color: #fff;
}
.admin-sidebar-brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 auto;
}
.admin-sidebar-brand span {
  font: 600 18px var(--serif);
  white-space: nowrap;
}
.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
}
.admin-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.admin-nav a.is-active {
  background: var(--coral);
  color: #fff;
}
.admin-nav svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.admin-sidebar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.admin-sidebar-toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}
.admin-shell.is-collapsed .admin-sidebar {
  flex-basis: 78px;
  width: 78px;
  padding: 20px 10px;
}
.admin-shell.is-collapsed .admin-sidebar-brand span,
.admin-shell.is-collapsed .admin-nav a span,
.admin-shell.is-collapsed .admin-sidebar-toggle span {
  display: none;
}
.admin-shell.is-collapsed .admin-sidebar-brand {
  justify-content: center;
  padding-inline: 0;
}
.admin-shell.is-collapsed .admin-nav a {
  justify-content: center;
  padding-inline: 0;
}
.admin-shell.is-collapsed .admin-sidebar-toggle svg {
  transform: rotate(180deg);
}
.admin-scrim {
  display: none;
}
.admin-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  height: 68px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.admin-menu-btn {
  display: none;
  border: 0;
  background: none;
  padding: 4px;
  cursor: pointer;
}
.admin-menu-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
}
.admin-page-title {
  flex: 1;
  font: 700 13px var(--sans);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #667770;
  margin: 0;
}
.admin-profile {
  position: relative;
}
.admin-profile-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: none;
  padding: 6px 8px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
}
.admin-profile-trigger:hover {
  background: rgba(24, 53, 47, 0.06);
}
.admin-profile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.admin-profile-avatar svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.admin-profile-name {
  font-size: 13px;
  font-weight: 700;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-profile-chevron {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.15s ease;
}
.admin-profile.is-open .admin-profile-chevron {
  transform: rotate(180deg);
}
.admin-profile-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 190px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(24, 53, 47, 0.16);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0.15s ease;
}
.admin-profile.is-open .admin-profile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.admin-profile-menu a,
.admin-profile-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  background: none;
  padding: 10px 12px;
  font: 13px var(--sans);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
}
.admin-profile-menu a:hover,
.admin-profile-menu button:hover {
  background: var(--paper);
}
.admin-profile-menu svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.admin-main {
  flex: 1;
  padding: 32px;
}
.admin-quicklinks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.admin-quicklink {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}
.admin-quicklink:hover {
  border-color: var(--coral);
}
.admin-quicklink svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--coral);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.admin-quicklink b {
  display: block;
  font: 600 26px var(--serif);
}
.admin-quicklink span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #667770;
  margin-top: 2px;
}
@media (max-width: 960px) {
  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
  }
  .admin-shell.is-mobile-open .admin-sidebar {
    transform: translateX(0);
  }
  .admin-sidebar-toggle {
    display: none;
  }
  .admin-scrim {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(16, 31, 27, 0.45);
    z-index: 35;
  }
  .admin-shell.is-mobile-open .admin-scrim {
    display: block;
  }
  .admin-menu-btn {
    display: block;
  }
  .admin-topbar {
    padding: 0 16px;
  }
  .admin-main {
    padding: 20px 16px;
  }
}
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.dashboard-stats div {
  min-width: 0;
  padding: clamp(18px, 3vw, 28px) clamp(16px, 3vw, 5vw);
  background: var(--cream);
}
.dashboard-stats small,
.dashboard-stats span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.dashboard-stats b {
  font: clamp(31px, 5vw, 48px)/1 var(--serif);
  display: block;
  margin: 10px 0;
  overflow-wrap: anywhere;
}
.dashboard-stats span {
  color: #50815f;
}
.admin-table {
  padding: 0 0 60px;
}
.badge-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 12px;
  color: #667770;
  white-space: nowrap;
}
.badge-pill b {
  font: 700 15px var(--sans);
  color: var(--coral);
}
.button.coral {
  background: var(--coral);
  color: #fff;
}
.button.coral:hover {
  background: #d9603f;
}
.reels-sources-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.reels-source {
  display: flex;
  gap: 16px;
  padding: 26px;
}
.reels-source + .reels-source {
  border-left: 1px solid var(--line);
}
.reels-source-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--coral);
}
.reels-source-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reels-source-body {
  flex: 1;
  min-width: 0;
}
.reels-source-body label {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #667770;
}
.reels-source-row {
  display: flex;
  gap: 14px;
  align-items: end;
}
.reels-source-row input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 10px 0;
  font: 14px var(--sans);
  outline: 0;
}
.reels-source-row .button {
  flex: 0 0 auto;
}
.reels-source-body .error,
.reels-source-body .success {
  margin-top: 10px;
}
.reels-tracked-pages {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.reels-tracked-pages li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px 7px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.reels-no-sources {
  border-radius: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  font-weight: 400 !important;
  color: #7c8780;
}
.reels-tracked-pages form {
  display: contents;
}
.reels-tracked-pages button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: none;
  color: #99a6a1;
  cursor: pointer;
}
.reels-tracked-pages button:hover {
  background: #f0ded9;
  color: #c54f3e;
}
.reels-tracked-pages button svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.reels-selection-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.slot-count-form {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.slot-count-form label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #667770;
}
.slot-stepper {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  background: #fff;
}
.slot-stepper button {
  width: 32px;
  border: 0;
  background: var(--cream);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
}
.slot-stepper button:hover {
  background: var(--line);
}
.slot-stepper input {
  width: 40px;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  font: 700 14px var(--sans);
  background: none;
  -moz-appearance: textfield;
}
.slot-stepper input::-webkit-outer-spin-button,
.slot-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.reels-info-banner {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 14px 18px;
  background: var(--cream);
  border-left: 3px solid var(--sage);
  color: #566860;
  font-size: 13px;
  line-height: 1.55;
}
.reels-info-banner svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  fill: none;
  stroke: #6f9a7f;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reels-slot-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.reel-slot {
  position: relative;
  max-width: 220px;
  aspect-ratio: 9 / 16;
  border: 2px dashed var(--line);
  background: var(--cream);
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
.reel-slot.is-filled {
  border-style: solid;
  border-color: var(--line);
  padding: 0;
}
.reel-slot.is-drag-over {
  border-color: var(--coral);
  background: #fdf0ec;
}
.reel-slot-number {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font: 700 11px var(--sans);
}
.reel-slot-empty {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #99a6a1;
}
.reel-slot-card {
  position: relative;
  height: 100%;
  cursor: grab;
}
.reel-slot-card.is-dragging {
  opacity: 0.35;
}
.reel-slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-slot-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 31, 27, 0.55);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease;
}
.reel-slot-remove:hover {
  background: #c54f3e;
}
.reel-slot-remove svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.reels-manage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.reel-manage-card {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 260px;
  cursor: grab;
  border: 1px solid var(--line);
  background: var(--cream);
  overflow: hidden;
  transition:
    border-color 0.15s ease,
    opacity 0.15s ease;
}
.reel-manage-card.is-dragging {
  opacity: 0.35;
}
.reel-manage-card.is-slotted {
  border-color: var(--coral);
}
.reel-manage-card img {
  height: 220px;
  background: #111;
}
.reel-manage-slot-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font: 700 10px var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.reel-manage-delete-form {
  display: contents;
}
.reel-manage-delete {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 31, 27, 0.55);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease;
}
.reel-manage-delete:hover {
  background: #c54f3e;
}
.reel-manage-delete svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reel-manage-card-body {
  padding: 12px 14px 4px;
}
.reel-manage-card-body b {
  display: block;
  font: 600 14px var(--serif);
}
.reel-manage-card-body span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: #7c8780;
}
.reel-manage-card-body a {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  text-decoration: underline;
}
.reel-manage-slot-select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.reel-manage-slot-select select {
  flex: 1;
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 8px;
  font: 12px var(--sans);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
}
.reels-flash {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 90;
  transform: translate(-50%, 16px);
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(24, 53, 47, 0.25);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.reels-flash.is-error {
  background: #c54f3e;
}
.reels-flash.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.success {
  color: #50815f;
  font-size: 12px;
}
.enquiry-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.enquiry-products a {
  color: var(--ink);
  text-decoration: underline;
}
.status-form {
  display: flex;
  gap: 8px;
  align-items: center;
}
.status-form select {
  min-width: 118px;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 8px 10px;
  font: 12px var(--sans);
  color: var(--ink);
}
.status-form button {
  border: 0;
  background: var(--ink);
  color: #fff;
  padding: 9px 12px;
  font: 700 10px var(--sans);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}
.delete-form button {
  border: 1px solid #c54f3e;
  background: transparent;
  color: #c54f3e;
  padding: 8px 10px;
  font: 700 10px var(--sans);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}
.delete-form button:hover {
  background: #c54f3e;
  color: #fff;
}
.error {
  color: #c54f3e;
  font-size: 12px;
  margin-top: 10px;
}
.product-form {
  margin-top: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 25px;
}
.product-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 25px;
}
.product-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-form .checkbox-field {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.product-form .checkbox-field input {
  width: auto;
}
.product-form .full-width {
  grid-column: 1 / -1;
}
.discount-slabs {
  border: 1px solid var(--line);
  margin: 0;
  padding: 16px;
}
.discount-slabs legend {
  padding: 0 8px;
}
.slab-head,
.slab-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.slab-head {
  margin-bottom: 8px;
  color: #6e7974;
  font-size: 10px;
}
.slab-row + .slab-row {
  margin-top: 10px;
}
.product-form input,
.product-form select,
.product-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 14px;
  font: 14px var(--sans);
  color: var(--ink);
  resize: vertical;
  outline: 0;
}
.product-form textarea {
  min-height: 120px;
}
.product-form .checkbox-field input {
  width: auto;
}
.product-form .button {
  margin-top: 20px;
}
.admin-table h2 {
  font: 36px var(--serif);
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 12px;
}
th {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #708079;
}
td,
th {
  padding: 15px;
  border-bottom: 1px solid var(--line);
}
td small {
  display: block;
  color: #718078;
}
.status {
  background: var(--yellow);
  padding: 4px 8px;
  font-size: 10px;
}
.hero.home-immersive-hero {
  min-height: 100svh;
  display: block;
  padding: 0;
  margin-top: -114px;
  position: relative;
  overflow: clip;
  background: var(--paper);
  isolation: isolate;
}
.home-immersive-hero .hero-image {
  position: absolute;
  inset: var(--hero-inset, 0px);
  min-height: auto;
  height: auto;
  overflow: hidden;
  border-radius: var(--hero-radius, 0px);
  transform: scale(var(--hero-scale, 1));
  transform-origin: center center;
  transition:
    border-radius 0.12s linear,
    inset 0.12s linear,
    transform 0.12s linear;
  background: #d9d2c6;
  z-index: 0;
}
.home-immersive-hero .hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 25, 21, 0.68),
      rgba(10, 25, 21, 0.18) 52%,
      rgba(10, 25, 21, 0.05)
    ),
    linear-gradient(0deg, rgba(10, 25, 21, 0.42), rgba(10, 25, 21, 0) 48%);
  pointer-events: none;
}
.home-immersive-hero .hero-copy {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 760px;
  padding: 160px 5vw 9vh;
  color: #fff;
}
.home-immersive-hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}
.home-immersive-hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}
.home-immersive-hero .hero-copy h1 em {
  color: #fff;
  font-style: italic;
  box-shadow: inset 0 -0.13em 0 rgba(239, 116, 93, 0.92);
}
.home-immersive-hero .lede {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
}
.home-immersive-hero .button.secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.55);
}
.home-immersive-hero .hero-stat-card {
  z-index: 2;
  right: 5vw;
  left: auto;
  bottom: 7vh;
  border-radius: 8px;
}
.social {
  border-top: 0;
}
.feature-photo {
  background-image: url("https://images.unsplash.com/photo-1513201099705-a9746e1e201f?auto=format&fit=crop&w=1200&q=85");
}
.box-builder-page {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 47% 53%;
  background: var(--cream);
}
.box-builder-intro {
  padding: 110px 8vw 80px 5vw;
}
.box-builder-intro h1,
.box-modal-head h2 {
  font: 600 clamp(48px, 6vw, 82px)/0.98 var(--serif);
  margin: 0 0 24px;
}
.box-builder-intro h1 em {
  color: var(--coral);
}
.box-builder-visual {
  min-height: 560px;
}
.box-builder-preview {
  background: var(--paper);
}
.box-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.box-step-grid article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 16px;
}
.box-step-grid img {
  height: 140px;
}
.box-step-grid b {
  display: block;
  font: 24px var(--serif);
}
.box-step-grid span,
.box-step-grid p {
  color: #667770;
  font-size: 13px;
}
.box-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(16, 31, 27, 0.55);
  padding: 22px;
}
.box-modal.open {
  display: flex;
}
.box-modal-panel {
  width: min(1180px, 96vw);
  max-height: 92vh;
  overflow: auto;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(24, 53, 47, 0.28);
  padding: 26px;
  position: relative;
}
.box-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border: 0;
  background: var(--paper);
  cursor: pointer;
}
.box-modal-head h2 {
  font-size: 42px;
  letter-spacing: -1px;
}
.box-builder-columns {
  display: grid;
  grid-template-columns: 1fr 1.25fr 320px;
  gap: 18px;
  align-items: start;
}
.box-builder-panel,
.box-builder-summary {
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
}
.box-builder-section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 12px;
}
.box-builder-section-head b,
.box-builder-summary > b {
  font: 600 20px var(--serif);
}
.box-builder-section-head span {
  color: #667770;
}
.box-package-options,
.box-gift-grid,
.box-builder-summary {
  display: grid;
  gap: 12px;
}
.box-package-card,
.box-gift-card {
  display: grid;
  grid-template-columns: 20px 72px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 10px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.box-package-card:hover,
.box-gift-card:hover,
.box-package-card:has(input:checked),
.box-gift-card:has(input:checked) {
  border-color: var(--ink);
  background: var(--paper);
}
.box-package-card:has(input:checked),
.box-gift-card:has(input:checked) {
  transform: translateY(-2px);
}
.box-package-card img,
.box-gift-card img {
  width: 72px;
  height: 72px;
}
.box-package-card b,
.box-gift-card b {
  display: block;
  font-size: 13px;
}
.box-package-card small,
.box-gift-card small,
.box-builder-summary small {
  display: block;
  color: #6e7974;
  font-size: 11px;
}
.box-gift-grid {
  max-height: 470px;
  overflow: auto;
  padding-right: 4px;
}
.box-gift-card.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.price-compare,
.price-now {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.price-compare span,
.price-now span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #667770;
}
.price-compare del {
  color: #83908a;
  text-decoration-thickness: 2px;
}
.price-now strong {
  font: 600 34px var(--serif);
  color: var(--coral);
}
.price-pulse {
  animation: priceReveal 0.45s ease-out;
}
.box-builder-summary p {
  margin: 0;
  color: #50815f;
  font-weight: 700;
  font-size: 13px;
}
.box-progress {
  height: 6px;
  background: var(--paper);
  overflow: hidden;
}
.box-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--sage);
  transition: width 0.25s ease;
}
.box-builder-summary input,
.box-builder-summary textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 14px;
  font: 14px var(--sans);
  color: var(--ink);
  outline: 0;
  resize: vertical;
}
.box-builder-summary .button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Blog styles */
.blogs-section {
  padding: 100px 5vw;
  background: var(--paper);
}

.blogs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeIn 0.5s ease forwards;
}

.blog-card:nth-child(1) {
  animation-delay: 0.1s;
}
.blog-card:nth-child(2) {
  animation-delay: 0.2s;
}
.blog-card:nth-child(3) {
  animation-delay: 0.3s;
}
.blog-card:nth-child(n + 4) {
  animation-delay: 0.4s;
}

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

.blog-card:hover {
  box-shadow: 0 10px 30px rgba(24, 53, 47, 0.12);
  transform: translateY(-2px);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.blog-card h2 {
  font: 24px var(--serif);
  margin: 0 0 12px;
  line-height: 1.3;
  color: var(--ink);
  min-height: calc(1.3em * 4);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  font-size: 14px;
  color: #667770;
  margin: 0 0 15px;
  line-height: 1.5;
  min-height: calc(1.5em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 11px;
  color: #7c8780;
  margin-bottom: 12px;
}

.blog-date,
.blog-views {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-link {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.blog-link:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

.empty-state {
  padding: 80px 5vw;
  text-align: center;
  color: #667770;
  font-size: 16px;
}

/* Blog detail page */
.blog-detail {
  padding: 60px 5vw;
  background: var(--paper);
}

.blog-detail-container {
  max-width: 900px;
  margin: 0 auto;
}

.blog-header {
  margin-bottom: 50px;
}

.blog-detail-image {
  height: 400px;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
  border-radius: 4px;
  overflow: hidden;
}

.blog-header-content {
  background: white;
  padding: 30px;
  border: 1px solid var(--line);
}

.blog-detail h1 {
  font: 600 48px/1.1 var(--serif);
  letter-spacing: -1px;
  margin: 0 0 20px;
  color: var(--ink);
}

.blog-header-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #7c8780;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-body {
  background: white;
  padding: 40px 30px;
  border: 1px solid var(--line);
  border-top: 0;
  line-height: 1.7;
}

.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
  font-family: var(--serif);
  margin: 30px 0 15px;
  color: var(--ink);
  line-height: 1.3;
}

.markdown-content h1 {
  font-size: 36px;
}
.markdown-content h2 {
  font-size: 28px;
}
.markdown-content h3 {
  font-size: 22px;
}
.markdown-content h4 {
  font-size: 18px;
}

.markdown-content p {
  margin: 0 0 15px;
  color: #404040;
}

.markdown-content strong {
  font-weight: 700;
  color: var(--ink);
}

.markdown-content em {
  font-style: italic;
  color: #555;
}

.markdown-content a {
  color: var(--coral);
  text-decoration: underline;
}

.markdown-content a:hover {
  color: var(--ink);
}

.markdown-content ul,
.markdown-content ol {
  margin: 20px 0;
  padding-left: 25px;
  color: #404040;
}

.markdown-content li {
  margin-bottom: 8px;
}

.markdown-content blockquote {
  border-left: 4px solid var(--coral);
  margin: 20px 0;
  padding-left: 20px;
  color: #666;
  font-style: italic;
  background: var(--cream);
  padding: 15px 20px;
}

.markdown-content code {
  background: var(--cream);
  padding: 2px 6px;
  border-radius: 2px;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 12px;
  color: #c54f3e;
}

.markdown-content pre {
  background: #2b2b2b;
  color: #f8f8f2;
  padding: 15px;
  border-radius: 4px;
  overflow-x: auto;
  margin: 20px 0;
  line-height: 1.4;
}

.markdown-content pre code {
  background: none;
  color: #f8f8f2;
  padding: 0;
}

.markdown-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 4px;
}

.markdown-content hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 30px 0;
}

.blog-footer {
  margin-top: 50px;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.status {
  background: var(--yellow);
  padding: 4px 8px;
  font-size: 10px;
}
@media (max-width: 800px) {
  main {
    padding-top: 94px;
  }
  .site-header {
    top: 14px;
    width: calc(100vw - 24px);
    height: 64px;
    padding: 0 14px 0 18px;
    gap: 12px;
  }
  .site-header.is-solid,
  .site-header.is-inner {
    top: 12px;
    width: calc(100vw - 24px);
  }
  .logo {
    width: 96px;
    height: 34px;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    color: #202340;
    box-shadow: 0 16px 38px rgba(24, 53, 47, 0.14);
  }
  .site-header nav.open {
    display: flex;
  }
  .header-enquiry {
    display: none;
  }
  .menu {
    display: block;
    margin-left: auto;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    padding: 10px 14px;
    font: 700 12px var(--sans);
  }
  .hero {
    display: block;
    padding: 0;
  }
  .hero.home-immersive-hero {
    min-height: 100svh;
    margin-top: -94px;
  }
  .hero-copy {
    padding: 70px 8vw 60px;
  }
  .home-immersive-hero .hero-copy {
    min-height: 100svh;
    padding: 130px 8vw 8vh;
  }
  .hero h1 {
    font-size: 62px;
  }
  .home-immersive-hero h1 {
    font-size: 54px;
  }
  .hero-image {
    min-height: 430px;
  }
  .home-immersive-hero .hero-image {
    min-height: auto;
  }
  .hero-stat-card {
    left: 8vw;
    bottom: 8%;
    padding: 16px 20px;
  }
  .home-immersive-hero .hero-stat-card {
    right: auto;
    left: 8vw;
    bottom: 24px;
    display: none;
  }
  .hero-stat-card b {
    font-size: 30px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .brand-strip {
    padding: 35px 8vw 45px;
  }
  .brand-strip-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
  }
  .brand-strip-stats b {
    font-size: 24px;
  }
  .brand-strip-logos {
    max-width: 100%;
  }
  .stripe {
    gap: 20px;
    overflow: hidden;
    white-space: nowrap;
  }
  .stripe span:nth-child(2) {
    display: none;
  }
  .section {
    padding: 75px 8vw;
  }
  .section-heading {
    align-items: start;
    gap: 20px;
    flex-direction: column;
  }
  .section-heading h2,
  .social h2 {
    font-size: 45px;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category {
    min-height: 190px;
    padding: 20px;
  }
  .category h3 {
    font-size: 20px;
  }
  .feature-band {
    display: block;
    padding: 0;
  }
  .feature-band > div:first-child {
    padding: 70px 8vw;
  }
  .feature-photo {
    min-height: 350px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px 12px;
  }
  .product-image {
    height: 210px;
  }
  .product-info h3 {
    font-size: 17px;
  }
  .social {
    display: block;
    padding: 75px 8vw;
  }
  .video-grid {
    margin-top: 45px;
  }
  .reel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reel {
    height: 230px;
  }
  .video {
    height: 190px;
  }
  .video.v1 {
    height: 250px;
  }
  .video.v3 {
    height: 150px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    padding: 55px 8vw 25px;
  }
  footer > div:first-child {
    grid-column: 1/-1;
  }
  footer small {
    grid-column: 1/-1;
  }
  .page-intro {
    padding: 75px 8vw;
  }
  .page-intro h1,
  .contact-page h1,
  .login h1 {
    font-size: 59px;
  }
  .catalog-layout {
    display: block;
    padding: 45px 8vw 80px;
  }
  .catalog-layout aside {
    margin-bottom: 45px;
  }
  .catalog-layout form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .catalog-layout .button {
    grid-column: 1/-1;
  }
  .catalog-main .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-detail {
    display: block;
  }
  .box-builder-page {
    display: block;
  }
  .box-builder-intro {
    padding: 75px 8vw 55px;
  }
  .box-builder-intro h1 {
    font-size: 56px;
  }
  .box-builder-visual {
    min-height: 340px;
  }
  .box-step-grid {
    grid-template-columns: 1fr;
  }
  .box-step-grid article {
    grid-template-columns: 110px 1fr;
  }
  .box-step-grid img {
    height: 110px;
  }
  .box-modal {
    padding: 0;
    align-items: stretch;
  }
  .box-modal-panel {
    width: 100vw;
    max-height: 100vh;
    padding: 22px 8vw 36px;
  }
  .box-builder-columns {
    grid-template-columns: 1fr;
  }
  .box-gift-grid {
    max-height: none;
  }
  .detail-image {
    height: 430px;
  }
  .detail-copy {
    padding: 60px 8vw;
  }
  .detail-copy h1 {
    font-size: 46px;
  }
  .contact-page {
    display: block;
    padding: 70px 8vw;
  }
  .contact-links {
    margin: 35px 0;
  }
  .enquiry-form {
    padding: 25px 0;
    background: transparent;
  }
  .manifesto {
    padding: 75px 8vw;
  }
  .manifesto p {
    font-size: 34px;
  }
  .split-copy {
    display: block;
  }
  .split-copy > div + div {
    margin-top: 45px;
  }
  .highlight-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .journal-grid {
    display: block;
    padding: 0 8vw 80px;
  }
  .journal-grid article + article {
    margin-top: 60px;
  }
  .journal-image {
    height: 300px;
  }
  .login {
    padding: 80px 8vw;
  }
  .admin-head {
    display: block;
  }
  .admin-head h1 {
    font-size: 32px;
  }
  .admin-head .badge-pill,
  .admin-head > a {
    margin-top: 14px;
  }
  .dashboard-stats {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 145px), 1fr));
  }
  .reels-sources-card {
    grid-template-columns: 1fr;
  }
  .reels-source + .reels-source {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .reels-selection-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .manual-reels-grid,
  .instagram-reels-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  }
  .local-reels-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 140px), 1fr));
    gap: 8px;
  }
  .local-reel-card {
    max-width: none;
  }
  .admin-table {
    overflow: auto;
  }
  .admin-table table {
    min-width: 650px;
  }
  .blog-card h2,
  .blog-excerpt {
    min-height: 0;
  }
}
@media (max-width: 520px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
  .category {
    min-height: auto;
    padding: 20px;
  }
  .category-mark {
    margin-bottom: 16px;
  }
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  .dashboard-stats div {
    padding: 18px 20px;
  }
  .reels-source {
    padding: 20px;
  }
  .reels-source-row {
    flex-direction: column;
    align-items: stretch;
  }
  .reels-source-row .button {
    width: 100%;
  }
}
