/*
Theme Name: PRO LED FILM
Theme URI: https://proledfilm.com/
Author: PRO LED FILM
Author URI: https://proledfilm.com/
Description: A WooCommerce storefront for glasses-free 3D hologram displays. Every string, image and figure on the page is read from WooCommerce, the Customizer or the PRO LED FILM Core plugin - the templates hold no content of their own.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: proledfilm
Tags: e-commerce, one-column, custom-colors, custom-logo, custom-menu, featured-images, translation-ready
*/

/* PRO LED FILM theme — WooCommerce-compatible markup; product card block is reused by shop.html. */

:root {
  --font-heading: 'Chakra Petch', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-heading-weight: 600;
  --ink: #171a1e;
  --paper: #f4f4f2;
  --card: #ffffff;
  --line: #e4e3e0;
  --muted: #6d7178;
  --red: #c8102e;
  --red-tint: #fbe9ec;
  --amber: #d99114;
  --pill: #ececea;
  --shadow-sm: 0 1px 2px rgba(23, 26, 30, 0.08);
  --shadow-md: 0 3px 10px rgba(23, 26, 30, 0.12);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --wrap: 1280px;
  --gutter: clamp(16px, 3vw, 32px);
}

*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}

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

a { color: var(--ink); }
a:hover { color: var(--red); }

button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
}

.tnum { font-feature-settings: 'tnum' 1; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.965); }
  to { opacity: 1; transform: scale(1); }
}

.site {
  width: 100%;
  min-height: 100vh;
  padding: 28px var(--gutter) 0;
  background: var(--card);
}

.site-inner {
  max-width: var(--wrap);
  margin: 0 auto;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.site-brand {
  grid-column: 2;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 22px;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.cart-toggle {
  position: relative;
  justify-self: end;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.cart-toggle:hover { border-color: var(--ink); }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-feature-settings: 'tnum' 1;
}

.cart-count.is-visible { display: flex; }

.product {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: 48px;
  align-items: start;
  margin-top: 36px;
}

.woocommerce-product-gallery {
  position: sticky;
  top: 24px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--pill);
  animation: zoomIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.woocommerce-product-gallery__wrapper {
  aspect-ratio: 10 / 13;
  width: 100%;
}

.woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flex-control-thumbs {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-control-thumbs button {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--card);
  border-radius: var(--radius-sm);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flex-control-thumbs button:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.flex-control-thumbs button[aria-current='true'] { border-color: var(--ink); }

.flex-control-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-summary { animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both; }

.product-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  color: var(--muted);
}

.product_title {
  font-size: clamp(26px, 5.5vw, 34px);
  line-height: 1.18;
  margin: 16px 0 10px;
}

.woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 13.5px;
  color: var(--muted);
}

.woocommerce-product-rating strong {
  color: var(--ink);
  font-feature-settings: 'tnum' 1;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 18px;
  font-feature-settings: 'tnum' 1;
}

.price ins {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 26px;
  text-decoration: none;
}

.price del {
  font-size: 16px;
  color: var(--muted);
}

.onsale {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--red-tint);
  color: var(--red);
  font-size: 13px;
}

.dispatch-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--muted);
}

.dispatch-note svg {
  flex: none;
  color: var(--red);
}

.dispatch-note strong {
  color: var(--ink);
  font-feature-settings: 'tnum' 1;
}

.woocommerce-product-details__short-description h2 {
  font-size: 18px;
  margin: 0 0 8px;
}

.woocommerce-product-details__short-description p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

.woocommerce-product-details__short-description p:last-child { margin-bottom: 20px; }

.cart {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin: 0;
}

.single_add_to_cart_button {
  flex: 1;
  padding: 17px 24px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.single_add_to_cart_button:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.single_add_to_cart_button:active { transform: translateY(0); }

.key-benefits {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0 6px;
  font-size: 13.5px;
  color: var(--muted);
}

.key-benefits strong { color: var(--ink); }

.info-box {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.info-box + .info-box { margin-top: 12px; }

.info-box h2 {
  font-size: 17px;
  margin: 0 0 14px;
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.included-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.included-list li::before {
  content: '\2022';
  color: var(--red);
}

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 18px 24px;
}

.shipping-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.shipping-icon {
  flex: none;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pill);
}

.shipping-item dt {
  font-size: 12px;
  color: var(--muted);
}

.shipping-item dd {
  margin: 0;
  font-size: 14.5px;
}

.info-note {
  margin: 16px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
}

.section { margin-top: 88px; }

@supports (animation-timeline: view()) {
  .section {
    animation: fadeUp 0.9s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 38%;
  }
}

.section h2 {
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.section-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 32px 64px;
  align-items: start;
}

.section-lead h2 {
  font-size: clamp(28px, 5.5vw, 36px);
  line-height: 1.12;
  margin: 0 0 20px;
}

.section-lead p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 24px;
  justify-content: start;
  margin-top: 28px;
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 26px;
  font-feature-settings: 'tnum' 1;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--pill);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ratio-16-10 { aspect-ratio: 16 / 10; }
.ratio-4-3 { aspect-ratio: 4 / 3; border-radius: var(--radius-md); }

.section-sub {
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 56px 0 6px;
}

.section-sub-note {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--muted);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  counter-reset: method;
}

.method-grid li { list-style: none; }

.method-title {
  margin: 14px 0 4px;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 16.5px;
  counter-increment: method;
}

.method-title::before {
  content: counter(method) '. ';
  color: var(--red);
  font-feature-settings: 'tnum' 1;
}

.method-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.spec-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.shop_attributes {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 14.5px;
  font-feature-settings: 'tnum' 1;
}

.shop_attributes thead tr { background: var(--pill); }

.shop_attributes th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 14px;
}

.shop_attributes tbody tr { border-top: 1px solid var(--line); }

.shop_attributes tbody th {
  width: 40%;
  font-family: var(--font-body);
  font-weight: 400;
  padding: 13px 20px;
  color: var(--muted);
}

.shop_attributes td { padding: 13px 20px; }

.usecase-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}

.usecase-list strong { color: var(--ink); }

.section-body p {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 40px 56px;
  align-items: start;
}

.rating-score {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: clamp(64px, 12vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-feature-settings: 'tnum' 1;
}

.rating-score span {
  font-size: 0.28em;
  letter-spacing: 0;
  color: var(--muted);
}

.rating-count {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}

.rating-bars li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-bars span:first-of-type {
  width: 12px;
  font-size: 13.5px;
  font-feature-settings: 'tnum' 1;
}

.rating-track {
  flex: 1;
  height: 6px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--pill);
}

.rating-fill {
  display: block;
  height: 100%;
  border-radius: var(--radius-pill);
  background: var(--ink);
}

.review {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.review-author {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 17px;
}

.review-date {
  font-size: 13px;
  color: var(--muted);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin: 8px 0 12px;
}

.review p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  font-style: italic;
  color: var(--muted);
}

.faq { margin-top: 96px; }

.faq-eyebrow {
  margin: 0 0 14px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.faq h2 {
  max-width: 16ch;
  margin: 0 auto 36px;
  text-align: center;
  font-size: clamp(30px, 6vw, 42px);
  letter-spacing: -0.02em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 26px;
  background: var(--pill);
}

.faq-item[open] {
  border-color: var(--line);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 16px 16px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 16px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-sign {
  flex: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1;
}

.faq-sign::before { content: '+'; }
.faq-item[open] .faq-sign::before { content: '\00d7'; }

.faq-item p {
  margin: 0;
  padding: 0 24px 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 96px;
  padding: 24px 0 48px;
}

.site-footer .site-brand { font-size: 20px; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 26px;
  font-size: 14.5px;
}

.footer-nav a { text-decoration: none; }

.footer-rule {
  width: 100%;
  max-width: 640px;
  height: 1px;
  margin: 30px 0;
  background: var(--line);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-social a {
  display: flex;
  color: var(--ink);
}

.footer-social a:hover { color: var(--red); }

.copyright {
  margin: 26px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 32px 24px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.products .product {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  animation: none;
}

.woocommerce-loop-product__link {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  background: var(--pill);
}

.woocommerce-loop-product__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.products .product:hover .woocommerce-loop-product__link img { transform: scale(1.04); }

.woocommerce-loop-product__title {
  margin: 14px 0 6px;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 16.5px;
  line-height: 1.3;
}

.woocommerce-loop-product__title a { text-decoration: none; }

.products .price {
  margin: 0 0 12px;
  font-size: 15px;
}

.products .price ins { font-size: 18px; }

.products .price del { font-size: 14px; }

.add_to_cart_button {
  margin-top: auto;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--card);
  font-size: 14.5px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.add_to_cart_button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.woocommerce-products-header {
  margin-top: 36px;
  max-width: 52ch;
}

.woocommerce-products-header__title { font-size: clamp(28px, 5.5vw, 38px); }

.woocommerce-products-header p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 640px) {
  .woocommerce-product-gallery { position: static; }
  .stat-row { grid-template-columns: repeat(2, auto); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------------------------------------------------------------------------
   WordPress + WooCommerce chrome
   Everything below styles markup WooCommerce and WordPress print themselves:
   menus, notices, quantity fields, cart, checkout, reviews and pagination.
   --------------------------------------------------------------------------- */

/* Header navigation ------------------------------------------------------- */

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  font-size: 13px;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
  color: var(--red);
}

.custom-logo-link img {
  max-height: 34px;
  width: auto;
}

.site-header__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius-pill);
  padding: 7px 10px;
  cursor: pointer;
}

/* Skip link --------------------------------------------------------------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  background: var(--ink);
  color: var(--card);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 16px;
  color: var(--card);
}

/* Breadcrumb and result count -------------------------------------------- */

.woocommerce-breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin: 18px 0 0;
}

.woocommerce-breadcrumb a {
  text-decoration: none;
  color: var(--muted);
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.woocommerce-result-count {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.woocommerce-ordering select,
.woocommerce .quantity input[type="number"] {
  font-family: inherit;
  font-size: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  background: var(--card);
  color: var(--ink);
}

/* Notices ----------------------------------------------------------------- */

.woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin: 22px 0 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--pill);
  font-size: 14px;
  list-style: none;
}

.woocommerce-message {
  border-left-color: var(--red);
}

.woocommerce-error {
  border-left-color: var(--red);
  background: var(--red-tint);
}

.woocommerce-message .button,
.woocommerce-info .button {
  margin-left: auto;
}

/* Buttons ----------------------------------------------------------------- */

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--card);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--ink);
  color: var(--card);
}

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

.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.button[disabled],
.woocommerce button.button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Cart form on the single product ---------------------------------------- */

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

.cart .quantity input[type="number"] {
  width: 78px;
  text-align: center;
}

form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.stock.out-of-stock {
  color: var(--red);
  font-weight: 600;
  margin: 0;
}

.woocommerce-variation-price .price {
  margin: 0;
}

/* Pagination -------------------------------------------------------------- */

.woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  justify-content: center;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 14px;
}

.woocommerce-pagination .current {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--card);
}

/* Cart, checkout and account tables -------------------------------------- */

.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: middle;
}

.woocommerce table.shop_table th {
  font-family: var(--font-heading);
  font-weight: 600;
}

.woocommerce table.shop_table img {
  width: 56px;
  height: auto;
  border-radius: var(--radius-sm);
}

.cart-collaterals,
.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.woocommerce-additional-fields {
  margin-top: 32px;
}

.woocommerce-checkout .form-row {
  display: block;
  margin-bottom: 14px;
}

.woocommerce-checkout .form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
}

.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--ink);
}

#payment {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  padding: 18px;
}

#payment ul.payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

#payment ul.payment_methods li {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

#payment div.payment_box {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

#payment .place-order {
  margin-top: 18px;
}

/* Stripe trust line printed by PRO LED FILM Core -------------------------- */

.plf-checkout-trust {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.plf-checkout-trust__line {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.plf-checkout-trust__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.plf-checkout-trust__cards li {
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--pill);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  color: var(--muted);
}

/* Review form ------------------------------------------------------------- */

#review_form {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

#review_form .comment-form-rating .stars {
  display: inline-flex;
  gap: 4px;
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}

#review_form textarea {
  width: 100%;
  min-height: 120px;
  font-family: inherit;
  font-size: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.reviews-empty {
  color: var(--muted);
  margin: 0;
}

/* Related products and generic entry content ----------------------------- */

.related.products > h2,
.up-sells > h2 {
  margin-top: 8px;
}

.entry-content > * + * {
  margin-top: 16px;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 28px;
}

.entry-header {
  margin-top: 36px;
}

.page-hero {
  margin-top: 36px;
  max-width: 720px;
}

.post-card {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  margin-top: 22px;
}

.post-card h2 {
  font-size: 22px;
}

.post-meta {
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 0;
}

/* Mini cart --------------------------------------------------------------- */

.mini-cart {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(380px, 100%);
  background: var(--card);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 60;
  overflow-y: auto;
}

.mini-cart.is-open {
  transform: translateX(0);
}

.mini-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.mini-cart__close {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius-pill);
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.mini-cart ul.cart_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mini-cart ul.cart_list li {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.mini-cart ul.cart_list img {
  width: 52px;
  height: auto;
  border-radius: var(--radius-sm);
}

.mini-cart .woocommerce-mini-cart__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.mini-cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(23, 26, 30, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 55;
}

.mini-cart-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Footer menus ------------------------------------------------------------ */

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social ul {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    padding-top: 14px;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
