/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #0B1124;
  --color-bg-rgb: 11 17 36;
  --color-foreground: #C8D0E8;
  --color-foreground-rgb: 200 208 232;
  --color-heading: #E8EDFF;
  --color-heading-rgb: 232 237 255;
  --color-primary: #6C7BDB;
  --color-primary-rgb: 108 123 219;
  --color-primary-hover: #5A6BCC;
  --color-border: #1E2A4A;
  --color-border-rgb: 30 42 74;
  --color-btn-text: #FFFFFF;
  --color-btn-bg: #6C7BDB;
  --color-btn-hover: #5A6BCC;

  --font-body: 'Acme', sans-serif;
  --font-subheading: 'Arimo', sans-serif;
  --font-heading: 'Bevan', serif;
  --font-accent: 'Playfair Display', serif;

  --max-width: 1200px;
  --transition: 0.2s ease-in-out;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-foreground);
  background-color: var(--color-bg);
  line-height: 1.4;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}
a:hover { opacity: 0.8; }

ul { list-style: none; }

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

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 7.2vw, 4.5rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.25rem, 4.8vw, 3rem);
  font-weight: 400;
}

h3 { font-size: 2rem; }
h4 {
  font-size: 1.5rem;
  font-family: var(--font-subheading);
  letter-spacing: normal;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

em {
  font-family: var(--font-accent);
  font-style: italic;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
  text-align: center;
}

.btn-primary {
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  box-shadow: 0 2px 3px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  background: var(--color-btn-hover);
  color: var(--color-btn-text);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn-secondary:hover {
  background: rgba(108, 123, 219, 0.1);
  color: var(--color-foreground);
  border-color: var(--color-foreground);
}

/* === Age Verification Modal === */
.age-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.age-modal.active {
  opacity: 1;
  visibility: visible;
}

.age-modal-content {
  background: var(--color-bg);
  padding: 3rem 2rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.age-modal-content h2 {
  margin-bottom: 1rem;
}

.age-modal-content p {
  margin-bottom: 1.5rem;
  color: var(--color-foreground);
}

.age-modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.age-modal-disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  gap: 1rem;
}

.header-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-foreground);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.main-nav ul {
  display: flex;
  gap: 1.5rem;
}
.main-nav a {
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  padding: 0.5rem 0;
}
.main-nav a.active::after,
.main-nav a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
}

.header-logo {
  flex-shrink: 0;
}
.header-logo a {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-heading);
  white-space: nowrap;
}

.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}

.header-icon {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-foreground);
  transition: color var(--transition);
}
.header-icon:hover { color: var(--color-primary); }

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.65rem;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-subheading);
  font-weight: 700;
}

/* === Mobile Menu === */
.mobile-menu {
  display: none;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 0.5rem 1.5rem 1rem;
}
.mobile-menu.active { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu a {
  display: block;
  padding: 0.6rem 0;
  font-family: var(--font-subheading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* === Hero === */
.hero {
  padding: 4rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #141E3C 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--color-foreground);
  opacity: 0.8;
}

/* === Featured Product === */
.featured-product {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.featured-product:last-of-type {
  border-bottom: none;
}

.product-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.gallery-main {
  background: #141E3C;
  border: 1px solid var(--color-border);
  margin-bottom: 1rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
}

.gallery-thumbs .thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  background: #141E3C;
}
.gallery-thumbs .thumb.active {
  border-color: var(--color-primary);
}

.product-info h2 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.product-pricing {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.sale-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-foreground);
  font-family: var(--font-subheading);
}

.regular-price {
  font-size: 1.125rem;
  text-decoration: line-through;
  color: var(--color-foreground);
  opacity: 0.5;
  font-family: var(--font-subheading);
}

.product-description {
  margin-bottom: 1.5rem;
}

.product-description p {
  line-height: 1.6;
}

.product-options {
  margin-bottom: 1.5rem;
}

.product-options label {
  display: block;
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
  opacity: 0.8;
}

.flavor-select {
  width: 100%;
  padding: 0.8rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-foreground);
  background: #0D1530;
  border: 1px solid var(--color-border);
  border-radius: 0;
  cursor: pointer;
  transition: border-color var(--transition);
  min-height: 44px;
}
.flavor-select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.product-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  background: #0D1530;
}

.quantity-selector button {
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--color-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.quantity-selector button:hover {
  background: var(--color-border);
}

.quantity-selector input {
  width: 50px;
  height: 44px;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-foreground);
  background: #0D1530;
  -moz-appearance: textfield;
}
.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-selector input:focus {
  outline: none;
}

.btn-add {
  flex: 1;
  min-width: 160px;
}

/* === About Section === */
.about-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, #141E3C 100%);
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--color-border);
}

.about-content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  margin-bottom: 1.25rem;
}

.about-content > p {
  max-width: 650px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature {
  padding: 2rem 1rem;
}

.feature-icon {
  margin-bottom: 1rem;
}

.feature h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* === Footer === */
.site-footer {
  background: #060C1A;
  color: #8892B0;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: #C8D0E8;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 300px;
}

.footer-links h4,
.footer-policies h4 {
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #C8D0E8;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-policies ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-policies a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.footer-links a:hover,
.footer-policies a:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(136, 146, 176, 0.2);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-bottom a {
  color: #6C7BDB;
  transition: opacity var(--transition);
}
.footer-bottom a:hover {
  opacity: 1;
}

/* === Cart Drawer === */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.cart-drawer.active {
  visibility: visible;
  opacity: 1;
}

.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.cart-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 95vw;
  max-width: 450px;
  height: 100dvh;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease-out-quad, cubic-bezier(0.32, 0.72, 0, 1));
}
.cart-drawer.active .cart-drawer-content {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer-header h2 {
  font-size: 1.25rem;
  font-family: var(--font-subheading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-foreground);
}

.cart-close,
.search-close,
.modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--color-foreground);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}
.cart-close:hover,
.search-close:hover,
.modal-close:hover {
  color: var(--color-primary);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 0;
  opacity: 0.6;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: #141E3C;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cart-item-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-heading);
}

.cart-item-variant {
  font-size: 0.85rem;
  opacity: 0.7;
  font-family: var(--font-subheading);
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  background: #0D1530;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-foreground);
  transition: background var(--transition);
}
.cart-item-qty button:hover {
  background: var(--color-border);
}

.cart-item-qty span {
  min-width: 24px;
  text-align: center;
  font-family: var(--font-subheading);
}

.cart-item-price {
  font-family: var(--font-subheading);
  font-weight: 700;
  color: var(--color-foreground);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--color-foreground);
  opacity: 0.5;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0;
  text-align: left;
  transition: opacity var(--transition);
  font-family: var(--font-subheading);
}
.cart-item-remove:hover {
  opacity: 1;
}

.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--color-border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-foreground);
}

.btn-checkout {
  width: 100%;
}

/* === Search Drawer === */
.search-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.search-drawer.active {
  visibility: visible;
  opacity: 1;
}

.search-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.search-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 95vw;
  max-width: 450px;
  height: 100dvh;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease-out-quad, cubic-bezier(0.32, 0.72, 0, 1));
}
.search-drawer.active .search-drawer-content {
  transform: translateX(0);
}

.search-drawer-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  gap: 0.5rem;
}

.search-drawer-header form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-drawer-header input {
  flex: 1;
  padding: 0.7rem 0.5rem;
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-foreground);
  background: #0D1530;
  min-height: 44px;
}
.search-drawer-header input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.search-drawer-header form button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--color-foreground);
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-results {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.search-results p {
  text-align: center;
  padding: 2rem 0;
  opacity: 0.6;
}

.search-result-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition: background var(--transition);
}
.search-result-item:hover {
  background: rgba(108, 123, 219, 0.08);
}

.search-result-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  background: #141E3C;
  border: 1px solid var(--color-border);
}

.search-result-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-heading);
  margin-bottom: 0.25rem;
}

.search-result-info .price {
  font-family: var(--font-subheading);
  color: var(--color-foreground);
}

/* === Success Modal === */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.active {
  visibility: visible;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.modal-content {
  position: relative;
  background: var(--color-bg);
  max-width: 420px;
  width: 90%;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.modal-body {
  padding: 2.5rem 2rem;
  text-align: center;
}

.success-icon {
  margin-bottom: 1rem;
}

.modal-body h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-body p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.success-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Checkout Modal === */
.checkout-modal .modal-content {
  max-width: 500px;
}

.checkout-body {
  padding: 2rem;
}

.checkout-body h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.checkout-summary {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #141E3C;
  border: 1px solid var(--color-border);
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-family: var(--font-subheading);
}

.checkout-summary-row.total {
  border-top: 2px solid var(--color-border);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.checkout-form-group label {
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.checkout-form-group input {
  padding: 0.8rem;
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-foreground);
  background: #0D1530;
  min-height: 44px;
}
.checkout-form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.checkout-paylio-info {
  text-align: center;
  padding: 0.75rem;
  background: #141E3C;
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  font-family: var(--font-subheading);
}

.checkout-error {
  color: #FF6B6B;
  font-size: 0.85rem;
  text-align: center;
  display: none;
}

/* === Responsive === */
@media (max-width: 768px) {
  .header-top {
    padding: 0.6rem 1rem;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .header-logo a {
    font-size: 1.15rem;
  }

  .product-display {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-gallery {
    position: static;
  }

  .gallery-thumbs .thumb {
    width: 60px;
    height: 60px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .featured-product {
    padding: 2rem 1rem;
  }

  .product-actions {
    flex-direction: column;
  }

  .btn-add {
    width: 100%;
  }

  .quantity-selector {
    width: 100%;
  }

  .quantity-selector input {
    flex: 1;
  }

  .success-actions {
    flex-direction: column;
  }

  .success-actions .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .product-display {
    gap: 2rem;
  }
}