/*
Theme Name:  Vexlyne Child
Theme URI:   https://vexlyne.com
Description: Astra child theme for Vexlyne — a curated Y2K / gothic fashion store.
             Covers all page types: shop archive, single product, cart, checkout,
             account, header, footer, navigation, and responsive mobile layout.
Author:      Vexlyne
Template:    astra
Version:     1.0.1
License:     GPL-2.0-or-later
Text Domain: vexlyne-child
*/

/* =============================================================================
   DESIGN TOKENS
   ============================================================================= */
:root {
  /* Colors */
  --vx-black:       #0d0f14;
  --vx-dark:        #111827;
  --vx-mid:         #273142;
  --vx-muted:       rgba(15, 23, 42, 0.55);
  --vx-border:      #dfe4ec;
  --vx-bg:          #ffffff;
  --vx-bg-hover:    rgba(15, 23, 42, 0.06);
  --vx-border-hover: rgba(15, 23, 42, 0.10);

  /* Top bar (UPS announcements) */
  --vx-ups-bg-start: #0e1524;
  --vx-ups-bg-end:   #16243d;
  --vx-ups-border:   #25324a;
  --vx-ups-text:     #e6edf9;
  --vx-ups-icon:     #8fb2ff;

  /* Typography */
  --vx-font-body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --vx-font-heading: inherit;

  /* Spacing */
  --vx-nav-gap:      8px 10px;
  --vx-content-max:  1280px;
}

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

/* Hide Astra's text site title — logo image is used instead */
.ast-site-title-wrap {
  display: none !important;
}

/* =============================================================================
   ANNOUNCEMENT BAR  (.vc-ups-bar — rendered by VC UPS plugin)
   ============================================================================= */

.vc-ups-bar {
  background: linear-gradient(90deg, var(--vx-ups-bg-start) 0%, var(--vx-ups-bg-end) 100%);
  border-bottom: 1px solid var(--vx-ups-border);
  color: var(--vx-ups-text);
}

.vc-ups-track {
  max-width: var(--vx-content-max);
  padding: 10px 24px;
}

.vc-ups-item {
  color: var(--vx-ups-text);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.vc-ups-item svg {
  color: var(--vx-ups-icon);
}

@media (max-width: 768px) {
  .vc-ups-track {
    padding: 10px 16px;
  }
}

/* =============================================================================
   HEADER
   ============================================================================= */

/* Desktop header bar */
@media (min-width: 922px) {
  #masthead .main-header-bar {
    background: var(--vx-bg);
    border-bottom: 1px solid var(--vx-border);
  }

  #masthead .site-primary-header-wrap {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  /* Logo sizing */
  #masthead .site-logo-img .custom-logo {
    width: clamp(180px, 17vw, 310px);
    max-height: 88px;
    height: auto;
    object-fit: contain;
  }

  /* Navigation row gap */
  #masthead .main-header-menu {
    gap: var(--vx-nav-gap);
  }
}

/* Mobile logo sizing */
@media (max-width: 921px) {
  #masthead .site-logo-img .custom-logo {
    width: clamp(150px, 48vw, 240px);
    max-height: 74px;
  }
}

/* =============================================================================
   NAVIGATION
   ============================================================================= */

/* Reset item margin so gap property controls spacing */
#masthead .main-header-menu > .menu-item {
  margin: 0;
}

/* Nav link base style */
#masthead .main-header-menu > .menu-item > .menu-link {
  border-radius: 12px;
  padding: 9px 13px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  color: var(--vx-mid) !important;
  background: transparent !important;
  border: 1px solid transparent;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

/* Nav link active / hover states */
#masthead .main-header-menu > .menu-item > .menu-link:hover,
#masthead .main-header-menu > .current-menu-item > .menu-link,
#masthead .main-header-menu > .menu-item > .menu-link:focus-visible {
  color: var(--vx-dark) !important;
  background: var(--vx-bg-hover) !important;
  border-color: var(--vx-border-hover);
  box-shadow: 0 8px 18px -16px var(--vx-muted);
}

/* Mobile nav */
#ast-mobile-site-navigation .main-header-menu .menu-link {
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid transparent;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

#ast-mobile-site-navigation .main-header-menu .menu-link:hover,
#ast-mobile-site-navigation .main-header-menu .current-menu-item > .menu-link,
#ast-mobile-site-navigation .main-header-menu .menu-link:focus-visible {
  color: var(--vx-dark) !important;
  background: var(--vx-bg-hover) !important;
  border-color: var(--vx-border-hover);
}

/* =============================================================================
   WOOCOMMERCE — CATALOG / SHOP
   ============================================================================= */

/* =============================================================================
   WOOCOMMERCE — CATALOG / SHOP
   ============================================================================= */

/* Force portrait (2:3) product thumbnails throughout catalog */
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}

/* Remove Astra's default right sidebar on shop/archive — full-width layout */
.woocommerce-page .ast-right-sidebar #primary,
.woocommerce-page .ast-left-sidebar #primary {
  width: 100%;
}
.woocommerce-page .ast-right-sidebar #secondary,
.woocommerce-page .ast-left-sidebar #secondary {
  display: none;
}

/* Shop toolbar (result count + ordering) */
.woocommerce-products-header {
  margin-bottom: 24px;
}

.woocommerce-result-count {
  font-size: 0.875rem;
  color: var(--vx-muted);
  margin: 0;
}

/* Sort dropdown */
.vx-ordering .vx-select,
.woocommerce-ordering select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--vx-bg);
  border: 1px solid var(--vx-border);
  border-radius: 10px;
  padding: 8px 36px 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vx-dark);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23273142' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s ease;
}

.vx-ordering .vx-select:focus,
.woocommerce-ordering select:focus {
  outline: none;
  border-color: var(--vx-dark);
}

/* =============================================================================
   PRODUCT CARD  (.vx-product-card)
   ============================================================================= */

.vx-product-grid {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.vx-product-grid.columns-2 { grid-template-columns: repeat(2, 1fr); }
.vx-product-grid.columns-3 { grid-template-columns: repeat(3, 1fr); }
.vx-product-grid.columns-4 { grid-template-columns: repeat(4, 1fr); }

.vx-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.vx-product-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

/* Sale badge */
.vx-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--vx-black);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Image container — enforces portrait ratio */
.vx-product-card__image {
  overflow: hidden;
  background: #f4f4f6;
}

.vx-product-card__img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.vx-product-card__link:hover .vx-product-card__img {
  transform: scale(1.03);
}

/* Text info */
.vx-product-card__info {
  padding: 12px 4px 8px;
  flex: 1;
}

.vx-product-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vx-black);
  margin: 0 0 6px;
  line-height: 1.3;
}

.vx-product-card__price .price,
.vx-product-card__price .woocommerce-Price-amount {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vx-dark);
}

.vx-product-card__price del .woocommerce-Price-amount {
  color: var(--vx-muted);
  font-weight: 400;
}

/* Add-to-cart area */
.vx-product-card__actions {
  padding: 0 4px 4px;
}

/* =============================================================================
   BUTTONS  (.vx-btn)
   ============================================================================= */

.vx-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.vx-btn--loop-cart,
.vx-btn--add-to-cart {
  width: 100%;
  background: var(--vx-black);
  color: #fff;
}

.vx-btn--loop-cart:hover,
.vx-btn--add-to-cart:hover {
  background: #1a1a2e;
  color: #fff;
  transform: translateY(-1px);
}

/* WooCommerce native .button inherits vx-btn styles on key elements */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce #respond input#submit.alt {
  background: var(--vx-black);
  color: #fff;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce #respond input#submit.alt:hover {
  background: #1a1a2e;
  color: #fff;
}

/* =============================================================================
   SINGLE PRODUCT PAGE  (.vx-single-product)
   ============================================================================= */

/* Two-column layout: gallery | summary */
.vx-single-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Gallery occupies left column — not sticky (the wrapAll JS puts both columns
   inside this div, so sticky would cover the description tabs below) */
.vx-single-product__gallery {
  position: static;
}

/* WooCommerce gallery images */
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce div.product div.images img {
  border-radius: 0;
}

/* Summary panel */
.vx-single-product__summary {
  padding: 0;
}

/* Product title */
.woocommerce div.product .product_title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.15;
  margin-bottom: 12px;
}

/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vx-dark);
  margin-bottom: 20px;
}

/* Short description */
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 24px;
}

/* Variation selects (Size, Color) */
.woocommerce div.product form.cart .variations {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.woocommerce div.product form.cart .variations th.label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vx-mid);
  padding: 0 16px 0 0;
  white-space: nowrap;
  width: 80px;
}

.woocommerce div.product form.cart .variations td.value select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: 1.5px solid var(--vx-border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  background-color: var(--vx-bg);
  color: var(--vx-dark);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.woocommerce div.product form.cart .variations td.value select:focus {
  outline: none;
  border-color: var(--vx-dark);
}

/* Quantity input */
.woocommerce div.product form.cart .quantity {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--vx-border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

.woocommerce div.product form.cart .quantity input[type="number"] {
  width: 56px;
  text-align: center;
  border: none;
  padding: 10px 4px;
  font-size: 1rem;
  font-weight: 600;
  -moz-appearance: textfield;
}

.woocommerce div.product form.cart .quantity input::-webkit-outer-spin-button,
.woocommerce div.product form.cart .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Single add-to-cart button */
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product .button {
  background: var(--vx-black);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: #1a1a2e;
}

/* Add-to-cart row: qty + button side by side */
.woocommerce div.product form.cart {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.woocommerce div.product form.cart.cart div.quantity {
  margin: 0;
}

/* Reset variations link */
.woocommerce div.product form.cart .reset_variations {
  font-size: 0.8rem;
  color: var(--vx-muted);
  text-decoration: underline;
}

/* Product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--vx-border);
  list-style: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--vx-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--vx-dark);
  border-bottom-color: var(--vx-dark);
}

.woocommerce div.product .woocommerce-tabs .panel {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
}

/* Related products section */
.woocommerce div.product .related > h2,
.woocommerce div.product .up-sells > h2 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

/* =============================================================================
   CART PAGE
   ============================================================================= */

.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th {
  vertical-align: middle;
  padding: 16px 12px;
  border-bottom: 1px solid var(--vx-border);
}

.woocommerce-cart table.cart th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vx-muted);
}

.woocommerce-cart table.cart td.product-name a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: var(--vx-dark);
  text-decoration: none;
}

.woocommerce-cart table.cart td.product-name a:hover {
  text-decoration: underline;
}

.woocommerce-cart table.cart img {
  width: 80px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 6px;
}

/* Cart totals */
.woocommerce-cart .cart-collaterals .cart_totals {
  background: #f9f9fb;
  border-radius: 12px;
  padding: 24px;
}

.woocommerce-cart .cart_totals h2 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.woocommerce-cart .cart_totals table {
  width: 100%;
}

.woocommerce-cart .cart_totals table th {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vx-muted);
}

.woocommerce-cart .cart_totals table .order-total th,
.woocommerce-cart .cart_totals table .order-total td {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--vx-dark);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: block;
  background: var(--vx-black);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: #1a1a2e;
}

/* =============================================================================
   CHECKOUT PAGE
   ============================================================================= */

.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.woocommerce-checkout form .form-row label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--vx-mid);
}

.woocommerce-checkout form .form-row input,
.woocommerce-checkout form .form-row select,
.woocommerce-checkout form .form-row textarea {
  border: 1.5px solid var(--vx-border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.9rem;
  width: 100%;
  transition: border-color 0.2s ease;
}

.woocommerce-checkout form .form-row input:focus,
.woocommerce-checkout form .form-row select:focus,
.woocommerce-checkout form .form-row textarea:focus {
  outline: none;
  border-color: var(--vx-dark);
}

/* Place order button */
#place_order {
  background: var(--vx-black) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 16px 24px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  width: 100%;
  transition: background 0.2s ease !important;
}

#place_order:hover {
  background: #1a1a2e !important;
}

/* =============================================================================
   MY ACCOUNT PAGE
   ============================================================================= */

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 10px 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vx-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--vx-border);
  transition: color 0.2s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--vx-dark);
}

/* =============================================================================
   NOTICES & FLASH MESSAGES
   ============================================================================= */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 10px;
  border-top: none;
  padding: 14px 20px;
  font-size: 0.9rem;
}

.woocommerce-message {
  background: #f0fdf4;
  color: #166534;
  border-left: 4px solid #22c55e;
}

.woocommerce-error {
  background: #fef2f2;
  color: #991b1b;
  border-left: 4px solid #ef4444;
}

.woocommerce-info {
  background: #eff6ff;
  color: #1e40af;
  border-left: 4px solid #3b82f6;
}

/* =============================================================================
   PAGINATION
   ============================================================================= */

.woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  justify-content: center;
  margin-top: 48px;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--vx-border);
  color: var(--vx-mid);
  transition: all 0.2s ease;
}

.woocommerce-pagination ul li a:hover {
  background: var(--vx-black);
  color: #fff;
  border-color: var(--vx-black);
}

.woocommerce-pagination ul li span.current {
  background: var(--vx-black);
  color: #fff;
  border-color: var(--vx-black);
}

/* =============================================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================================= */

@media (max-width: 1024px) {
  .vx-product-grid.columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .vx-single-product {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* =============================================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================================= */

@media (max-width: 768px) {
  .vx-product-grid.columns-4,
  .vx-product-grid.columns-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .vx-single-product {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vx-single-product__gallery {
    position: static;
  }

  .woocommerce div.product .product_title {
    font-size: 1.35rem;
  }

  .woocommerce-cart table.cart td,
  .woocommerce-cart table.cart th {
    padding: 10px 8px;
  }
}

/* =============================================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================================= */

@media (max-width: 480px) {
  .vx-product-grid.columns-4,
  .vx-product-grid.columns-3,
  .vx-product-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .vx-product-card__title {
    font-size: 0.75rem;
  }
}

/* =============================================================================
   CUSTOM HEADER  (.vx-header)
   ============================================================================= */

.vx-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Main header bar */
.vx-header__bar {
  background: var(--vx-bg);
  border-bottom: 1px solid var(--vx-border);
}

.vx-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: var(--vx-content-max);
  margin: 0 auto;
  padding: 12px 24px;
}

/* Primary nav — left column */
.vx-header__nav {
  display: flex;
  align-items: center;
}

.vx-nav {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vx-nav .menu-item a {
  display: block;
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--vx-mid);
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.vx-nav .menu-item a:hover,
.vx-nav .current-menu-item > a {
  color: var(--vx-dark);
  background: var(--vx-bg-hover);
  border-color: var(--vx-border-hover);
}

/* Logo — centre column */
.vx-header__logo {
  display: flex;
  justify-content: center;
}

.vx-header__logo .custom-logo-link img,
.vx-header__logo img {
  width: clamp(160px, 15vw, 280px);
  height: auto;
  max-height: 80px;
  object-fit: contain;
  display: block;
}

.vx-header__wordmark {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--vx-dark);
  text-decoration: none;
}

/* Icons — right column */
.vx-header__icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.vx-header__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--vx-mid);
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.vx-header__icon:hover {
  color: var(--vx-dark);
  background: var(--vx-bg-hover);
  border-color: var(--vx-border-hover);
}

/* Cart count bubble */
.vx-header__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  background: var(--vx-black);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  padding: 0 3px;
}

/* Hamburger button — hidden on desktop */
.vx-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--vx-border);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  color: var(--vx-mid);
  padding: 0;
}

.vx-hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}

.vx-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hamburger → X when open */
body.vx-nav-open .vx-hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.vx-nav-open .vx-hamburger span:nth-child(2) { opacity: 0; }
body.vx-nav-open .vx-hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer */
.vx-mobile-nav {
  background: var(--vx-bg);
  border-bottom: 1px solid var(--vx-border);
  padding: 12px 24px 20px;
}

.vx-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vx-mobile-nav__list .menu-item a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vx-mid);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.vx-mobile-nav__list .menu-item a:hover,
.vx-mobile-nav__list .current-menu-item > a {
  color: var(--vx-dark);
  background: var(--vx-bg-hover);
  border-color: var(--vx-border-hover);
}

/* Header responsive */
@media (max-width: 768px) {
  .vx-header__nav { display: none; }
  .vx-header__toggle { display: flex; }

  .vx-header__inner {
    grid-template-columns: auto 1fr auto;
    padding: 10px 16px;
  }

  .vx-header__logo {
    justify-content: center;
  }

  .vx-header__logo .custom-logo-link img,
  .vx-header__logo img {
    width: clamp(120px, 40vw, 200px);
    max-height: 56px;
  }
}

/* =============================================================================
   CUSTOM FOOTER  (.vx-footer)
   ============================================================================= */

.vx-footer {
  background: #0f1017;
  color: rgba(230, 237, 249, 0.85);
  margin-top: 80px;
}

.vx-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--vx-content-max);
  margin: 0 auto;
  padding: 56px 24px 40px;
}

.vx-footer__logo img {
  width: clamp(120px, 14vw, 200px);
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  margin-bottom: 16px;
  /* No invert — logo PNG may have opaque background */
}

.vx-footer__wordmark {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  margin-bottom: 12px;
}

.vx-footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(230, 237, 249, 0.55);
  margin: 0;
}

.vx-footer__heading {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(230, 237, 249, 0.45);
  margin: 0 0 16px;
}

.vx-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vx-footer__links li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(230, 237, 249, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vx-footer__links li a:hover {
  color: #fff;
}

.vx-footer__contact-link {
  display: block;
  font-size: 0.875rem;
  color: rgba(230, 237, 249, 0.8);
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.2s ease;
}

.vx-footer__contact-link:hover {
  color: #fff;
}

/* Bottom bar */
.vx-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vx-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--vx-content-max);
  margin: 0 auto;
  padding: 20px 24px;
  gap: 16px;
}

.vx-footer__copy,
.vx-footer__powered {
  font-size: 0.8rem;
  color: rgba(230, 237, 249, 0.4);
  margin: 0;
}

.vx-footer__copy a,
.vx-footer__powered a {
  color: rgba(230, 237, 249, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vx-footer__copy a:hover,
.vx-footer__powered a:hover {
  color: #fff;
}

/* Footer responsive */
@media (max-width: 1024px) {
  .vx-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .vx-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 16px 28px;
  }

  .vx-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 8px;
  }
}

/* =============================================================================
   PAGE TEMPLATE  (.vx-page)
   ============================================================================= */

.vx-page__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.vx-page__header {
  margin-bottom: 32px;
}

.vx-page__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--vx-dark);
  margin: 0;
}

.vx-page__featured-image {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}

.vx-page__hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.vx-page__content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.vx-page__content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 40px;
  margin-bottom: 16px;
}

.vx-page__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
}

.vx-page__content p { margin-bottom: 20px; }

.vx-page__content a {
  color: var(--vx-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vx-page__content a:hover { text-decoration: none; }

/* =============================================================================
   SINGLE POST TEMPLATE  (.vx-single-post)
   ============================================================================= */

.vx-single-post__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.vx-post__header { margin-bottom: 24px; }

.vx-post__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--vx-dark);
  margin: 0 0 12px;
}

.vx-post__meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--vx-muted);
  flex-wrap: wrap;
}

.vx-post__meta a { color: inherit; text-decoration: none; }
.vx-post__meta a:hover { text-decoration: underline; }

.vx-post__featured-image {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}

.vx-post__hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.vx-post__content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.vx-post__content p { margin-bottom: 20px; }

.vx-post__footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--vx-border);
}

.vx-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.vx-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid var(--vx-border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vx-mid);
  text-decoration: none;
  transition: all 0.2s ease;
}

.vx-tag:hover {
  background: var(--vx-black);
  color: #fff;
  border-color: var(--vx-black);
}

/* Post navigation */
.vx-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.vx-post-nav__prev a,
.vx-post-nav__next a {
  display: block;
  padding: 16px 20px;
  border: 1px solid var(--vx-border);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vx-mid);
  text-decoration: none;
  transition: all 0.2s ease;
}

.vx-post-nav__prev a:hover,
.vx-post-nav__next a:hover {
  border-color: var(--vx-dark);
  color: var(--vx-dark);
}

.vx-post-nav__next { text-align: right; }

/* =============================================================================
   404 PAGE  (.vx-404)
   ============================================================================= */

.vx-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 48px 24px;
}

.vx-404__inner {
  text-align: center;
  max-width: 560px;
}

.vx-404__code {
  display: block;
  font-size: clamp(6rem, 18vw, 10rem);
  font-weight: 900;
  line-height: 1;
  color: var(--vx-border);
  letter-spacing: -0.04em;
  margin-bottom: 0;
}

.vx-404__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vx-dark);
  margin: 0 0 16px;
}

.vx-404__message {
  font-size: 1rem;
  color: var(--vx-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.vx-404__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.vx-btn--dark {
  background: var(--vx-black);
  color: #fff;
}

.vx-btn--dark:hover {
  background: #1a1a2e;
  color: #fff;
}

.vx-btn--outline {
  background: transparent;
  color: var(--vx-dark);
  border: 1.5px solid var(--vx-border);
}

.vx-btn--outline:hover {
  border-color: var(--vx-dark);
  background: var(--vx-bg-hover);
}

.vx-btn--sm {
  padding: 7px 16px;
  font-size: 0.75rem;
}

.vx-404__search {
  font-size: 0.875rem;
  color: var(--vx-muted);
}

/* Search form (shared by 404 + search page) */
.search-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  justify-content: center;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  border: 1.5px solid var(--vx-border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

.search-field:focus {
  outline: none;
  border-color: var(--vx-dark);
}

.search-submit {
  background: var(--vx-black);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-submit:hover {
  background: #1a1a2e;
}

/* =============================================================================
   SEARCH RESULTS PAGE  (.vx-search)
   ============================================================================= */

.vx-search__inner {
  max-width: var(--vx-content-max);
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.vx-search__header {
  margin-bottom: 32px;
}

.vx-search__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vx-dark);
  margin: 0 0 8px;
}

.vx-search__query {
  color: var(--vx-mid);
}

.vx-search__count {
  font-size: 0.875rem;
  color: var(--vx-muted);
  margin: 0;
}

.vx-search__results {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vx-search__item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--vx-border);
  align-items: flex-start;
}

.vx-search__item-img-link {
  flex-shrink: 0;
}

.vx-search__item-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.vx-search__item-body {
  flex: 1;
}

.vx-search__item-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.vx-search__item-title a {
  color: var(--vx-dark);
  text-decoration: none;
}

.vx-search__item-title a:hover {
  text-decoration: underline;
}

.vx-search__item-excerpt {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.vx-search__no-results {
  text-align: center;
  padding: 48px 0;
  color: var(--vx-muted);
}

.vx-search__pagination {
  margin-top: 48px;
}

/* =============================================================================
   PLUGIN OVERRIDES
   ============================================================================= */

/* Hide the vc-legal-footer plugin bar — we render our own footer bottom bar */
.vc-legal-footer {
  display: none !important;
}

/* Push page content below the sticky vx-navbar plugin header */
.vx-site > #content {
  margin-top: 0;
}

/* =============================================================================
   WOOCOMMERCE NOTICES
   (migrated from vexlyne-woocommerce-notices.php)
   ============================================================================= */

body .woocommerce-notices-wrapper,
body .wc-block-components-notices,
body .wc-block-components-notices__snackbar {
  box-sizing: border-box;
}

body.woocommerce .woocommerce-notices-wrapper,
body.woocommerce-page .woocommerce-notices-wrapper {
  max-width: 1320px;
  margin: 0 auto 22px;
}

body .woocommerce-message,
body .woocommerce-info,
body .woocommerce-error,
body .wc-block-components-notice-banner {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  margin: 0 0 22px !important;
  padding: 16px 18px !important;
  border: 1px solid #111111 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  color: #111111 !important;
  box-shadow: none !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

body .woocommerce-message::before,
body .woocommerce-info::before,
body .woocommerce-error::before {
  display: none !important;
}

body .woocommerce-message a:not(.button),
body .woocommerce-info a:not(.button),
body .woocommerce-error a:not(.button),
body .wc-block-components-notice-banner a:not(.button) {
  color: #111111 !important;
  font-weight: 900;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

body .woocommerce-message .button,
body .woocommerce-info .button,
body .woocommerce-error .button,
body .wc-block-components-notice-banner .button,
body .wc-block-components-notice-banner__content .wc-forward {
  order: 2;
  flex: 0 0 auto;
  min-height: 42px !important;
  padding: 12px 18px !important;
  border: 1px solid #000000 !important;
  border-radius: 0 !important;
  background: #000000 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  line-height: 1 !important;
}

body .woocommerce-message .button:hover,
body .woocommerce-info .button:hover,
body .woocommerce-error .button:hover,
body .wc-block-components-notice-banner .button:hover,
body .wc-block-components-notice-banner__content .wc-forward:hover {
  background: #222222 !important;
  color: #ffffff !important;
}

@media (max-width: 640px) {
  body .woocommerce-message,
  body .woocommerce-info,
  body .woocommerce-error,
  body .wc-block-components-notice-banner {
    display: block !important;
    padding: 14px 15px !important;
    font-size: 13px;
  }

  body .woocommerce-message .button,
  body .woocommerce-info .button,
  body .woocommerce-error .button,
  body .wc-block-components-notice-banner .button,
  body .wc-block-components-notice-banner__content .wc-forward {
    display: block !important;
    width: 100% !important;
    margin: 12px 0 0 !important;
    text-align: center !important;
  }
}

/* =============================================================================
   PAGINATION
   (migrated from vexlyne-pagination-style.php)
   ============================================================================= */

body.woocommerce nav.woocommerce-pagination,
body.woocommerce-page nav.woocommerce-pagination {
  display: block !important;
  width: 100% !important;
  margin: 44px 0 52px !important;
  padding: 0 !important;
  text-align: left !important;
}

body.woocommerce nav.woocommerce-pagination ul.page-numbers,
body.woocommerce-page nav.woocommerce-pagination ul.page-numbers {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  list-style: none !important;
}

body.woocommerce nav.woocommerce-pagination ul.page-numbers li,
body.woocommerce-page nav.woocommerce-pagination ul.page-numbers li {
  display: block !important;
  float: none !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

body.woocommerce nav.woocommerce-pagination ul.page-numbers li a,
body.woocommerce nav.woocommerce-pagination ul.page-numbers li span,
body.woocommerce-page nav.woocommerce-pagination ul.page-numbers li a,
body.woocommerce-page nav.woocommerce-pagination ul.page-numbers li span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 46px !important;
  height: 46px !important;
  margin: 0 !important;
  padding: 0 14px !important;
  border: 1px solid #111111 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  color: #111111 !important;
  box-shadow: none !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

body.woocommerce nav.woocommerce-pagination ul.page-numbers li span.current,
body.woocommerce-page nav.woocommerce-pagination ul.page-numbers li span.current {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

body.woocommerce nav.woocommerce-pagination ul.page-numbers li a:hover,
body.woocommerce nav.woocommerce-pagination ul.page-numbers li a:focus,
body.woocommerce-page nav.woocommerce-pagination ul.page-numbers li a:hover,
body.woocommerce-page nav.woocommerce-pagination ul.page-numbers li a:focus {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
  outline: none !important;
}

body.woocommerce nav.woocommerce-pagination ul.page-numbers li a.next,
body.woocommerce nav.woocommerce-pagination ul.page-numbers li a.prev,
body.woocommerce-page nav.woocommerce-pagination ul.page-numbers li a.next,
body.woocommerce-page nav.woocommerce-pagination ul.page-numbers li a.prev {
  min-width: 52px !important;
  letter-spacing: 0 !important;
}

@media (max-width: 640px) {
  body.woocommerce nav.woocommerce-pagination,
  body.woocommerce-page nav.woocommerce-pagination {
    margin: 30px 0 40px !important;
  }

  body.woocommerce nav.woocommerce-pagination ul.page-numbers,
  body.woocommerce-page nav.woocommerce-pagination ul.page-numbers {
    gap: 6px !important;
  }

  body.woocommerce nav.woocommerce-pagination ul.page-numbers li a,
  body.woocommerce nav.woocommerce-pagination ul.page-numbers li span,
  body.woocommerce-page nav.woocommerce-pagination ul.page-numbers li a,
  body.woocommerce-page nav.woocommerce-pagination ul.page-numbers li span {
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 11px !important;
    font-size: 12px !important;
  }

  body.woocommerce nav.woocommerce-pagination ul.page-numbers li a.next,
  body.woocommerce nav.woocommerce-pagination ul.page-numbers li a.prev,
  body.woocommerce-page nav.woocommerce-pagination ul.page-numbers li a.next,
  body.woocommerce-page nav.woocommerce-pagination ul.page-numbers li a.prev {
    min-width: 44px !important;
  }
}

/* =============================================================================
   HIDE SKU / META / BREADCRUMBS
   (migrated from vividcase-hide-meta.php)
   ============================================================================= */

.kadence-breadcrumbs,
.woocommerce-breadcrumb,
.product_meta .posted_in,
.product_meta .sku_wrapper,
.product_meta {
  display: none !important;
}

/* =============================================================================
   LEGAL PAGES  (page IDs 3, 10, 77)
   (migrated from vexlyne-legal-page-layout.php)
   ============================================================================= */

body.page-id-3 .site-content .ast-container,
body.page-id-10 .site-content .ast-container,
body.page-id-77 .site-content .ast-container {
  display: block;
  max-width: 960px !important;
  margin: 0 auto;
  padding: 72px 24px 88px;
}

body.page-id-3 .entry-header,
body.page-id-10 .entry-header,
body.page-id-77 .entry-header,
body.page-id-3 .entry-content,
body.page-id-10 .entry-content,
body.page-id-77 .entry-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

body.page-id-3 .entry-title,
body.page-id-10 .entry-title,
body.page-id-77 .entry-title {
  margin: 0 0 32px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

body.page-id-3 .entry-content,
body.page-id-10 .entry-content,
body.page-id-77 .entry-content {
  font-size: 18px;
  line-height: 1.75;
}

body.page-id-3 .entry-content h2,
body.page-id-3 .entry-content h3,
body.page-id-10 .entry-content h2,
body.page-id-10 .entry-content h3,
body.page-id-77 .entry-content h2,
body.page-id-77 .entry-content h3 {
  margin-top: 34px;
  margin-bottom: 14px;
}

@media (max-width: 640px) {
  body.page-id-3 .site-content .ast-container,
  body.page-id-10 .site-content .ast-container,
  body.page-id-77 .site-content .ast-container {
    padding: 44px 18px 64px;
  }

  body.page-id-3 .entry-content,
  body.page-id-10 .entry-content,
  body.page-id-77 .entry-content {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* =============================================================================
   ABOUT PAGE (712) + MY ACCOUNT
   (migrated from vexlyne-page-account-layout.php)
   ============================================================================= */

body.page-id-712,
body.woocommerce-account {
  background: #fff !important;
}

body.page-id-712 .site-content .ast-container,
body.woocommerce-account .site-content .ast-container {
  display: block !important;
  box-sizing: border-box !important;
  width: min(100%, 1120px) !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 46px 28px 76px !important;
}

body.page-id-712 #primary,
body.woocommerce-account #primary,
body.page-id-712 .site-main,
body.woocommerce-account .site-main,
body.page-id-712 .ast-article-single,
body.woocommerce-account .ast-article-single {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.page-id-712 .entry-header,
body.woocommerce-account .entry-header,
body.page-id-712 .entry-content,
body.woocommerce-account .entry-content {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.page-id-712 .entry-header,
body.woocommerce-account .entry-header {
  margin: 0 0 24px !important;
}

body.page-id-712 .entry-title,
body.woocommerce-account .entry-title {
  margin: 0 !important;
  color: #050505 !important;
  font-size: clamp(34px, 4.8vw, 58px) !important;
  line-height: 1.02 !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  text-transform: uppercase !important;
}

body.page-id-712 .entry-content {
  max-width: 780px !important;
  color: #232323 !important;
  font-size: 17px !important;
  line-height: 1.68 !important;
}

body.page-id-712 .entry-content > *:first-child { margin-top: 0 !important; }

body.page-id-712 .entry-content p {
  max-width: 760px !important;
  margin: 0 0 18px !important;
  font-size: 17px !important;
  line-height: 1.68 !important;
}

body.page-id-712 .entry-content .has-large-font-size {
  font-size: 17px !important;
  line-height: 1.68 !important;
}

body.page-id-712 .entry-content .wp-block-group { padding-top: 0 !important; padding-bottom: 0 !important; }
body.page-id-712 .entry-content .wp-block-spacer { height: 24px !important; }

body.page-id-712 .entry-content .wp-block-columns {
  gap: 32px !important;
  margin-top: 28px !important;
  margin-bottom: 30px !important;
}

body.page-id-712 .entry-content h2,
body.page-id-712 .entry-content h3 {
  color: #050505 !important;
  margin: 30px 0 10px !important;
  font-weight: 850 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.12 !important;
}

body.page-id-712 .entry-content .wp-block-button,
body.page-id-712 .entry-content .wp-block-buttons {
  margin-top: 26px !important;
}

body.page-id-712 .entry-content .wp-block-button__link,
body.page-id-712 .entry-content .button {
  background: #000 !important;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  color: #fff !important;
  padding: 14px 24px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

body.woocommerce-account .entry-content > .woocommerce {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 1040px !important;
  margin: 0 !important;
}

body.woocommerce-account .woocommerce { clear: both !important; }

body.woocommerce-account:not(.logged-in) .entry-content > .woocommerce {
  max-width: 560px !important;
}

body.woocommerce-account h2,
body.woocommerce-account h3 {
  margin: 0 0 18px !important;
  color: #050505 !important;
  font-size: clamp(22px, 2.7vw, 31px) !important;
  line-height: 1.08 !important;
  font-weight: 850 !important;
  letter-spacing: -0.03em !important;
  text-transform: none !important;
}

body.woocommerce-account .woocommerce-form-login,
body.woocommerce-account .woocommerce-form-register,
body.woocommerce-account .woocommerce-ResetPassword,
body.woocommerce-account .woocommerce-MyAccount-content,
body.woocommerce-account .woocommerce-MyAccount-navigation {
  box-sizing: border-box !important;
  border: 1px solid #111 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-account .woocommerce-form-login,
body.woocommerce-account .woocommerce-form-register,
body.woocommerce-account .woocommerce-ResetPassword {
  margin: 0 !important;
  padding: 28px !important;
}

body.woocommerce-account .woocommerce-form-row,
body.woocommerce-account .form-row {
  margin: 0 0 16px !important;
  padding: 0 !important;
}

body.woocommerce-account label {
  display: block !important;
  margin: 0 0 7px !important;
  color: #111 !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  font-weight: 850 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
}

body.woocommerce-account input.input-text,
body.woocommerce-account input[type="text"],
body.woocommerce-account input[type="email"],
body.woocommerce-account input[type="password"] {
  box-sizing: border-box !important;
  width: 100% !important;
  min-height: 50px !important;
  height: 50px !important;
  border: 1px solid #111 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #111 !important;
  box-shadow: none !important;
  padding: 11px 13px !important;
  font-size: 15px !important;
}

body.woocommerce-account input.input-text:focus,
body.woocommerce-account input[type="text"]:focus,
body.woocommerce-account input[type="email"]:focus,
body.woocommerce-account input[type="password"]:focus {
  outline: 2px solid #111 !important;
  outline-offset: 2px !important;
  border-color: #111 !important;
}

body.woocommerce-account .woocommerce-form__label-for-checkbox {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 16px !important;
  color: #444 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.woocommerce-account .woocommerce-form__input-checkbox {
  width: 16px !important;
  height: 16px !important;
  accent-color: #000 !important;
}

body.woocommerce-account .woocommerce-button,
body.woocommerce-account button.button,
body.woocommerce-account .button {
  width: 100% !important;
  min-height: 52px !important;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  background: #000 !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

body.woocommerce-account .woocommerce-button:hover,
body.woocommerce-account button.button:hover,
body.woocommerce-account .button:hover {
  background: #222 !important;
  color: #fff !important;
}

body.woocommerce-account .lost_password,
body.woocommerce-account .woocommerce-LostPassword {
  margin: 16px 0 0 !important;
  text-align: center !important;
}

body.woocommerce-account .lost_password a,
body.woocommerce-account .woocommerce-LostPassword a,
body.woocommerce-account .woocommerce-privacy-policy-text a {
  color: #111 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

body.woocommerce-account .woocommerce-privacy-policy-text {
  color: #555 !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

body.woocommerce-account.logged-in .entry-content > .woocommerce,
body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
  display: grid !important;
  grid-template-columns: 260px minmax(0, 1fr) !important;
  gap: 40px !important;
  align-items: start !important;
  max-width: 1040px !important;
}

body.woocommerce-account.logged-in .entry-content > .woocommerce::before,
body.woocommerce-account.logged-in .entry-content > .woocommerce::after,
body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation)::before,
body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation)::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation { padding: 8px !important; }

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link {
  border: 0 !important;
  list-style: none !important;
  margin: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link a {
  display: block !important;
  padding: 12px 13px !important;
  color: #111 !important;
  background: transparent !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
  background: #000 !important;
  color: #fff !important;
}

body.woocommerce-account .woocommerce-MyAccount-content {
  min-height: 220px !important;
  padding: 28px !important;
  color: #222 !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content p { max-width: 680px !important; }
body.woocommerce-account .woocommerce-MyAccount-content p:first-child { margin-top: 0 !important; }

body.woocommerce-account .woocommerce-MyAccount-content a {
  color: #111 !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

body.woocommerce-account .woocommerce-Message,
body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-error {
  border: 1px solid #111 !important;
  border-top: 1px solid #111 !important;
  background: #fff !important;
  color: #111 !important;
  padding: 14px 16px !important;
  margin: 0 0 20px !important;
}

@media (max-width: 760px) {
  body.page-id-712 .site-content .ast-container,
  body.woocommerce-account .site-content .ast-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 28px 18px 54px !important;
  }

  body.page-id-712 .entry-header,
  body.woocommerce-account .entry-header {
    margin-bottom: 18px !important;
  }

  body.page-id-712 .entry-title,
  body.woocommerce-account .entry-title {
    font-size: clamp(32px, 10vw, 44px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.04em !important;
  }

  body.page-id-712 .entry-content {
    max-width: none !important;
    font-size: 15.5px !important;
    line-height: 1.62 !important;
  }

  body.page-id-712 .entry-content p {
    margin-bottom: 15px !important;
    font-size: 15.5px !important;
    line-height: 1.62 !important;
  }

  body.page-id-712 .entry-content .has-large-font-size {
    font-size: 15.5px !important;
    line-height: 1.62 !important;
  }

  body.page-id-712 .entry-content .wp-block-spacer { height: 12px !important; }

  body.page-id-712 .entry-content .wp-block-columns {
    gap: 16px !important;
    margin-top: 16px !important;
    margin-bottom: 22px !important;
  }

  body.woocommerce-account:not(.logged-in) .entry-content > .woocommerce,
  body.woocommerce-account .entry-content > .woocommerce {
    max-width: none !important;
  }

  body.woocommerce-account.logged-in .entry-content > .woocommerce,
  body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation { margin: 0 0 16px !important; }

  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation-link a {
    padding: 11px 8px !important;
    font-size: 10px !important;
    text-align: center !important;
  }

  body.woocommerce-account .woocommerce-form-login,
  body.woocommerce-account .woocommerce-form-register,
  body.woocommerce-account .woocommerce-ResetPassword,
  body.woocommerce-account .woocommerce-MyAccount-content {
    padding: 20px !important;
  }

  body.woocommerce-account .woocommerce-button,
  body.woocommerce-account button.button,
  body.woocommerce-account .button {
    min-height: 50px !important;
  }
}


/* =============================================================================
   CART
   (migrated from vexlyne-cart-layout.php)
   ============================================================================= */

body.woocommerce-cart {
    background: #ffffff;
}

body.woocommerce-cart .site-content .ast-container {
    display: block;
    max-width: 1480px !important;
    margin: 0 auto;
    padding: 70px clamp(22px, 4vw, 64px) 104px;
}

body.woocommerce-cart .entry-header,
body.woocommerce-cart .entry-content {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

body.woocommerce-cart .entry-title {
    margin: 0 0 34px;
    color: #111111;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(38px, 4.8vw, 68px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.woocommerce-cart .wp-block-woocommerce-cart {
    margin: 0;
    max-width: none;
}


body.woocommerce-cart .woocommerce-notices-wrapper,
body.woocommerce-cart .wc-block-components-notices,
body.woocommerce-cart .wc-block-components-notices__snackbar {
    max-width: 1320px;
    margin: 0 auto 22px;
    box-sizing: border-box;
}

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error,
body.woocommerce-cart .wc-block-components-notice-banner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 58px;
    margin: 0 0 22px !important;
    padding: 16px 18px !important;
    border: 1px solid #111111 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: #111111 !important;
    box-shadow: none !important;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.35;
}

body.woocommerce-cart .woocommerce-message::before,
body.woocommerce-cart .woocommerce-info::before,
body.woocommerce-cart .woocommerce-error::before {
    display: none !important;
}

body.woocommerce-cart .woocommerce-message a,
body.woocommerce-cart .woocommerce-info a,
body.woocommerce-cart .woocommerce-error a,
body.woocommerce-cart .wc-block-components-notice-banner a {
    color: #111111 !important;
    font-weight: 900;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

body.woocommerce-cart .woocommerce-message .button,
body.woocommerce-cart .woocommerce-info .button,
body.woocommerce-cart .woocommerce-error .button,
body.woocommerce-cart .wc-block-components-notice-banner .button,
body.woocommerce-cart .wc-block-components-notice-banner__content .wc-forward {
    order: 2;
    flex: 0 0 auto;
    min-height: 42px !important;
    padding: 12px 18px !important;
    border: 1px solid #000000 !important;
    border-radius: 0 !important;
    background: #000000 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none !important;
    line-height: 1 !important;
}

body.woocommerce-cart .woocommerce-message .button:hover,
body.woocommerce-cart .woocommerce-info .button:hover,
body.woocommerce-cart .woocommerce-error .button:hover,
body.woocommerce-cart .wc-block-components-notice-banner .button:hover,
body.woocommerce-cart .wc-block-components-notice-banner__content .wc-forward:hover {
    background: #222222 !important;
    color: #ffffff !important;
}

body.woocommerce-cart .wc-block-cart {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    gap: clamp(32px, 4vw, 64px);
    align-items: start;
}

body.woocommerce-cart .wc-block-cart__main {
    padding: 0;
    width: 100%;
}

body.woocommerce-cart .wc-block-cart__sidebar {
    position: sticky;
    top: 24px;
    width: 100%;
    padding: 28px;
    border: 1px solid #dedede;
    background: #ffffff;
}

body.woocommerce-cart .wc-block-cart-items,
body.woocommerce-cart .wc-block-cart-items__row,
body.woocommerce-cart .wc-block-components-totals-wrapper,
body.woocommerce-cart .wc-block-cart__totals-title {
    border-color: #d9d9d9 !important;
}

body.woocommerce-cart .wc-block-cart-items__header th,
body.woocommerce-cart .wc-block-cart__totals-title {
    color: #111111;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.woocommerce-cart .wc-block-cart-items__row {
    padding-top: 22px;
    padding-bottom: 22px;
}

body.woocommerce-cart .wc-block-cart-item__image img {
    width: 112px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid #e6e2dd;
    background: #ffffff;
}

body.woocommerce-cart .wc-block-cart-item__product {
    padding-left: 22px;
}

body.woocommerce-cart .wc-block-components-product-name {
    color: #111111;
    font-weight: 800;
    text-decoration: none !important;
}

body.woocommerce-cart .wc-block-components-product-name:hover {
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

body.woocommerce-cart .wc-block-components-product-metadata,
body.woocommerce-cart .wc-block-components-product-metadata__description,
body.woocommerce-cart .wc-block-components-product-details {
    color: #5e5e5e;
    font-size: 14px;
}

body.woocommerce-cart .wc-block-components-quantity-selector {
    min-height: 38px;
    border-color: #cfcfcf;
    border-radius: 0;
    box-shadow: none;
}

body.woocommerce-cart .wc-block-components-quantity-selector__button {
    color: #111111;
    border-radius: 0;
}

body.woocommerce-cart .wc-block-components-button,
body.woocommerce-cart .wc-block-cart__submit-button,
body.woocommerce-cart .wc-block-components-button:not(.is-link) {
    min-height: 58px;
    border-radius: 0;
    background: #000000 !important;
    color: #ffffff !important;
    box-shadow: none;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.woocommerce-cart .wc-block-components-button:hover,
body.woocommerce-cart .wc-block-cart__submit-button:hover {
    background: #222222 !important;
    color: #ffffff !important;
}

body.woocommerce-cart .wc-block-components-button:focus {
    outline: 2px solid #111111;
    outline-offset: 3px;
}

body.woocommerce-cart .wc-block-components-totals-item {
    padding: 18px 0;
}

body.woocommerce-cart .wc-block-components-totals-item__label,
body.woocommerce-cart .wc-block-components-totals-item__value {
    color: #111111;
    font-weight: 700;
}

body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 22px;
    font-weight: 900;
}

body.woocommerce-cart .wc-block-components-totals-coupon {
    padding: 0;
}

body.woocommerce-cart .wc-block-components-totals-coupon-link {
    color: #111111;
    font-weight: 700;
    text-decoration: none;
}

body.woocommerce-cart .wc-block-components-express-payment__event-buttons {
    margin-top: 18px;
}

body.woocommerce-cart .wc-block-grid,
body.woocommerce-cart .wp-block-woocommerce-product-collection {
    margin-top: 56px;
    padding-top: 34px;
    border-top: 1px solid #e4e0dc;
}

body.woocommerce-cart .wp-block-woocommerce-product-collection > h2,
body.woocommerce-cart .wp-block-heading {
    color: #111111;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0;
}

body.woocommerce-cart .wc-block-grid__product {
    text-align: left;
}

body.woocommerce-cart .wc-block-grid__product-image img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #ffffff;
}


body.woocommerce-cart .wc-block-grid,
body.woocommerce-cart .wp-block-woocommerce-product-collection,
body.woocommerce-cart .wp-block-woocommerce-product-new,
body.woocommerce-cart .wc-block-grid__products {
    box-sizing: border-box;
}

body.woocommerce-cart .wp-block-heading.has-text-align-center,
body.woocommerce-cart h2.wp-block-heading,
body.woocommerce-cart .wc-block-cart__empty-cart__title {
    color: #111111 !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: clamp(30px, 3vw, 46px) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    text-transform: uppercase !important;
}

body.woocommerce-cart .wp-block-woocommerce-product-new,
body.woocommerce-cart .wp-block-woocommerce-product-collection {
    margin-top: 40px !important;
    padding-top: 28px !important;
    border-top: 1px solid #dcdcdc !important;
}

body.woocommerce-cart .wc-block-grid__products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(18px, 2.2vw, 28px) !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-cart .wc-block-grid__product {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    border: 0 !important;
    text-align: left !important;
    background: transparent !important;
}

body.woocommerce-cart .wc-block-grid__product-link,
body.woocommerce-cart .wc-block-grid__product-title,
body.woocommerce-cart .wc-block-grid__product-title a {
    color: #111111 !important;
    text-decoration: none !important;
}

body.woocommerce-cart .wc-block-grid__product-image {
    margin: 0 0 14px !important;
    overflow: hidden !important;
    background: #ffffff !important;
}

body.woocommerce-cart .wc-block-grid__product-image img {
    display: block !important;
    width: 100% !important;
    aspect-ratio: 3 / 4 !important;
    height: auto !important;
    object-fit: cover !important;
    border: 0 !important;
    background: #ffffff !important;
    transition: transform 180ms ease, filter 180ms ease;
}

body.woocommerce-cart .wc-block-grid__product:hover .wc-block-grid__product-image img {
    transform: scale(1.025);
    filter: contrast(1.03);
}

body.woocommerce-cart .wc-block-grid__product-title {
    display: block !important;
    margin: 0 0 7px !important;
    min-height: 38px;
    color: #111111 !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
}

body.woocommerce-cart .wc-block-grid__product-price,
body.woocommerce-cart .wc-block-grid__product-price .woocommerce-Price-amount,
body.woocommerce-cart .wc-block-grid__product-price .amount {
    margin: 0 0 13px !important;
    color: #111111 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
}

body.woocommerce-cart .wc-block-grid__product-add-to-cart,
body.woocommerce-cart .wc-block-grid__product-add-to-cart.wp-block-button {
    margin: 0 !important;
}

body.woocommerce-cart .wc-block-grid__product-add-to-cart a,
body.woocommerce-cart .wc-block-grid__product-add-to-cart .wp-block-button__link,
body.woocommerce-cart .wc-block-grid__product .button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    width: 100% !important;
    padding: 13px 16px !important;
    border: 1px solid #000000 !important;
    border-radius: 0 !important;
    background: #000000 !important;
    color: #ffffff !important;
    box-shadow: none !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
}

body.woocommerce-cart .wc-block-grid__product-add-to-cart a:hover,
body.woocommerce-cart .wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
body.woocommerce-cart .wc-block-grid__product .button:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

@media (max-width: 980px) {
    body.woocommerce-cart .wc-block-grid__products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    body.woocommerce-cart .wp-block-heading.has-text-align-center,
    body.woocommerce-cart h2.wp-block-heading,
    body.woocommerce-cart .wc-block-cart__empty-cart__title {
        font-size: 30px !important;
        text-align: left !important;
    }

    body.woocommerce-cart .wp-block-woocommerce-product-new,
    body.woocommerce-cart .wp-block-woocommerce-product-collection {
        margin-top: 28px !important;
        padding-top: 22px !important;
    }

    body.woocommerce-cart .wc-block-grid__products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px 12px !important;
    }

    body.woocommerce-cart .wc-block-grid__product-title {
        min-height: 0;
        font-size: 12px !important;
        line-height: 1.22 !important;
    }

    body.woocommerce-cart .wc-block-grid__product-price,
    body.woocommerce-cart .wc-block-grid__product-price .woocommerce-Price-amount,
    body.woocommerce-cart .wc-block-grid__product-price .amount {
        font-size: 12px !important;
        margin-bottom: 10px !important;
    }

    body.woocommerce-cart .wc-block-grid__product-add-to-cart a,
    body.woocommerce-cart .wc-block-grid__product-add-to-cart .wp-block-button__link,
    body.woocommerce-cart .wc-block-grid__product .button {
        min-height: 42px !important;
        padding: 12px 10px !important;
        font-size: 10px !important;
    }
}
@media (max-width: 980px) {
    body.woocommerce-cart .site-content .ast-container {
        padding-top: 46px;
        padding-bottom: 72px;
    }

    body.woocommerce-cart .wc-block-cart {
        display: block;
    }

    body.woocommerce-cart .wc-block-cart__sidebar {
        position: static;
        margin-top: 34px;
        padding: 22px;
    }
}

@media (max-width: 640px) {
    body.woocommerce-cart .site-content .ast-container {
        max-width: 100% !important;
        padding: 34px 18px 72px;
        overflow-x: hidden;
    }

    body.woocommerce-cart .entry-title {
        margin-bottom: 24px;
        font-size: 42px;
    }


    body.woocommerce-cart .woocommerce-message,
    body.woocommerce-cart .woocommerce-info,
    body.woocommerce-cart .woocommerce-error,
    body.woocommerce-cart .wc-block-components-notice-banner {
        display: block !important;
        padding: 14px 15px !important;
        font-size: 13px;
    }

    body.woocommerce-cart .woocommerce-message .button,
    body.woocommerce-cart .woocommerce-info .button,
    body.woocommerce-cart .woocommerce-error .button,
    body.woocommerce-cart .wc-block-components-notice-banner .button,
    body.woocommerce-cart .wc-block-components-notice-banner__content .wc-forward {
        display: block !important;
        width: 100% !important;
        margin: 12px 0 0 !important;
        text-align: center !important;
    }

    body.woocommerce-cart .entry-header,
    body.woocommerce-cart .entry-content,
    body.woocommerce-cart .wp-block-woocommerce-cart,
    body.woocommerce-cart .wc-block-cart,
    body.woocommerce-cart .wc-block-cart__main,
    body.woocommerce-cart .wc-block-cart__sidebar {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box;
    }

    body.woocommerce-cart .wc-block-cart {
        display: block !important;
    }

    body.woocommerce-cart .wc-block-cart-items,
    body.woocommerce-cart .wc-block-cart-items tbody,
    body.woocommerce-cart .wc-block-cart-items__row,
    body.woocommerce-cart .wc-block-cart-items__row td {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    body.woocommerce-cart .wc-block-cart-items__header,
    body.woocommerce-cart .wc-block-cart-item__total {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
    }

    body.woocommerce-cart .wc-block-cart-items__row {
        position: relative;
        padding: 0 0 26px !important;
        margin-bottom: 28px;
        border-bottom: 1px solid #e2ded9;
    }

    body.woocommerce-cart .wc-block-cart-item__product {
        min-height: 112px;
        padding: 0 0 0 104px !important;
    }

    body.woocommerce-cart .wc-block-cart-item__image img {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 82px !important;
        max-width: 82px !important;
        height: 110px !important;
        object-fit: cover !important;
    }

    body.woocommerce-cart .wc-block-components-product-name {
        display: block;
        margin: 0 0 8px;
        color: #111111;
        font-size: 15px;
        line-height: 1.28;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    body.woocommerce-cart .wc-block-cart-item__prices {
        margin: 0 0 8px;
        color: #111111;
        font-size: 14px;
        font-weight: 700;
    }

    body.woocommerce-cart .wc-block-components-product-metadata,
    body.woocommerce-cart .wc-block-components-product-details {
        margin: 0 0 10px;
        font-size: 14px;
        line-height: 1.35;
    }

    body.woocommerce-cart .wc-block-cart-item__quantity {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 8px;
    }

    body.woocommerce-cart .wc-block-components-quantity-selector {
        width: 118px;
        margin: 0;
    }

    body.woocommerce-cart .wc-block-cart-item__remove-link {
        margin: 0;
        color: #202938;
    }

    body.woocommerce-cart .wc-block-cart__sidebar {
        margin-top: 28px;
        padding: 20px;
        background: #ffffff;
    }

    body.woocommerce-cart .wc-block-components-totals-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
    body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
        font-size: 21px;
        line-height: 1.1;
    }

    body.woocommerce-cart .wc-block-components-button,
    body.woocommerce-cart .wc-block-cart__submit-button,
    body.woocommerce-cart .wc-block-components-button:not(.is-link) {
        min-height: 54px;
        font-size: 13px;
    }


    body.woocommerce-cart .wc-block-components-sidebar,
    body.woocommerce-cart .wc-block-cart__sidebar,
    body.woocommerce-cart .wc-block-cart__totals-title,
    body.woocommerce-cart .wc-block-components-totals-wrapper,
    body.woocommerce-cart .wc-block-components-totals-item,
    body.woocommerce-cart .wc-block-components-panel,
    body.woocommerce-cart .wc-block-components-panel__button {
        box-sizing: border-box !important;
    }

    body.woocommerce-cart .wc-block-cart__sidebar {
        margin-top: 18px !important;
        padding: 16px !important;
        border-color: #d8d8d8 !important;
    }

    body.woocommerce-cart .wc-block-components-sidebar .wc-block-components-totals-wrapper,
    body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-wrapper {
        padding: 12px 0 !important;
        margin: 0 !important;
        min-height: 0 !important;
    }

    body.woocommerce-cart .wc-block-components-panel__button,
    body.woocommerce-cart .wc-block-components-totals-coupon__button {
        min-height: 38px !important;
        padding: 0 !important;
        font-size: 14px !important;
        line-height: 1.2 !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon__form,
    body.woocommerce-cart .wc-block-components-totals-coupon form {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 104px !important;
        gap: 8px !important;
        align-items: start !important;
        width: 100% !important;
        margin: 10px 0 0 !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-text-input,
    body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-text-input.has-error,
    body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-totals-coupon__input {
        grid-column: 1 !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-button,
    body.woocommerce-cart .wc-block-components-totals-coupon button[type=submit] {
        grid-column: 2 !important;
        width: 104px !important;
        min-width: 104px !important;
        max-width: 104px !important;
        height: 50px !important;
        min-height: 50px !important;
        margin: 0 !important;
        padding: 0 10px !important;
        font-size: 12px !important;
        line-height: 1 !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon input,
    body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-text-input input {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        height: 50px !important;
        min-height: 50px !important;
        margin: 0 !important;
        padding: 17px 11px 7px !important;
        font-size: 15px !important;
        line-height: 1 !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-validation-error,
    body.woocommerce-cart .wc-block-components-totals-coupon__error {
        grid-column: 1 / -1 !important;
        display: block !important;
        width: 100% !important;
        margin: 7px 0 0 !important;
        padding: 0 !important;
        color: #c82929 !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        line-height: 1.25 !important;
        letter-spacing: 0 !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-validation-error svg {
        width: 12px !important;
        height: 12px !important;
        margin-right: 5px !important;
    }

    body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-item {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        min-height: 0 !important;
        padding: 10px 0 !important;
        font-size: 15px !important;
        line-height: 1.2 !important;
    }

    body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-item__label,
    body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-item__value {
        font-size: 15px !important;
        line-height: 1.2 !important;
    }

    body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-footer-item {
        padding: 16px 0 !important;
        margin: 0 !important;
    }

    body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
    body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
        font-size: 24px !important;
        line-height: 1 !important;
        letter-spacing: -0.03em !important;
    }

    body.woocommerce-cart .wc-block-cart__submit-container,
    body.woocommerce-cart .wc-block-cart__payment-options {
        margin-top: 14px !important;
    }

    body.woocommerce-cart .wc-block-cart__submit-button {
        min-height: 56px !important;
        font-size: 13px !important;
    }


    body.woocommerce-cart .wc-block-cart__sidebar {
        margin-top: 22px;
        padding: 18px;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon {
        padding: 0 !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon__content {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon form,
    body.woocommerce-cart .wc-block-components-totals-coupon__form {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 104px !important;
        gap: 8px !important;
        align-items: start !important;
        width: 100% !important;
        max-width: none !important;
        margin-top: 10px !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon__input,
    body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-text-input {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon input,
    body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-text-input input {
        height: 52px !important;
        min-height: 52px !important;
        padding: 17px 12px 8px !important;
        border: 1px solid #d5d8de !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        font-size: 15px !important;
        line-height: 1 !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-text-input label {
        left: 12px !important;
        top: 5px !important;
        transform: none !important;
        color: #d73333 !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon button,
    body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-button {
        width: 104px !important;
        min-width: 104px !important;
        min-height: 52px !important;
        height: 52px !important;
        padding: 0 12px !important;
        font-size: 12px !important;
        letter-spacing: 0.06em !important;
    }

    body.woocommerce-cart .wc-block-components-validation-error,
    body.woocommerce-cart .wc-block-components-totals-coupon__error {
        grid-column: 1 / -1;
        margin: 8px 0 0 !important;
        color: #c82929 !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
    }

    body.woocommerce-cart .wc-block-components-validation-error p,
    body.woocommerce-cart .wc-block-components-totals-coupon__error p {
        margin: 0 !important;
    }

    body.woocommerce-cart .wc-block-components-totals-item {
        padding: 12px 0 !important;
    }

    body.woocommerce-cart .wc-block-components-totals-footer-item {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    body.woocommerce-cart .wc-block-cart__submit-container {
        margin-top: 16px !important;
    }


    body.woocommerce-cart .wc-block-cart__sidebar {
        padding: 12px !important;
    }

    body.woocommerce-cart .wc-block-components-sidebar .wc-block-components-totals-wrapper,
    body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-wrapper {
        padding: 8px 0 !important;
    }

    body.woocommerce-cart .wc-block-components-panel__button,
    body.woocommerce-cart .wc-block-components-totals-coupon__button {
        min-height: 30px !important;
        height: 30px !important;
        font-size: 13px !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon form,
    body.woocommerce-cart .wc-block-components-totals-coupon__form {
        grid-template-columns: minmax(0, 1fr) 92px !important;
        gap: 7px !important;
        margin-top: 6px !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon input,
    body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-text-input input {
        height: 44px !important;
        min-height: 44px !important;
        padding: 15px 10px 6px !important;
        font-size: 14px !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-text-input label {
        top: 4px !important;
        left: 10px !important;
        font-size: 10px !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-button,
    body.woocommerce-cart .wc-block-components-totals-coupon button[type="submit"],
    body.woocommerce-cart .wc-block-components-totals-coupon button {
        width: 92px !important;
        min-width: 92px !important;
        max-width: 92px !important;
        height: 44px !important;
        min-height: 44px !important;
        font-size: 11px !important;
    }

    body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-validation-error,
    body.woocommerce-cart .wc-block-components-totals-coupon__error,
    body.woocommerce-cart .wc-block-components-validation-error {
        margin-top: 5px !important;
        font-size: 10.5px !important;
        line-height: 1.2 !important;
    }

    body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-item {
        padding: 6px 0 !important;
        min-height: 34px !important;
        font-size: 14px !important;
    }

    body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-item__label,
    body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-item__value {
        font-size: 14px !important;
    }

    body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-footer-item {
        padding: 10px 0 !important;
        min-height: 48px !important;
    }

    body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
    body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
        font-size: 22px !important;
    }
}

/* Final cart layout pass: override accumulated Woo block defaults. */
body.woocommerce-cart .wc-block-cart__main,
body.woocommerce-cart .wc-block-cart__sidebar,
body.woocommerce-cart .vx-free-shipping-progress {
  border-color: #d8d8d8 !important;
}

body.woocommerce-cart .wc-block-cart-items__row {
  border-bottom: 1px solid #dedede !important;
}

body.woocommerce-cart .wc-block-cart-item__image img {
  background: #fff !important;
  border: 1px solid #e1e1e1 !important;
}

body.woocommerce-cart .wc-block-components-product-name {
  color: #111 !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

body.woocommerce-cart .wc-block-components-product-metadata,
body.woocommerce-cart .wc-block-components-product-details {
  color: #5a5a5a !important;
}

body.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main,
body.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar {
  box-sizing: border-box !important;
}

@media (min-width: 641px) {
  body.woocommerce-cart .site-content .ast-container {
padding-top: clamp(28px, 4vw, 58px) !important;
  }

  body.woocommerce-cart .entry-title {
max-width: 1320px !important;
margin: 0 auto 26px !important;
  }

  body.woocommerce-cart .wc-block-cart {
grid-template-columns: minmax(0, 1fr) minmax(360px, 420px) !important;
gap: clamp(28px, 4vw, 54px) !important;
  }

  body.woocommerce-cart .wc-block-cart__sidebar {
padding: 24px !important;
background: #fff !important;
  }

  body.woocommerce-cart .wc-block-components-totals-wrapper {
padding: 8px 0 !important;
  }

  body.woocommerce-cart .wc-block-components-totals-item {
padding: 8px 0 !important;
  }

  body.woocommerce-cart .wc-block-components-totals-footer-item {
padding: 12px 0 !important;
  }

  body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
  body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
font-size: 24px !important;
letter-spacing: -0.03em !important;
  }

  body.woocommerce-cart .wc-block-components-totals-coupon__content {
display: block !important;
width: 100% !important;
  }

  body.woocommerce-cart .wc-block-components-totals-coupon__form {
display: grid !important;
grid-template-columns: minmax(0, 1fr) 104px !important;
gap: 8px !important;
width: 100% !important;
margin-top: 10px !important;
  }

  body.woocommerce-cart .wc-block-components-totals-coupon__input,
  body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-text-input {
width: 100% !important;
min-width: 0 !important;
  }

  body.woocommerce-cart .wc-block-components-totals-coupon input {
width: 100% !important;
height: 46px !important;
min-height: 46px !important;
border-radius: 0 !important;
  }

  body.woocommerce-cart .wc-block-components-totals-coupon button {
width: 104px !important;
height: 46px !important;
min-height: 46px !important;
border-radius: 0 !important;
  }

  body.woocommerce-cart .wc-block-components-validation-error {
grid-column: 1 / -1 !important;
margin-top: 6px !important;
font-size: 11px !important;
line-height: 1.25 !important;
  }

  body.woocommerce-cart .wc-block-cart__payment-options,
  body.woocommerce-cart .wc-block-components-express-payment,
  body.woocommerce-cart .wc-block-components-express-payment__event-buttons {
margin-top: 12px !important;
margin-bottom: 0 !important;
  }

  body.woocommerce-cart .wc-block-components-express-payment__event-buttons > * {
margin-bottom: 10px !important;
  }

  body.woocommerce-cart .wc-block-cart__submit-container {
margin-top: 14px !important;
  }

  body.woocommerce-cart .wc-block-cart__submit-button {
width: 100% !important;
min-height: 56px !important;
  }

  body.woocommerce-cart .wc-block-components-express-payment-continue-rule {
margin: 12px 0 !important;
  }
}

@media (max-width: 640px) {
  body.woocommerce-cart .site-content .ast-container {
padding: 22px 14px 54px !important;
  }

  body.woocommerce-cart .entry-title {
margin-bottom: 18px !important;
font-size: 38px !important;
line-height: 0.95 !important;
  }

  body.woocommerce-cart .vx-free-shipping-progress {
margin-bottom: 18px !important;
padding: 13px 14px !important;
  }

  body.woocommerce-cart .vx-free-shipping-progress__title {
font-size: 10px !important;
  }

  body.woocommerce-cart .vx-free-shipping-progress__amount,
  body.woocommerce-cart .vx-free-shipping-progress__note {
font-size: 11px !important;
  }

  body.woocommerce-cart .wc-block-cart-items__row {
display: grid !important;
grid-template-columns: 82px minmax(0, 1fr) !important;
column-gap: 14px !important;
padding: 0 0 18px !important;
margin-bottom: 20px !important;
  }

  body.woocommerce-cart .wc-block-cart-item__image {
grid-column: 1 !important;
grid-row: 1 !important;
width: 82px !important;
padding: 0 !important;
  }

  body.woocommerce-cart .wc-block-cart-item__image img {
position: static !important;
width: 82px !important;
height: 110px !important;
max-width: 82px !important;
  }

  body.woocommerce-cart .wc-block-cart-item__product {
grid-column: 2 !important;
grid-row: 1 !important;
min-height: 110px !important;
padding: 0 !important;
  }

  body.woocommerce-cart .wc-block-components-product-name {
margin-bottom: 7px !important;
font-size: 13px !important;
line-height: 1.25 !important;
  }

  body.woocommerce-cart .wc-block-cart-item__prices {
margin-bottom: 7px !important;
font-size: 12px !important;
  }

  body.woocommerce-cart .wc-block-components-product-metadata,
  body.woocommerce-cart .wc-block-components-product-details {
margin-bottom: 9px !important;
font-size: 12px !important;
  }

  body.woocommerce-cart .wc-block-cart-item__quantity {
gap: 10px !important;
margin-top: 6px !important;
  }

  body.woocommerce-cart .wc-block-components-quantity-selector {
width: 118px !important;
min-height: 36px !important;
  }

  body.woocommerce-cart .wc-block-cart__sidebar {
margin-top: 18px !important;
padding: 12px !important;
border: 1px solid #d8d8d8 !important;
  }

  body.woocommerce-cart .wc-block-components-totals-wrapper {
padding: 8px 0 !important;
  }

  body.woocommerce-cart .wc-block-components-panel__button {
min-height: 30px !important;
padding: 0 !important;
font-size: 13px !important;
  }

  body.woocommerce-cart .wc-block-components-totals-coupon__form {
grid-template-columns: minmax(0, 1fr) 90px !important;
gap: 7px !important;
margin-top: 6px !important;
  }

  body.woocommerce-cart .wc-block-components-totals-coupon input,
  body.woocommerce-cart .wc-block-components-totals-coupon button {
height: 42px !important;
min-height: 42px !important;
  }

  body.woocommerce-cart .wc-block-components-totals-coupon button {
width: 90px !important;
min-width: 90px !important;
max-width: 90px !important;
font-size: 10px !important;
  }

  body.woocommerce-cart .wc-block-components-totals-item {
min-height: 34px !important;
padding: 6px 0 !important;
  }

  body.woocommerce-cart .wc-block-components-totals-item__label,
  body.woocommerce-cart .wc-block-components-totals-item__value {
font-size: 14px !important;
  }

  body.woocommerce-cart .wc-block-components-totals-footer-item {
min-height: 48px !important;
padding: 10px 0 !important;
  }

  body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
  body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
font-size: 21px !important;
  }

  body.woocommerce-cart .wc-block-components-express-payment__event-buttons > * {
margin-bottom: 8px !important;
  }

  body.woocommerce-cart .wc-block-cart__submit-button {
min-height: 52px !important;
font-size: 12px !important;
  }
}

/* Mobile cart redesign: compact, editorial, not Woo default. */
@media (max-width: 640px) {
  body.woocommerce-cart .site-content .ast-container {
padding: 18px 14px 44px !important;
  }

  body.woocommerce-cart .entry-title {
margin: 0 0 14px !important;
font-size: 32px !important;
letter-spacing: -0.04em !important;
  }

  body.woocommerce-cart .vx-free-shipping-progress {
margin: 0 0 14px !important;
padding: 10px 11px !important;
border-width: 1px !important;
  }

  body.woocommerce-cart .vx-free-shipping-progress__top {
display: flex !important;
align-items: center !important;
justify-content: space-between !important;
gap: 10px !important;
margin-bottom: 8px !important;
  }

  body.woocommerce-cart .vx-free-shipping-progress__title {
font-size: 9px !important;
letter-spacing: 0.12em !important;
  }

  body.woocommerce-cart .vx-free-shipping-progress__amount {
margin: 0 !important;
font-size: 10px !important;
white-space: nowrap !important;
  }

  body.woocommerce-cart .vx-free-shipping-progress__track {
height: 5px !important;
  }

  body.woocommerce-cart .vx-free-shipping-progress__note {
margin-top: 7px !important;
font-size: 10px !important;
line-height: 1.25 !important;
  }

  body.woocommerce-cart .wc-block-cart {
display: block !important;
  }

  body.woocommerce-cart .wc-block-cart-items__row {
display: grid !important;
grid-template-columns: 72px minmax(0, 1fr) !important;
gap: 10px 12px !important;
padding: 0 0 14px !important;
margin: 0 0 14px !important;
border-bottom: 1px solid #dedede !important;
  }

  body.woocommerce-cart .wc-block-cart-item__image,
  body.woocommerce-cart .wc-block-cart-item__image a {
width: 72px !important;
padding: 0 !important;
  }

  body.woocommerce-cart .wc-block-cart-item__image img {
position: static !important;
width: 72px !important;
max-width: 72px !important;
height: 96px !important;
object-fit: cover !important;
  }

  body.woocommerce-cart .wc-block-cart-item__product {
min-height: 96px !important;
padding: 0 !important;
  }

  body.woocommerce-cart .wc-block-components-product-name {
margin: 0 0 5px !important;
font-size: 12px !important;
line-height: 1.2 !important;
letter-spacing: 0 !important;
  }

  body.woocommerce-cart .wc-block-cart-item__prices {
margin: 0 0 5px !important;
font-size: 11px !important;
line-height: 1.15 !important;
  }

  body.woocommerce-cart .wc-block-components-product-metadata,
  body.woocommerce-cart .wc-block-components-product-details {
margin: 0 0 7px !important;
font-size: 11px !important;
line-height: 1.25 !important;
  }

  body.woocommerce-cart .wc-block-cart-item__quantity {
display: flex !important;
align-items: center !important;
gap: 9px !important;
margin-top: 4px !important;
  }

  body.woocommerce-cart .wc-block-components-quantity-selector {
width: 98px !important;
min-height: 30px !important;
height: 30px !important;
  }

  body.woocommerce-cart .wc-block-components-quantity-selector__button,
  body.woocommerce-cart .wc-block-components-quantity-selector__input {
min-height: 28px !important;
height: 28px !important;
font-size: 12px !important;
  }

  body.woocommerce-cart .wc-block-cart-item__remove-link {
transform: scale(0.85) !important;
transform-origin: center !important;
  }

  body.woocommerce-cart .wc-block-cart__sidebar {
margin-top: 14px !important;
padding: 0 !important;
border: 0 !important;
background: transparent !important;
  }

  body.woocommerce-cart .wc-block-cart__sidebar .wc-block-cart__totals-title {
display: none !important;
  }

  body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-wrapper {
padding: 8px 0 !important;
border-color: #dedede !important;
  }

  body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-block,
  body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-coupon-form-block,
  body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-totals-block,
  body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-wrapper {
border: 0 !important;
  }

  body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-coupon-form-block {
margin-bottom: 6px !important;
padding-bottom: 6px !important;
border-bottom: 1px solid #dedede !important;
  }

  body.woocommerce-cart .wc-block-components-panel__button {
min-height: 28px !important;
padding: 0 !important;
font-size: 12px !important;
  }

  body.woocommerce-cart .wc-block-components-totals-coupon__form {
grid-template-columns: minmax(0, 1fr) 82px !important;
gap: 6px !important;
margin-top: 6px !important;
  }

  body.woocommerce-cart .wc-block-components-totals-coupon input,
  body.woocommerce-cart .wc-block-components-totals-coupon button {
height: 38px !important;
min-height: 38px !important;
  }

  body.woocommerce-cart .wc-block-components-totals-coupon input {
padding: 13px 9px 5px !important;
font-size: 12px !important;
direction: ltr !important;
  }

  body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-text-input:not(.has-error) label {
color: #666666 !important;
font-weight: 600 !important;
  }

  body.woocommerce-cart .wc-block-components-totals-coupon label {
top: 3px !important;
left: 9px !important;
font-size: 9px !important;
  }

  body.woocommerce-cart .wc-block-components-totals-coupon button {
width: 82px !important;
min-width: 82px !important;
max-width: 82px !important;
font-size: 9px !important;
  }

  body.woocommerce-cart .wc-block-components-validation-error {
margin-top: 4px !important;
font-size: 9.5px !important;
line-height: 1.18 !important;
  }

  body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-item {
min-height: 30px !important;
padding: 4px 0 !important;
border: 0 !important;
  }

  body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-item__label,
  body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-item__value {
font-size: 12px !important;
line-height: 1.15 !important;
  }

  body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-footer-item {
min-height: 42px !important;
padding: 9px 0 !important;
border-top: 1px solid #dedede !important;
  }

  body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
  body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
font-size: 18px !important;
line-height: 1 !important;
  }

  body.woocommerce-cart .wc-block-components-express-payment,
  body.woocommerce-cart .wc-block-cart__payment-options {
margin-top: 8px !important;
  }

  body.woocommerce-cart .wc-block-components-express-payment__event-buttons > * {
margin-bottom: 6px !important;
  }

  body.woocommerce-cart .wc-block-components-express-payment-continue-rule {
margin: 8px 0 !important;
font-size: 10px !important;
  }

  body.woocommerce-cart .wc-block-cart__submit-container {
margin-top: 8px !important;
  }

  body.woocommerce-cart .wc-block-cart__submit-button {
min-height: 46px !important;
font-size: 11px !important;
letter-spacing: 0.08em !important;
  }
}

/* =============================================================================
   SINGLE PRODUCT GALLERY
   (migrated from zzzz-vexlyne-product-polish.php)
   ============================================================================= */

body.single-product .woocommerce-breadcrumb,
body.single-product .vx-top-category,
body.single-product .single-product-category,
body.single-product .product_meta,
body.single-product .posted_in,
body.single-product .ast-woo-product-category,
body.single-product .woocommerce-loop-product__category {
    display: none !important;
}

body.single-product .site-content .ast-container {
    max-width: 1480px !important;
    margin: 0 auto;
    padding: clamp(12px, 2vw, 28px) clamp(18px, 4vw, 56px) 80px;
}

body.single-product div.product {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

body.single-product .vx-product-top-section {
    display: grid !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(28px, 4vw, 64px) !important;
    align-items: start;
    width: 100%;
}

body.single-product.woocommerce div.product .woocommerce-product-gallery,
body.single-product.woocommerce #content div.product .woocommerce-product-gallery {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    float: none !important;
    display: grid !important;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    overflow: visible;
}

body.single-product .woocommerce-product-gallery .flex-viewport {
    grid-column: 2;
    grid-row: 1;
    width: 100% !important;
    background: transparent !important;
    overflow: hidden;
}

body.single-product .woocommerce-product-gallery__wrapper {
    margin: 0 !important;
    background: transparent !important;
}

body.single-product .woocommerce-product-gallery__image {
    pointer-events: auto !important;
    background: transparent !important;
}

body.single-product .woocommerce-product-gallery__image a {
    display: block;
    cursor: zoom-in !important;
}

body.single-product .woocommerce-product-gallery__image img {
    display: block;
    width: 100% !important;
    height: auto !important;
    max-height: min(76vh, 860px);
    object-fit: contain;
    margin: 0 auto;
    box-shadow: none !important;
}

body.single-product .flex-control-nav.flex-control-thumbs {
    display: grid !important;
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 9px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.single-product .flex-control-nav.flex-control-thumbs li {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-product .flex-control-nav.flex-control-thumbs img {
    width: 100% !important;
    aspect-ratio: 3 / 4;
    height: auto !important;
    object-fit: cover;
    border: 1px solid #e1ddd8;
    opacity: 0.58;
    transition: opacity 160ms ease, border-color 160ms ease;
    box-shadow: none !important;
    cursor: pointer;
}

body.single-product .flex-control-nav.flex-control-thumbs img.flex-active,
body.single-product .flex-control-nav.flex-control-thumbs img:hover {
    border-color: #111111;
    opacity: 1;
}

body.single-product.woocommerce div.product .summary.entry-summary,
body.single-product.woocommerce #content div.product .summary.entry-summary {
    width: 100% !important;
    max-width: 520px !important;
    flex: none !important;
    float: none !important;
    margin: 0 !important;
    padding: clamp(4px, 1vw, 12px) 0 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: left !important;
}

body.single-product.woocommerce div.product .summary.entry-summary .product_title {
    margin: 0 0 14px !important;
    color: #111111;
    font-size: clamp(30px, 3.4vw, 54px) !important;
    line-height: 0.98 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
}

body.single-product.woocommerce div.product p.price,
body.single-product.woocommerce div.product span.price {
    margin: 0 0 22px !important;
    color: #111111 !important;
    font-size: 20px !important;
    font-weight: 800 !important;
}

body.single-product .woocommerce-product-details__short-description {
    margin: 0 0 26px !important;
    color: #444444;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

body.single-product table.variations,
body.single-product table.variations tbody,
body.single-product table.variations tr,
body.single-product table.variations th,
body.single-product table.variations td {
    display: block;
    width: 100%;
    text-align: left;
}

body.single-product.woocommerce div.product form.cart .variations,
body.single-product.woocommerce-js div.product form.cart .variations {
    border-bottom: 0 !important;
}

body.single-product table.variations th.label label {
    color: #111111;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

body.single-product .vx-size-buttons {
    gap: 8px;
}

body.single-product .vx-size-btn {
    border-radius: 0 !important;
    padding: 10px 16px !important;
    font-size: 12px !important;
}

body.single-product.woocommerce div.product form.cart .button {
    min-height: 56px;
    border-radius: 0 !important;
    background: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #000000 !important;
    font-weight: 900 !important;
    letter-spacing: 0.06em;
}

body.single-product.woocommerce div.product form.cart .button:hover {
    background: #222222 !important;
    color: #ffffff !important;
}

body.single-product .woocommerce-tabs,
body.single-product .related.products {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 921px) {
    body.single-product .site-content .ast-container {
        max-width: 100% !important;
        padding: 24px 16px 60px;
        overflow-x: hidden;
    }

    body.single-product .vx-product-top-section {
        display: block !important;
    }

    body.single-product.woocommerce div.product .woocommerce-product-gallery,
    body.single-product.woocommerce #content div.product .woocommerce-product-gallery,
    body.single-product.woocommerce div.product .summary.entry-summary,
    body.single-product.woocommerce #content div.product .summary.entry-summary {
        width: 100% !important;
        max-width: 100% !important;
    }

    body.single-product.woocommerce div.product .woocommerce-product-gallery,
    body.single-product.woocommerce #content div.product .woocommerce-product-gallery {
        display: block !important;
    }

    body.single-product .woocommerce-product-gallery .flex-viewport {
        width: 100% !important;
    }

    body.single-product .woocommerce-product-gallery__image img {
        max-height: none;
    }

    body.single-product .flex-control-nav.flex-control-thumbs {
        display: flex !important;
        width: 100%;
        gap: 8px;
        margin: 10px 0 0 !important;
        overflow-x: auto;
        padding-bottom: 8px !important;
        scroll-snap-type: x proximity;
    }

    body.single-product .flex-control-nav.flex-control-thumbs li {
        flex: 0 0 62px;
        scroll-snap-align: start;
    }

    body.single-product.woocommerce div.product .summary.entry-summary {
        padding-top: 26px !important;
    }

    body.single-product.woocommerce div.product .summary.entry-summary .product_title {
        font-size: 34px !important;
    }
}

/* =============================================================================
   SHOP HOVER SECONDARY IMAGE
   (migrated from vc-shop-hover-secondary-image.php)
   ============================================================================= */

ul.products li.product .vc-loop-image-swap{position:relative;display:block;overflow:hidden}
ul.products li.product .vc-loop-image{display:block;width:100%;height:auto;transition:opacity .36s ease,transform .42s ease}
ul.products li.product .vc-loop-image--secondary{position:absolute;inset:0;opacity:0}
ul.products li.product .vc-loop-image-swap.has-secondary-image:hover .vc-loop-image--primary{opacity:0}
ul.products li.product .vc-loop-image-swap.has-secondary-image:hover .vc-loop-image--secondary{opacity:1;transform:scale(1.015)}
