/* Storefront refinements and native WooCommerce cart/checkout surfaces. */
.store-icon-button { display: inline-grid; place-items: center; flex: 0 0 auto; width: 36px; height: 36px; padding: 0; border: 0; border-radius: 4px; color: var(--ink); background: transparent; cursor: pointer; }
.store-icon-button .icon { width: 18px; height: 18px; }
.store-icon-button:hover { background: #f0f2f3; }
.store-icon-button:disabled { opacity: .35; cursor: default; }
.store-icon-button:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.cart-is-open { overflow: hidden; scrollbar-gutter: stable; }
.cart-drawer { position: fixed; inset: 0 0 0 auto; width: min(480px, 100%); height: 100dvh; max-height: 100dvh; max-width: 100%; margin: 0; padding: 0; border: 0; color: var(--ink); background: #fff; box-shadow: -12px 0 48px #00000015; overflow: hidden; }
.cart-drawer::backdrop { background: #15171980; }
.cart-drawer[open] { animation: cart-enter .2s ease-out; }
.cart-drawer-shell { height: 100%; display: flex; flex-direction: column; }
.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; gap: 20px; padding: 26px 28px; border-bottom: 1px solid var(--line); }
.cart-drawer-header > div { display: flex; align-items: baseline; gap: 12px; }
.cart-drawer-header h2 { font-size: 22px; line-height: 1.3; margin: 0; }
.cart-drawer-header [data-cart-item-label] { font-size: 12px; color: var(--muted); }
.cart-drawer-content { min-height: 0; flex: 1; overflow: auto; overscroll-behavior: contain; padding: 0 28px; }
.cart-loading { padding: 32px 0; font-size: 14px; color: var(--muted); }
.cart-line { position: relative; display: grid; grid-template-columns: 90px minmax(0, 1fr); gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.cart-line-image { display: block; width: 90px; height: 96px; background: #f6f7f8; border-radius: 4px; overflow: hidden; }
.cart-line-image img { width: 100%; height: 100%; object-fit: contain; }
.cart-line-detail { min-width: 0; }
.cart-line-name { display: block; font-size: 14px; line-height: 1.5; font-weight: 600; padding-right: 26px; overflow-wrap: anywhere; }
.cart-line-name:hover { text-decoration: underline; }
.cart-line-code { display: block; font-size: 11px; color: var(--muted); margin: 7px 0; }
.cart-line-unit { font-size: 12px; color: var(--muted); }
.cart-line-remove { position: absolute; top: 23px; right: -9px; width: 30px; height: 30px; color: #697078; }
.cart-line-remove .icon { width: 16px; height: 16px; }
.cart-line-actions { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.store-quantity { display: inline-grid; grid-template-columns: 30px 34px 30px; border: 1px solid #cdd2d6; border-radius: 4px; height: 34px; flex-shrink: 0; }
.store-quantity .store-icon-button { width: 30px; height: 32px; }
.store-quantity .icon { width: 13px; height: 13px; }
.store-quantity input { width: 34px; min-width: 0; height: 32px; padding: 0; text-align: center; border: 0; background: #fff; color: var(--ink); font: 500 13px var(--font-body); appearance: textfield; -moz-appearance: textfield; }
.store-quantity input::-webkit-inner-spin-button, .store-quantity input::-webkit-outer-spin-button { appearance: none; margin: 0; }
.cart-line-price { font-size: 14px; line-height: 1.4; white-space: nowrap; }
.cart-drawer-footer { flex-shrink: 0; padding: 24px 28px 28px; border-top: 1px solid var(--line); background: #fff; }
.cart-drawer-total { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; font-size: 16px; }
.cart-drawer-total strong { font-size: 23px; }
.cart-drawer-footer > p { margin: 8px 0 20px; font-size: 12px; color: var(--muted); }
.cart-drawer a.cart-checkout { width: 100%; min-height: 50px; justify-content: space-between; font-size: 14px !important; padding: 12px 20px !important; }
.cart-checkout[aria-disabled="true"] { opacity: .5; cursor: wait; }
.cart-drawer-links { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 20px; font-size: 12px; }
.cart-drawer-links button, .cart-empty > button { border: 0; background: none; padding: 0; color: var(--muted); cursor: pointer; font: inherit; }
.cart-drawer-links a { text-decoration: underline; text-underline-offset: 3px; }
.cart-drawer-links button:hover { color: var(--red); }
.cart-drawer-message { margin: 16px 28px 0; padding: 12px 14px; font-size: 13px; line-height: 1.5; background: #fff3f2; border-left: 3px solid var(--red); }
.cart-empty { min-height: 360px; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 24px; padding: 35px 0; }
.cart-empty > .icon { width: 50px; height: 50px; color: #7b838a; }
.cart-empty h3 { font-size: 21px; }
.cart-empty > button { font-size: 13px; }
.cart-empty .button { font-size: 13px; }
@keyframes cart-enter { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* Product facts and purchase controls share a single vertical rhythm. */
.woocommerce div.product div.summary { padding: 0 0 0 30px; border: 0; border-radius: 0; width: 43%; }
.woocommerce div.product div.images { width: 53%; margin-top: 0; }
.woocommerce div.product .product_title { font-size: 27px; line-height: 1.35; margin-bottom: 18px; }
.woocommerce div.product div.summary > .price { margin-bottom: 24px; font-size: 30px !important; }
.woocommerce div.product .woocommerce-product-details__short-description { font-size: 14px; line-height: 1.7; margin: 24px 0; }
.product-facts { margin: 24px 0; }
.product-facts > div { padding-block: 13px; }
.product-facts > div:last-child { border-bottom: 0; }
.availability-note { margin: 24px 0 14px; }
.woocommerce div.product form.cart { margin: 14px 0 24px; gap: 14px; }
.woocommerce div.product form.cart .button { min-height: 50px; }
.woocommerce div.product .quantity .qty { height: 50px; width: 72px; font-size: 15px; }
.product-compatibility { margin: 24px 0; padding: 22px 0; border-block: 1px solid var(--line); align-items: flex-start; }
.product-compatibility p { margin: 8px 0 0; line-height: 1.65; }
.woocommerce .product_meta { display: flex; flex-direction: column; gap: 9px; margin-top: 0; padding-top: 0; border-top: 0; line-height: 1.5; }
.woocommerce div.product .woocommerce-tabs { padding-top: 34px; }
.woocommerce div.product .woocommerce-tabs .panel { max-width: none; padding: 24px 0 40px; margin-bottom: 30px; }
.woocommerce #reviews { display: grid; grid-template-columns: minmax(200px, .8fr) minmax(0, 1.2fr); gap: 64px; }
.woocommerce #reviews #comments { min-width: 0; padding-right: 24px; }
.woocommerce #reviews h2 { font-size: 24px; margin-bottom: 18px; }
.woocommerce #reviews #comments > p { color: var(--muted); font-size: 14px; }
.woocommerce #reviews #review_form_wrapper { min-width: 0; }
.woocommerce #reviews .clear { display: none; }
.woocommerce #review_form #respond .comment-reply-title { display: block; font-size: 22px; font-weight: 600; line-height: 1.4; margin: 0 0 14px; }
.woocommerce #review_form #respond form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.woocommerce #review_form #respond p { margin: 0; font-size: 13px; }
.woocommerce #review_form .comment-notes, .woocommerce #review_form .comment-form-rating, .woocommerce #review_form .comment-form-comment, .woocommerce #review_form .comment-form-cookies-consent, .woocommerce #review_form .form-submit, .woocommerce #review_form .logged-in-as { grid-column: 1 / -1; }
.woocommerce #review_form .comment-notes { color: var(--muted); line-height: 1.7; }
.woocommerce #review_form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.woocommerce #review_form .required { color: var(--red); }
.woocommerce #review_form input[type="text"], .woocommerce #review_form input[type="email"], .woocommerce #review_form textarea { width: 100%; max-width: 100%; border: 1px solid #c5cbd0; border-radius: 6px; padding: 12px 14px; background: #fff; color: var(--ink); font: 400 14px/1.6 var(--font-body); min-height: 48px; box-shadow: none; }
.woocommerce #review_form textarea { min-height: 150px; height: 150px; resize: vertical; }
.woocommerce #review_form input:focus-visible, .woocommerce #review_form textarea:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.woocommerce #review_form #respond .comment-form-cookies-consent { display: flex; align-items: flex-start; gap: 10px; }
.woocommerce #review_form .comment-form-cookies-consent input { width: 17px; height: 17px; flex-shrink: 0; margin: 2px 0 0; accent-color: var(--red); }
.woocommerce #review_form .comment-form-cookies-consent label { font-size: 12px; line-height: 1.65; color: var(--muted); font-weight: 400; margin: 0; }
.woocommerce #review_form p.stars { padding: 4px 0 6px; }
.woocommerce #review_form p.stars a { font-size: 24px; color: #586168; margin-right: 6px; }
.woocommerce #review_form p.stars:hover a, .woocommerce #review_form p.stars.selected a { color: var(--red); }
.woocommerce #review_form #respond .form-submit .button { min-height: 48px; min-width: 190px; justify-content: space-between; padding: 12px 18px !important; margin-top: 4px; }

/* Checkout keeps the native fields, rates, validation and order submission. */
.woocommerce-checkout { background: #fff; }
.checkout-header { border-bottom: 1px solid var(--line); background: #fff; }
.checkout-header > .content-shell { min-height: 92px; max-width: 1200px; display: flex; align-items: center; gap: 32px; }
.checkout-header .brand > span { font-size: 27px; }
.checkout-header .brand small { font-size: 8px; }
.checkout-header-title { border-left: 1px solid var(--line); padding-left: 30px; font-size: 14px; color: var(--muted); }
.checkout-header-help { margin-left: auto; display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.checkout-header-help .icon { color: var(--red); width: 19px; height: 19px; }
.woocommerce-checkout .prose-shell { max-width: 1200px; padding-block: 32px 70px; }
.woocommerce-checkout .page-heading { display: none; }
.checkout-intro { margin-bottom: 38px; }
.checkout-intro .text-link { font-size: 12px; color: var(--muted); margin-bottom: 24px; }
.checkout-intro .text-link .icon { width: 17px; height: 17px; }
.checkout-intro h1 { font-size: 30px; line-height: 1.3; margin-bottom: 10px; }
.checkout-intro p { font-size: 14px; color: var(--muted); }
.woocommerce-checkout .wc-block-components-sidebar-layout { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 64px; align-items: start; margin: 0; }
.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main { width: auto; padding: 0; margin: 0; min-width: 0; }
.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar { width: auto; padding: 0; margin: 0; min-width: 0; position: sticky; top: 28px; }
.wc-block-checkout__form { counter-reset: checkout-section; }
.wc-block-checkout__form .wc-block-components-checkout-step { padding: 0 0 28px; margin: 0 0 28px; border-bottom: 1px solid var(--line); counter-increment: checkout-section; }
.wc-block-checkout__form .wc-block-components-checkout-step__heading { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.wc-block-checkout__form .wc-block-components-checkout-step__heading::before { content: counter(checkout-section); display: grid; place-items: center; flex-shrink: 0; width: 27px; height: 27px; font-size: 12px; font-weight: 600; color: #fff; background: var(--ink); border-radius: 50%; }
.wc-block-components-checkout-step__title { font-size: 19px !important; font-weight: 600 !important; line-height: 1.4 !important; }
.wc-block-checkout__form .wc-block-components-checkout-step__description { font-size: 13px; color: var(--muted); }
.wc-block-checkout__form .wc-block-components-checkout-step__content { margin: 0; padding: 0; }
.wc-block-checkout__form .wc-block-components-text-input input, .wc-block-checkout__form .wc-block-components-combobox .wc-block-components-combobox-control input, .wc-block-checkout__form .wc-block-components-textarea { min-height: 54px; border-color: #c9ced3; border-radius: 6px; font-size: 14px; color: var(--ink); background: #fff; }
.wc-block-checkout__form .wc-block-components-text-input label, .wc-block-checkout__form .wc-block-components-combobox label { font-size: 14px; color: #646c73; }
.wc-block-checkout__form .wc-block-components-text-input input:focus, .wc-block-checkout__form .wc-block-components-combobox input:focus, .wc-block-checkout__form .wc-block-components-textarea:focus { border-color: var(--red); box-shadow: 0 0 0 2px #c9232319; }
.wc-block-checkout__form .wc-block-components-checkbox label { font-size: 13px; line-height: 1.6; }
.wc-block-checkout__form .wc-block-components-radio-control__option { min-height: 72px; padding-block: 18px; border-radius: 6px; }
.wc-block-checkout__form .wc-block-components-radio-control__label { font-size: 14px; font-weight: 600; }
.wc-block-checkout__form .wc-block-components-radio-control__description, .wc-block-checkout__form .wc-block-components-payment-method-label { font-size: 13px; }
.wc-block-checkout__form .wc-block-components-radio-control__input:checked { border-color: var(--red); }
.wc-block-checkout__form .wc-block-components-radio-control__input:checked::before { background: var(--red); }
.wc-block-checkout__form .wc-block-components-radio-control-accordion-content { padding: 0 20px 20px; font-size: 13px; line-height: 1.7; color: var(--muted); }
.wc-block-checkout__form .wc-block-components-checkout-place-order-button { min-height: 54px; border: 0; font-size: 15px; font-weight: 600; box-shadow: none; }
.wc-block-checkout__form .wc-block-components-checkout-return-to-cart-button { font-size: 13px; }
.wc-block-checkout__form .wc-block-components-checkout-place-order { padding-top: 6px; gap: 24px; }
.wc-block-checkout__terms { font-size: 12px; line-height: 1.7; color: var(--muted); }
.wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block { border: 1px solid var(--line); background: #f7f8f9; border-radius: 6px; overflow: hidden; }
.wc-block-checkout__sidebar .wc-block-components-order-summary__button-text { font-size: 18px; font-weight: 600; color: var(--ink); }
.wc-block-checkout__sidebar .wc-block-components-order-summary .wc-block-components-order-summary-item { padding-block: 20px; }
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-product-name { font-size: 13px; line-height: 1.6; font-weight: 600; margin: 0 0 8px; }
.woocommerce-checkout .wc-block-components-product-metadata__description { display: none; }
.wc-block-checkout__sidebar .wc-block-components-order-summary-item__image { width: 64px; }
.wc-block-checkout__sidebar .wc-block-components-order-summary-item__image img { width: 64px; height: 64px; object-fit: contain; border-radius: 4px; }
.wc-block-checkout__sidebar .wc-block-components-totals-wrapper { padding-block: 18px; border-color: var(--line); }
.wc-block-checkout__sidebar .wc-block-components-totals-wrapper:empty { display: none; }
.wc-block-checkout__sidebar .wc-block-components-totals-item { font-size: 13px; }
.wc-block-checkout__sidebar .wc-block-components-totals-footer-item { font-size: 20px; font-weight: 600; }
.wc-block-components-notice-banner { border-radius: 6px; font-size: 13px; line-height: 1.6; }
.checkout-footer { border-top: 1px solid var(--line); padding: 24px 0; color: var(--muted); font-size: 11px; }
.checkout-footer > .content-shell { max-width: 1200px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.checkout-footer a:first-child { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-size: 12px; }
.checkout-footer .icon { width: 17px; height: 17px; color: var(--red); }
.woocommerce-order-received .woocommerce-order { max-width: 1000px; margin-inline: auto; }
.woocommerce-order-received .page-heading { display: block; max-width: 1000px; margin: 0 auto 24px; }
.woocommerce-order-received .page-heading h1 { font-size: 30px; line-height: 1.3; }
.woocommerce-order-received .woocommerce-notice--success { padding: 20px; margin: 0 0 28px; background: #eef5f0; border-left: 3px solid #28634a; color: #28533d; font-size: 16px; line-height: 1.6; font-weight: 600; }
.woocommerce-order-received .woocommerce ul.order_details { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; padding: 24px 0; margin: 0 0 24px; border-block: 1px solid var(--line); }
.woocommerce-order-received .woocommerce ul.order_details::before, .woocommerce-order-received .woocommerce ul.order_details::after { display: none; }
.woocommerce-order-received .woocommerce ul.order_details li { float: none; padding: 0; margin: 0; border: 0; font-size: 11px; line-height: 1.7; }
.woocommerce-order-received .woocommerce ul.order_details li strong { margin-top: 6px; font-size: 15px; }
.woocommerce-order-received .woocommerce-order > p { font-size: 14px; line-height: 1.8; }
.woocommerce-order-received .woocommerce-order h2 { font-size: 22px; margin: 30px 0 20px; }
.woocommerce-order-received .woocommerce-order address { line-height: 1.8; padding: 20px; }

/* A full-width footer with distinct contact, navigation and legal rows. */
.site-footer.store-footer { padding: 0; background: #222628; color: #c9cfd2; border: 0; }
.store-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.store-footer-contact { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 40px; padding: 38px 0; border-bottom: 1px solid #ffffff20; }
.store-footer-contact h2 { color: #fff; font-size: 22px; font-weight: 600; margin-bottom: 9px; line-height: 1.4; }
.store-footer-contact p { font-size: 12px; color: #aab3b8; margin: 0; }
.store-footer-contact > a:not(.button) { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-size: 25px; font-weight: 600; white-space: nowrap; }
.store-footer-contact > a > .icon { width: 23px; height: 23px; }
.store-footer-contact .button { font-size: 13px; min-height: 46px; padding-inline: 18px; }
.store-footer-contact .button:hover { text-decoration: none; }
.store-footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 44px; padding: 44px 0; }
.store-footer-grid > * { min-width: 0; }
.store-footer-grid h3 { font-size: 13px; font-weight: 600; color: #fff; margin: 0 0 20px; }
.store-footer-grid nav > a { display: block; font-size: 12px; line-height: 1.6; margin: 0 0 12px; }
.store-footer .brand { color: #fff; }
.store-footer .brand > span { font-size: 27px; }
.store-footer .brand small { font-size: 8px; color: #aab3b8; margin-top: 7px; }
.store-footer-brand p { font-size: 12px; line-height: 1.8; margin: 22px 0 14px; color: #aab3b8; }
.store-footer-brand .footer-email { font-size: 12px; overflow-wrap: anywhere; }
.store-footer-workshop > div { display: grid; grid-template-columns: 68px minmax(0, 1fr); gap: 14px; align-items: center; }
.store-footer-workshop img { width: 68px; height: 76px; object-fit: cover; border-radius: 4px; }
.store-footer-workshop address { font-size: 12px; line-height: 1.9; font-style: normal; }
.store-footer-workshop > a { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; margin-top: 17px; }
.store-footer-workshop > a .icon { width: 16px; height: 16px; }
.store-footer-bottom { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 30px; border-top: 1px solid #ffffff20; padding: 22px 0; font-size: 11px; color: #aab3b8; }
.store-footer-bottom > a { margin-left: auto; }

@media (max-width: 1100px) {
  .woocommerce-checkout .wc-block-components-sidebar-layout { grid-template-columns: minmax(0, 1fr) 330px; gap: 36px; }
  .store-footer-contact { gap: 28px; }
  .store-footer-contact h2 { font-size: 20px; }
  .store-footer-contact > a:not(.button) { font-size: 22px; }
  .store-footer-grid { gap: 26px; grid-template-columns: 1.2fr 1fr 1fr; }
  .store-footer-workshop { grid-column: 1 / -1; display: flex; align-items: center; gap: 30px; }
  .store-footer-workshop h3 { margin: 0; }
  .store-footer-workshop > a { margin: 0 0 0 auto; }
  .woocommerce #reviews { gap: 40px; }
}
@media (max-width: 800px) {
  .woocommerce div.product div.summary { padding-left: 18px; }
  .woocommerce div.product .product_title { font-size: 22px; }
  .woocommerce #reviews { grid-template-columns: 1fr; gap: 30px; }
  .woocommerce #reviews #comments { padding: 0 0 26px; border-bottom: 1px solid var(--line); }
  .checkout-header-title { display: none; }
  .woocommerce-checkout .wc-block-components-sidebar-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar { position: static; grid-row: 1; }
  .store-footer-contact { grid-template-columns: 1fr auto; gap: 20px 30px; }
  .store-footer-contact > div { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .cart-is-open { scrollbar-gutter: auto; }
  .woocommerce div.product div.summary { padding: 0; }
  .woocommerce div.product .product_title { font-size: 23px; }
  .woocommerce div.product div.summary > .price { font-size: 28px !important; }
  .product-facts > div { grid-template-columns: 90px minmax(0, 1fr); }
  .woocommerce div.product .woocommerce-tabs { padding-top: 14px; }
  .woocommerce #reviews h2 { font-size: 21px; }
  .woocommerce #review_form #respond form { grid-template-columns: 1fr; gap: 20px; }
  .woocommerce #review_form .form-submit .button { width: 100%; }
  .checkout-header > .content-shell { min-height: 76px; gap: 18px; }
  .checkout-header .brand > span { font-size: 24px; }
  .checkout-header-help { font-size: 12px; gap: 6px; }
  .woocommerce-checkout .prose-shell { padding-block: 24px 44px; }
  .checkout-intro { margin-bottom: 26px; }
  .checkout-intro h1 { font-size: 26px; }
  .woocommerce-order-received .page-heading h1 { font-size: 26px; }
  .woocommerce-order-received .woocommerce ul.order_details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .woocommerce-order-received .woocommerce-order address { font-size: 14px; }
  .checkout-intro p { font-size: 13px; line-height: 1.6; }
  .checkout-intro .text-link { margin-bottom: 20px; }
  .wc-block-checkout__form .wc-block-components-checkout-step { margin-bottom: 24px; padding-bottom: 24px; }
  .wc-block-components-checkout-step__title { font-size: 18px !important; }
  .wc-block-checkout__sidebar .wc-block-components-order-summary__button-text { font-size: 16px; }
  .wc-block-checkout__form .wc-block-components-checkout-step__heading { gap: 10px; }
  .wc-block-checkout__form .wc-block-components-text-input input { font-size: 16px; }
  .checkout-footer > .content-shell { align-items: flex-start; flex-direction: column; gap: 16px; }
  .checkout-footer a:first-child { line-height: 1.6; }
  .store-footer-contact { padding-block: 30px; grid-template-columns: 1fr; gap: 22px; }
  .store-footer-contact h2 { font-size: 20px; }
  .store-footer-contact > a:not(.button) { font-size: 25px; }
  .store-footer-contact .button { justify-self: start; }
  .store-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 24px; padding-block: 32px; }
  .store-footer-brand { grid-column: 1 / -1; }
  .store-footer-brand p { margin-top: 18px; }
  .store-footer-grid h3 { margin-bottom: 18px; }
  .store-footer-workshop { display: block; }
  .store-footer-workshop > div { grid-template-columns: 68px minmax(0, 1fr); }
  .store-footer-workshop > a { margin-top: 16px; }
  .store-footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; line-height: 1.6; }
  .store-footer-bottom > a { margin-left: 0; }
}
@media (max-width: 400px) {
  .cart-drawer-header { padding: 20px; }
  .cart-drawer-header h2 { font-size: 20px; }
  .cart-drawer-content { padding: 0 20px; }
  .cart-line { grid-template-columns: 66px minmax(0, 1fr); gap: 14px; padding-block: 22px; }
  .cart-line-image { width: 66px; height: 78px; }
  .cart-line-name { font-size: 13px; }
  .cart-line-actions { gap: 10px; }
  .cart-line-price { font-size: 13px; }
  .cart-drawer-footer { padding: 20px; }
  .cart-drawer-message { margin-inline: 20px; }
  .cart-drawer-links { gap: 12px; font-size: 11px; }
  .cart-drawer a.cart-checkout { font-size: 13px !important; }
  .checkout-header-help span:not(.icon) { display: none; }
  .checkout-header-help { min-width: 40px; min-height: 40px; justify-content: center; }
  .checkout-header-help .icon { width: 23px; height: 23px; }
}
@media (prefers-reduced-motion: reduce) { .cart-drawer[open] { animation: none; } }
