/* =============================================================================
   VARIABLES
   ============================================================================= */

:root {
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-s: 0.5rem;
  --spacing-m: 1rem;
  --spacing-l: 1.5rem;
  --spacing-xl: 2rem;

  /* Colours */
  --color-black: #000;
  --color-white: #fff;
  --color-gray-100: #f7f1f7;
  --color-gray-200: #efe9ef;
  --color-gray-300: #ddd8dd;
  --color-gray-400: #ccc7cc;
  --color-gray-500: #999499;
  --color-gray-600: #777277;
  --color-gray-700: #595359;
  --color-gray-800: #3e383e;
  --color-gray-900: #292329;
  --color-red: #cc1111;

  --white: #f5f5f5;
  --black: #1d1c1b;
  --back: #292329;
  --cream: #f0ecd9;
  --pink: #efa3ab;
  --green: #70a566;
  --red: #c3423c;
  --grey: #2e3239;
  --yellow: #f7f590;
  --orange: #ef8960;

  /* Typography */
  --text-xs: 0.75rem;
  --text-s: 0.875rem;
  --text-m: 1rem;
  --text-l: 1.125rem;
  --text-xl: 1.25rem;
  --text-xxl: 1.5rem;
  --text-3xl: 1.75rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3rem;
  --text-6xl: 4rem;
}


/* =============================================================================
   RESET
   ============================================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

abbr {
  text-decoration: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* =============================================================================
   FONTS
   ============================================================================= */

@font-face {
  font-family: 'Roboto Mono';
  src: url('../fonts/RobotoMono-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Mono';
  src: url('../fonts/RobotoMono-Italic-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 100 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-bold.woff2') format('woff2-variations');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-300.woff2') format('woff2-variations');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-regular.woff2') format('woff2-variations');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =============================================================================
   BASE
   ============================================================================= */

html {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.2;
  color: var(--pink);
  background: var(--black);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.4;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

summary,
strong {
  font-weight: 700;
}

main {
  margin-top: var(--spacing-xl);
}

*:focus-visible {
  box-shadow: 0 0 0 2px var(--your-color);
  outline: 1px solid var(--white);
}

::placeholder {
  color: #444;
  opacity: 1;
  font-weight: 400;
}

:focus::placeholder {
  opacity: 0;
}


/* =============================================================================
   TYPOGRAPHY
   ============================================================================= */

h1 {
  color: var(--white);
  margin-bottom: var(--spacing-l);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;

}

h1:before {
  content: "—";
  color: var(--pink);
}

h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--spacing-m);
}

.text-xs  { font-size: var(--text-xs); }
.text-s   { font-size: var(--text-s); }
.text-m   { font-size: var(--text-m); }
.text-l   { font-size: var(--text-l); }
.text-xl  { font-size: var(--text-xl); }
.text-xxl { font-size: var(--text-xxl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }
.text-6xl { font-size: var(--text-6xl); }


/* =============================================================================
   LAYOUT
   ============================================================================= */

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-l);
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid > [data-width="1/1"],
  .grid > [data-width="12/12"],
  .grid > [data-width="2/2"],
  .grid > [data-width="3/3"],
  .grid > [data-width="4/4"],
  .grid > [data-width="6/6"]   { grid-column-start: span 12; }

  .grid > [data-width="11/12"] { grid-column-start: span 11; }

  .grid > [data-width="10/12"],
  .grid > [data-width="5/6"]   { grid-column-start: span 10; }

  .grid > [data-width="3/4"],
  .grid > [data-width="9/12"]  { grid-column-start: span 9; }

  .grid > [data-width="2/3"],
  .grid > [data-width="4/6"],
  .grid > [data-width="8/12"]  { grid-column-start: span 8; }

  .grid > [data-width="7/12"]  { grid-column-start: span 7; }

  .grid > [data-width="1/2"],
  .grid > [data-width="2/4"],
  .grid > [data-width="3/6"],
  .grid > [data-width="6/12"]  { grid-column-start: span 6; }

  .grid > [data-width="5/12"]  { grid-column-start: span 5; }

  .grid > [data-width="1/3"],
  .grid > [data-width="2/6"],
  .grid > [data-width="4/12"]  { grid-column-start: span 4; }

  .grid > [data-width="1/4"],
  .grid > [data-width="3/12"]  { grid-column-start: span 3; }

  .grid > [data-width="1/6"],
  .grid > [data-width="2/12"]  { grid-column-start: span 2; }

  .grid > [data-width="1/12"]  { grid-column-start: span 1; }
}

.stack-s > * + * { margin-top: var(--spacing-s); }
.stack-m > * + * { margin-top: var(--spacing-m); }


/* =============================================================================
   COMPONENTS — HEADER
   ============================================================================= */

.header {
  position: relative;
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr auto;
}

.header a,
.header summary {
  text-decoration: none;
}

.logo {
  font-weight: 700;
  text-decoration: none;
  padding: 6px 0;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cart-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
  position: relative;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 18px;
}

.cart-trigger.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.header-nav {
  position: relative;
  display: flex;
  grid-column-end: span 2;
  justify-self: stretch;
}

.header-nav::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-top: 2px solid var(--pink);
}

.header-nav a {
  padding: 5px 9px;
  font-size: 18px;
  color: var(--pink);
}

.header-nav a:first-of-type {
  padding-left: 0;
}


/* =============================================================================
   COMPONENTS — FOOTER
   ============================================================================= */

.footer {
  margin-top: auto;
  font-size: 14px;
  color: var(--pink);
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.2;
}

.footer::before {
  content: '';
  display: block;
  margin-top: 100px;
  margin-bottom: 6px;
  border-top: 1px solid var(--pink);
}

footer p {
  padding-top: 8px;
  margin-bottom: 14px;
}


/* =============================================================================
   COMPONENTS — BUTTONS
   ============================================================================= */

button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  border: 0;
  background-color: var(--pink);
  color: var(--black);
  border-radius: 5px;
  padding: 6px 40px;
  height: 46px;
  line-height: 1.2;
  cursor: pointer;
}

.button[disabled] {
  background-color: var(--back);
}


/* =============================================================================
   COMPONENTS — FORMS / FIELDS
   ============================================================================= */

.field label {
  display: block;
  font-size: 16px;
}

.field label abbr {
  color: var(--pink);
}

.field input[type="text"],
.field input[type="email"],
.field textarea,
.field select,
.field .StripeElement {
  margin-top: 8px;
  box-sizing: border-box;
  width: 100%;
  padding: 6px 10px 9px;
  border: 0;
  font-size: 16px;
  border-radius: 5px;
  font-family: inherit;
  background-color: var(--green);
  color: var(--black);
  height: 46px;
  font-weight: 400;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath fill='%231d1c1b' d='M8 10L0 0h16z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--spacing-s) center;
  background-size: 12px 8px;
}

.field select:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.field[data-type="radio"],
.field[data-type="checkbox"] {
  display: flex;
  align-items: start;
}

.field[data-type="radio"] label,
.field[data-type="checkbox"] label {
  font-weight: 400;
}

.field[data-type="radio"] input,
.field[data-type="checkbox"] input {
  height: calc(1rem * var(--line-height));
  margin-right: var(--spacing-s);
  flex-shrink: 0;
}

.field[data-type="radio"] input:disabled + label,
.field[data-type="checkbox"] input:disabled + label {
  color: var(--color-gray-600);
}

.field .error {
  margin-top: var(--spacing-xs);
  font-size: var(--text-s);
}

.field input[type="checkbox"] {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid var(--black);
  border-radius: 4px;
  background-color: var(--pink);
  cursor: pointer;
  margin-right: 10px;
}

.field input[type="checkbox"]:checked {
  background-color: var(--pink);
  border-color: var(--black);
}

.field input[type="checkbox"]:checked::before {
  content: '✓';
  display: block;
  color: var(--black);
  font-size: 16px;
  text-align: center;
  line-height: 20px;
  font-weight: 700;
}

/* =============================================================================
   COMPONENTS — NOTICE
   ============================================================================= */

.notice {
  padding: var(--spacing-m);
  background-color: var(--color-gray-900);
}

.global-message {
  display: block;
  padding: var(--spacing-m);
  text-align: center;
  color: var(--pink);
  background-color: var(--back);
}

.error {
  color: var(--color-red);
  font-weight: 700;
  font-size: 14px;
}


/* =============================================================================
   COMPONENTS — CART
   ============================================================================= */

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-overlay #cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: var(--pink);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-overlay.open #cart {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px 0 24px;
  border-bottom: 2px solid var(--black);
  flex-shrink: 0;
  height: 42px;
}

.cart-title {
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--black);
  letter-spacing: 1px;
  font-size: 18px;
}

.cart-count-header {
  color: var(--black);
  font-weight: 700;
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: transform 0.2s;
}

.cart-close:hover {
  transform: rotate(180deg);
}

.cart-close svg {
  width: 30px;
  height: 30px;
  color: var(--black);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-item {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--black);
  padding: 0 0 20px;
  margin-bottom: 20px;
}

.cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding: 0;
}

.cart-item-image {
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item-title {
  text-decoration: none;
  color: var(--black);
}

.cart-item-title strong {
  color: var(--black);
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.cart-item-title small {
  display: block;
  color: var(--black);
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
}

.cart-item-price {
  font-weight: 700;
  font-size: 25px;
  color: var(--black);
  line-height: 1;
  letter-spacing: .5px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.cart-quantity {
  display: inline-flex;
  align-items: center;
}

.cart-quantity select {
  color: var(--black);
  padding: 2px 30px 3px 7px;
  border: 0;
  background: rgba(255,255,255,.2);
  border-radius: 4px;
  font-size: 14px;
  height: 25px;
  line-height: 1.2;
  vertical-align: middle;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath fill='%231d1c1b' d='M8 10L0 0h16z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--spacing-s) center;
  background-size: 9px 6px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--black);
  cursor: pointer;
  padding: 3px 0 2px;
}

.cart-footer {
  padding: 18px 24px 22px;
  border-top: 4px solid var(--black);
  flex-shrink: 0;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 400;
}

.cart-shipping-notice {
  font-size: 14px;
  color: var(--black);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 10px;
  font-weight: 700;
}

.cart-total-amount {
  font-size: 24px;
}

.cart-checkout-button {
  display: block;
  width: 100%;
  background-color: var(--black);
  color: var(--cream);
  text-align: center;
  padding: 16px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  transition: .2s;
  box-sizing: border-box;
  margin-top: 10px;
}

.cart-checkout-button:hover {
  background: #333;
}

.cart-empty {
  padding: 48px 24px;
  text-align: center;
  color: var(--black);
  font-weight: 700;
}

#cart.-loading {
  opacity: 0.6;
  pointer-events: none;
}

.cart-mobile-wrapper {
  display: none;
}

@media (max-width: 768px) {
  .cart-overlay #cart {
    max-width: 100%;
  }
}


/* =============================================================================
   TEMPLATE — SHOP
   ============================================================================= */

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  row-gap: 20px;
}

.product-grid-item {
  position: relative;
}

.product-grid-item a {
  text-decoration: none;
}

.product-grid-item figcaption {
  padding-top: 10px;
  font-size: 18px;
  text-align: center;
}

.product-grid-item figcaption strong {
  display: block;
}

.product-grid-item figcaption .price {
  display: block;
  font-size: 15px;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .product-grid .product-grid-item {
    grid-column-end: span 4;
  }
}


/* =============================================================================
   TEMPLATE — PRODUCT
   ============================================================================= */

.product-media {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-s);
}

.product-main-image {
  position: relative;
}

.product-main-image img {
  transition: opacity 0.2s ease;
}

.product-main-image img.is-transitioning {
  opacity: 0;
}

.product-thumbnails {
  display: flex;
  gap: var(--spacing-s);
  flex-wrap: wrap;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  border-color: var(--pink);
}

.product-thumbnail {
  padding: 0;
  background: none;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  height: 80px;
  width: auto;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.product-thumbnail img {
  display: block;
  height: 100%;
  width: auto;
}

.product .price {
  font-size: 30px;
  font-weight: 700;
  padding-left: 5px;
  margin-top: 10px;
  color: var(--pink);
}

.product label {
  display: block;
  font-size: 16px;
}

.product .blocks .text {
  margin-bottom: 0;
}

.product select {
  margin-top: 8px;
  box-sizing: border-box;
  width: 100%;
  padding-left: 10px;
  border: 0;
  font-size: 16px;
  border-radius: 5px;
  font-family: inherit;
  background-color: var(--green);
  color: var(--black);
  height: 46px;
  font-weight: 400;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath fill='%231d1c1b' d='M8 10L0 0h16z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--spacing-s) center;
  background-size: 12px 8px;
}

.add-to-cart-button button {
  width: 100%;
}

/* Accordion */
.accordion {
  margin-top: 50px;
}

.accordion-item {
  border-top: 1px solid var(--pink);
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--pink);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  color: var(--pink);
  text-transform: uppercase;
}

.accordion-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-top: 5px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.accordion-item.active .accordion-content {
  max-height: 250px;
}

.accordion-content-inner {
  padding-bottom: 16px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--pink);
}

.accordion-content-inner p:last-child {
  margin-bottom: 0;
}


/* =============================================================================
   TEMPLATE — PROJECTS
   ============================================================================= */

.projects figcaption {
  font-size: var(--text-xs);
  font-weight: bold;
  text-decoration: none;
  margin-top: var(--spacing-xs);
}


/* =============================================================================
   TEMPLATE — PROJECT (single)
   ============================================================================= */

.blocks .text {
  margin-bottom: var(--spacing-xl);
}

.gallery-block {
  margin-bottom: var(--spacing-xl);
}

.credits {
  margin-bottom: var(--spacing-xl);
  line-height: 1.4;
}

.blocks {
  margin-bottom: var(--spacing-l);
}

.text p {
  font-family: 'Roboto Mono', monospace;
  font-size: 18px;
}

.text > * {
  margin-block: 0;
}

.text > * + * {
  margin-block-start: var(--spacing-m);
}

/* Image-text block */
.image-text-block {
  display: flex;
  gap: var(--spacing-xl);
  align-items: flex-start;
  margin-bottom: 4rem;
  margin-right: 10%;
}

.image-text-block--left  { flex-direction: row; }
.image-text-block--right { flex-direction: row-reverse; }

.image-text-block__media {
  flex: 0 0 40%;
}

.image-text-block__content {
  flex: 1;
}

@media (max-width: 768px) {
  .image-text-block {
    flex-direction: column !important;
    margin-right: 0;
  }
}


/* =============================================================================
   TEMPLATE — CHECKOUT
   ============================================================================= */

.checkout-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.checkout-main {
  flex: 1;
  max-width: 700px;
}

.checkout-main .grid {
  gap: 15px;
}

.checkout h2 {
  margin-bottom: 0;
  margin-top: 20px;
  font-size: 25px;
}

.field[data-name="discount"] {
  display: none;
}

.checkout .apply-button {
  font-size: 16px;
  padding: 4px 20px;
  margin-bottom: 10px;
}

.checkout .voucher-message {
  color: var(--pink);
}

.checkout .payment-methods h2 {
  margin-top: 15px;
}

.buy-button {
  width: 100%;
}

.payment-methods .error {
  font-size: 14px;
  margin-top: -10px;
}

.checkout .cart-total {
  margin-bottom: 0;
}

/* Checkout sidebar */
.checkout-sidebar {
  flex: 0 0 450px;
  position: sticky;
  top: 20px;
  background-color: var(--pink);
  margin-top: 30px;
  border-radius: 5px;
}

@media (max-width: 1024px) {
  .checkout-container {
    flex-direction: column;
  }

  .checkout-main {
    max-width: 100%;
    width: 100%;
  }

  .checkout-sidebar {
    display: none;
  }

  .cart-mobile-wrapper {
    display: block;
    background: var(--pink);
    border-radius: 8px;
    margin-bottom: 24px;
  }

  .cart-mobile-wrapper .cart {
    display: block;
  }

  .cart-mobile-wrapper .cart-item-image {
    display: block;
  }
}


/* =============================================================================
   TEMPLATE — ORDER
   ============================================================================= */

.order h2 {
  font-size: 26px;
  color: var(--pink);
}

.order p {
  font-size: 18px;
  line-height: 1.3;
}

.order p.invoice-header strong {
  margin: 10px 0;
  font-size: 24px;
  color: var(--pink);
  display: inline-block;
}

.order-cart {
  background: var(--pink);
  border-radius: 8px;
}

.order-cart .cart-item-quantity {
  font-size: 16px;
  color: var(--black);
}

.order-cart .cart-tax {
  font-size: 14px;
  color: var(--black);
  opacity: 0.8;
  margin-top: 8px;
}

.print-button {
  margin-top: 20px;
  background-color: var(--green);
}

/* Print styles */
@media print {
  @page {
    size: A4;
    margin: 2cm;
  }

  header,
  footer,
  .header,
  .footer,
  nav,
  .cart-item-image img {
    display: none !important;
  }

  body {
    margin: 0;
    padding: 0;
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: white;
  }

  main.order {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20pt;
  }

  .grid > [data-width="1/1"] { grid-column: 1 / -1; }
  .grid > [data-width="1/3"] { grid-column: span 1; }

  .order .text {
    font-size: 10pt;
    page-break-inside: avoid;
  }

  .order h1 {
    font-size: 24pt;
    margin-bottom: 10pt;
    border-bottom: 2pt solid #000;
    padding-bottom: 5pt;
  }

  .order h2 {
    font-size: 14pt;
    margin-top: 20pt;
    margin-bottom: 8pt;
  }

  .order .text p {
    font-size: 10pt;
    line-height: 1.4;
    margin: 0;
  }

  .order-cart,
  .cart {
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  .cart-items {
    margin-bottom: 10pt;
    padding: 0;
  }

  .cart-item {
    border-bottom: 1pt solid #ccc;
    padding: 10pt 0;
    page-break-inside: avoid;
    display: flex;
    gap: 10pt;
  }

  .cart-item-image { display: none; }

  .cart-item-details { flex: 1; }

  .cart-item-title strong {
    font-size: 14pt;
    color: #000;
  }

  .cart-item-title small {
    font-size: 10pt;
    color: #000;
  }

  .cart-item-price {
    font-weight: 600;
    font-size: 14pt;
    margin-top: 4pt;
  }

  .cart-item-quantity {
    font-size: 10pt;
    color: #000;
  }

  .cart-footer {
    border-top: 2pt solid #000;
    padding: 10pt 0 0 0;
    margin-top: 10pt;
  }

  .cart-line {
    display: flex;
    justify-content: space-between;
    font-size: 11pt;
    margin-bottom: 6pt;
    color: #000;
  }

  .cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 14pt;
    font-weight: 600;
    border-top: 1pt solid #000;
    padding-top: 8pt;
    margin-top: 8pt;
    margin-bottom: 8pt;
  }

  .cart-total-amount { font-size: 16pt; }

  .cart-tax {
    font-size: 10pt;
    color: #666;
  }

  .print-button { display: none !important; }

  a[href]:after { content: none; }
}
