/* ============================================================
   DEHLEEZ — WooCommerce bridge
   Maps Woo's native markup onto the design system (tokens.css +
   site.css). Loaded after site.css so it can refine Woo output.
   ============================================================ */

/* ---- "Shop All" nav dropdown ---- */
.mainnav .nav-item.has-drop { position: relative; display: inline-flex; }
.mainnav .nav-drop-toggle { display: inline-flex; align-items: center; gap: 6px; }
.mainnav .nav-drop-toggle .chev { width: 14px; height: 14px; transition: transform .2s; }
.mainnav .has-drop:hover .nav-drop-toggle .chev,
.mainnav .has-drop:focus-within .nav-drop-toggle .chev { transform: rotate(180deg); }
.mainnav .nav-drop {
  position: absolute; top: calc(100% + 10px); left: -18px; min-width: 220px;
  background: var(--surface); border: 1px solid var(--cream-300); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: 8px 0; z-index: 80;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
/* Hover bridge so the pointer can travel from toggle to panel */
.mainnav .nav-drop::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.mainnav .has-drop:hover .nav-drop,
.mainnav .has-drop:focus-within .nav-drop { opacity: 1; visibility: visible; transform: none; }
.mainnav .nav-drop a {
  display: block; padding: 11px 20px; font: var(--weight-med) 14.5px/1.3 var(--font-body);
  color: var(--charcoal); white-space: nowrap;
}
.mainnav .nav-drop a::after { content: none; } /* no underline animation inside panel */
.mainnav .nav-drop a:hover { background: var(--cream-100); color: var(--primary-red); }

/* ---- Header search row ---- */
.search-row { background: var(--cream-50); border-bottom: 1px solid var(--cream-300); }
.search-row[hidden] { display: none; }
.search-row .wrap { padding-top: 14px; padding-bottom: 14px; }
.search-row form { display: flex; gap: 10px; max-width: 560px; margin: 0 auto; }
.search-row input[type="search"] {
  flex: 1; font-family: var(--font-body); font-size: 15px; color: var(--charcoal);
  background: var(--surface); border: 1.5px solid var(--cream-400); border-radius: var(--radius-sm);
  padding: 12px 15px;
}
.search-row input[type="search"]:focus { outline: none; border-color: var(--primary-red); box-shadow: 0 0 0 3px rgba(164,30,34,0.12); }

/* ---- Drawer: nested category links ---- */
.drawer-panel a.drawer-sub { padding-left: 26px; font-size: 15px; color: var(--text-muted); }

/* ---- Kill Storefront parent's default header padding (the white gap above the top bar) ---- */
.site-header { padding: 0; margin: 0; border: 0; }
.site-header::before, .site-header::after { content: none; display: none; }

/* ---- WP admin bar: offset the sticky header under it (logged-in only) ---- */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* ---- Footer logo: dark-mode asset already has white text, no filter ---- */
.site-footer .footer-brand img { filter: none; opacity: 1; }

/* ---- Footer link color (beat Storefront Customizer inline CSS) ---- */
.site-footer .footer-main .fcol a { color: rgba(251,243,226,0.82); }
.site-footer .footer-main .fcol a:hover { color: var(--gold-400); }
.site-footer .footer-main .footer-brand a { color: var(--cream-100); }
.site-footer .footer-bottom a { color: rgba(251,243,226,0.7); }

/* ---- Shop layout: filter sidebar + product grid ---- */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 36px; align-items: start; }
.shop-main { min-width: 0; }
.shop-sidebar { position: sticky; top: 96px; }
.shop-filter { margin-bottom: 26px; }
.shop-filter h3 { font: var(--weight-semi) 12.5px/1 var(--font-body); letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 14px; }
.shop-filter ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.shop-filter label { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--charcoal); cursor: pointer; }
.shop-filter label input { accent-color: var(--primary-red); width: 16px; height: 16px; }
.shop-filter label .cnt { margin-left: auto; color: var(--text-soft); font-size: 13px; }
.shop-filter-actions { margin-top: 8px; display: flex; gap: 12px; align-items: center; }
.shop-filter-actions .apply { font: var(--weight-semi) 13px/1 var(--font-body); background: var(--primary-red); color: #fff; border: none; border-radius: var(--radius-sm); padding: 11px 18px; cursor: pointer; }
.shop-filter-actions .apply:hover { background: var(--deep-red); }
.shop-clear { font-size: 13px; color: var(--primary-red); text-decoration: underline; }
.shop-divider { height: 1px; background: var(--cream-300); margin: 0 0 22px; }
/* Mobile category chips (shown < 860) */
.shop-chips { display: none; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.shop-chips a { font: var(--weight-med) 13.5px/1 var(--font-body); padding: 9px 15px; border-radius: 999px; border: 1.5px solid var(--cream-400); color: var(--charcoal); text-decoration: none; }
.shop-chips a.active { background: var(--primary-red); color: #fff; border-color: var(--primary-red); }

@media (max-width: 860px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .shop-chips { display: flex; }
}

/* ---- Content width / wrappers ---- */
.dehleez-woo { background: var(--cream-100); }
.shop-wrap { max-width: var(--container); margin: 0 auto; padding: 32px; }
.page-wrap { max-width: var(--container-narrow); margin: 0 auto; padding: clamp(32px,5vw,64px) 32px; }
.dehleez-woo .wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.site-main { min-height: 40vh; }

/* ---- Page head band (shop / category): split band, photo right half ---- */
.page-head { background: var(--cream-50); border-bottom: 1px solid var(--cream-300); position: relative; overflow: hidden; }
.page-head .wrap { padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(44px, 6vw, 64px); position: relative; z-index: 1; }
.page-head .page-title, .page-head .page-intro, .page-head .woocommerce-breadcrumb { max-width: 52%; }
.page-head-art {
  position: absolute; top: 0; right: 0; bottom: 0; width: 52%;
  background-size: cover; background-position: center;
}
/* Melt the photo into the cream band: left-edge + soft top/bottom fades */
.page-head-art::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--cream-50) 0%, rgba(255,252,245,0.55) 22%, rgba(255,252,245,0) 48%),
    linear-gradient(180deg, rgba(255,252,245,0.28) 0%, rgba(255,252,245,0) 30%);
}
@media (max-width: 860px) {
  .page-head-art { width: 100%; opacity: .18; }
  .page-head-art::after { background: linear-gradient(90deg, var(--cream-50) 0%, rgba(255,252,245,0.3) 100%); }
  .page-head .page-title, .page-head .page-intro, .page-head .woocommerce-breadcrumb { max-width: 100%; }
}
.page-head .page-title { font-family: var(--font-display); font-size: var(--fs-h1); color: var(--charcoal); margin: 10px 0 8px; }
.page-head .page-intro { color: var(--text-muted); max-width: 640px; }
.page-head-simple { margin-bottom: 28px; }
.page-head-simple .page-title { font-size: var(--fs-h1); }

/* Woo breadcrumb → design .crumb */
.woocommerce-breadcrumb { font-size: 13px; color: var(--text-soft); margin: 0 0 6px; }
.woocommerce-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.woocommerce-breadcrumb a:hover { color: var(--primary-red); }

/* ---- Buttons: map Woo to .btn-primary / gold ---- */
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce a.button.alt, .woocommerce button.button.alt,
.woocommerce #respond input#submit, .wc-block-components-button {
  font: var(--weight-semi) 15px/1 var(--font-body); letter-spacing: 0.02em; border: none; cursor: pointer;
  padding: 16px 28px; border-radius: var(--radius-sm); background: var(--primary-red); color: var(--cream-50);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none;
  transition: background .18s, box-shadow .18s, transform .18s; text-transform: none; text-shadow: none;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover,
.woocommerce #respond input#submit:hover { background: var(--deep-red); box-shadow: var(--shadow-md); color: var(--cream-50); }
.woocommerce a.button:active, .woocommerce button.button:active { transform: translateY(1px); }
.woocommerce .single_add_to_cart_button { padding: 18px 34px; font-size: 16px; }
.woocommerce #place_order, .woocommerce .checkout-button { background: var(--gold-500); color: #3a2c0c; width: 100%; padding: 18px 34px; font-size: 16px; }
.woocommerce #place_order:hover, .woocommerce .checkout-button:hover { background: var(--gold-400); color: #3a2c0c; }
.woocommerce a.button.disabled, .woocommerce button.button:disabled { background: var(--cream-300); color: var(--ink-400); box-shadow: none; }

/* ---- Product card stacking (div.pcard + overlay link + real add btn) ----
   Overlay link sits ABOVE media/body so the photo and title click through to
   the product page; badges and the add button sit above the overlay. */
.pcard { display: flex; }
.pcard-link { position: absolute; inset: 0; z-index: 2; }
/* media/body must NOT create stacking contexts (z-index:auto), or the add
   button's z-index gets trapped beneath the overlay link */
.pcard-body, .pcard-media { z-index: auto; }
.pbadge, .oos-tag { z-index: 3; }
.pcard-foot .pcard-add { position: relative; z-index: 3; }
.pcard-add.loading { opacity: .6; pointer-events: none; }
.pcard-add.added { background: var(--primary-red); color: #fff; border-color: var(--primary-red); }
.pcard .added_to_cart { display: none; } /* hide Woo's "View cart" text link on card */
/* sale price markup from get_price_html() */
.pcard-price del { color: var(--ink-400); text-decoration: line-through; font-weight: 500; font-size: 14px; order: 2; }
.pcard-price ins { text-decoration: none; font-weight: 600; order: 1; }
.pcard-price .woocommerce-Price-amount { font: inherit; }

/* ---- Shop toolbar (result count + ordering, Storefront's .storefront-sorting wrapper) ---- */
.shop-main .storefront-sorting { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 0 0 22px; padding: 0; }
.woocommerce .woocommerce-result-count { color: var(--text-muted); font-size: 14px; margin: 0; float: none; order: 1; }
.woocommerce .woocommerce-ordering { margin: 0; float: none; order: 2; }
.pgrid { clear: both; }
/* Price-pending card state */
.pcard-price.tbd { color: var(--text-soft); font-weight: 500; font-size: 14px; }
.dehleez-price-tbd { color: var(--text-muted); }
.woocommerce .woocommerce-ordering select, .dehleez-woo select.orderby {
  font-family: var(--font-body); font-size: 14px; color: var(--charcoal); background: var(--surface);
  border: 1.5px solid var(--cream-400); border-radius: var(--radius-sm); padding: 11px 36px 11px 14px; cursor: pointer;
}

/* ---- Pagination ---- */
.woocommerce nav.woocommerce-pagination ul { border: none; gap: 8px; display: flex; justify-content: center; }
.woocommerce nav.woocommerce-pagination ul li { border: none; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  min-width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--cream-300);
  border-radius: var(--radius-sm); color: var(--charcoal); padding: 0 12px;
}
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--primary-red); color: #fff; border-color: var(--primary-red); }

/* ---- Single product ---- */
.dehleez-woo { overflow-x: clip; }
/* Hide Storefront's prev/next product pagination (shows adjacent thumbnails at edges) */
.storefront-product-pagination, .single-product nav.storefront-product-pagination { display: none !important; }
/* MAIN product only — scope with `.shop-wrap >` so these grid rules never hit
   the related-product cards, which also carry the `product` class. */
.single-product .shop-wrap > div.product { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px,4vw,56px); align-items: start; }
.single-product .shop-wrap > div.product .woocommerce-product-gallery {
  grid-column: 1; grid-row: 1;
  width: 100% !important; float: none !important; /* beat Storefront's 41% float */
  position: sticky; top: 120px; margin: 0;
}
.single-product .shop-wrap > div.product .summary.entry-summary {
  grid-column: 2; grid-row: 1; margin: 0;
  width: 100% !important; float: none !important;
}
.single-product .shop-wrap > div.product .woocommerce-tabs { grid-column: 1 / -1; margin-top: 24px; }
.single-product .shop-wrap > div.product .related.products,
.single-product .shop-wrap > div.product .up-sells { grid-column: 1 / -1; }
/* Gallery: one big white media card, image centered (no flexslider/zoom) */
.single-product .woocommerce-product-gallery { opacity: 1 !important; }
.single-product .woocommerce-product-gallery img { opacity: 1 !important; }
.single-product .woocommerce-product-gallery .zoomImg { display: none !important; }
.single-product .woocommerce-product-gallery__wrapper {
  background: var(--surface); border: 1px solid var(--cream-300); border-radius: var(--radius-lg);
  min-height: 560px; padding: 40px; margin: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.single-product .woocommerce-product-gallery__image,
.single-product .woocommerce-product-gallery__image a { display: block; }
.single-product .woocommerce-product-gallery__image img {
  max-height: 480px; width: auto; max-width: 100%; margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(63,30,12,0.16)); border-radius: 0;
}
.single-product .woocommerce-product-gallery__trigger { display: none; } /* zoom icon, zoom disabled */
.single-product .product_title { font-family: var(--font-display); font-size: clamp(32px,4vw,44px); color: var(--charcoal); margin: 6px 0 10px; }
.single-product .dehleez-eyebrow { font: var(--weight-semi) 11px/1 var(--font-body); letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-700); }
.single-product .dehleez-hindi { font: var(--weight-med) 15px/1 var(--font-body); color: var(--text-soft); margin: 0 0 14px; display: inline-flex; align-items: center; gap: 10px; }
.single-product div.product p.price, .single-product div.product span.price { color: var(--charcoal); font-family: var(--font-body); font-size: 28px; font-weight: 600; margin: 10px 0; }
.single-product div.product p.price del { color: var(--ink-400); font-size: 20px; font-weight: 500; }
.single-product div.product p.price ins { text-decoration: none; }
.single-product .woocommerce-product-details__short-description { color: var(--text-muted); margin: 14px 0 22px; }
.single-product .cart { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 22px 0; }
.single-product .product_meta { font-size: 13.5px; color: var(--text-soft); margin-top: 18px; }
.single-product .product_meta a { color: var(--text-muted); }
/* Delivery + trust chips injected by hook */
.dehleez-pdp-extra { margin: 18px 0; display: flex; flex-direction: column; gap: 12px; }
.dehleez-pdp-extra .delivery { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14px; }
.dehleez-pdp-extra .delivery svg { width: 20px; height: 20px; color: var(--primary-red); flex: none; }
.dehleez-pdp-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.dehleez-pdp-chips span { background: var(--cream-50); border: 1px solid var(--cream-300); border-radius: 999px; padding: 7px 13px; font-size: 12.5px; color: var(--text-muted); }
/* Tabs / accordions */
.woocommerce-tabs .wc-tabs li { background: transparent; border: none; }
.woocommerce-tabs .wc-tabs li a { color: var(--text-muted); font-weight: 600; }
.woocommerce-tabs .wc-tabs li.active a { color: var(--primary-red); }
.woocommerce-tabs .panel { color: var(--text-muted); }
/* Related products */
.related.products > h2, .upsells.products > h2, .cross-sells > h2 { font-family: var(--font-display); font-size: var(--fs-h2); text-align: center; margin: 48px 0 28px; }

/* ---- Quantity stepper ---- */
.woocommerce .quantity { display: inline-flex; align-items: center; border: 1.5px solid var(--cream-400); border-radius: var(--radius-sm); overflow: hidden; }
.woocommerce .quantity .qty { width: 52px; height: 48px; text-align: center; border: none; border-left: 1.5px solid var(--cream-300); border-right: 1.5px solid var(--cream-300); font: var(--weight-semi) 15px/1 var(--font-body); color: var(--charcoal); background: var(--surface); -moz-appearance: textfield; }
.woocommerce .quantity .qty::-webkit-outer-spin-button, .woocommerce .quantity .qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.woocommerce .quantity .qty-btn { width: 44px; height: 48px; background: var(--cream-50); border: none; cursor: pointer; color: var(--charcoal); font-size: 18px; display: grid; place-items: center; }
.woocommerce .quantity .qty-btn:hover { background: var(--cream-200); color: var(--primary-red); }

/* ---- Variations (e.g. Whole Black Pepper 50g/100g) ---- */
.woocommerce .variations { border: none; margin-bottom: 16px; }
.woocommerce .variations th, .woocommerce .variations td { border: none; padding: 6px 0; }
.woocommerce .variations select { font-family: var(--font-body); border: 1.5px solid var(--cream-400); border-radius: var(--radius-sm); padding: 12px 14px; background: var(--surface); }

/* ---- Forms: cart / checkout fields → design .field look ---- */
.woocommerce form .form-row { margin: 0 0 16px; }
.woocommerce form .form-row label { font: var(--weight-semi) 12.5px/1 var(--font-body); letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px; display: block; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea,
.woocommerce form .form-row select, .woocommerce .select2-container .select2-selection {
  font-family: var(--font-body); font-size: 15px; color: var(--charcoal); background: var(--surface);
  border: 1.5px solid var(--cream-400); border-radius: var(--radius-sm); padding: 13px 15px; line-height: 1.3;
}
.woocommerce form .form-row input.input-text:focus, .woocommerce form .form-row textarea:focus, .woocommerce form .form-row select:focus {
  outline: none; border-color: var(--primary-red); box-shadow: 0 0 0 3px rgba(164,30,34,0.12);
}
.select2-container--default .select2-selection--single { height: auto; }

/* ---- Cart ---- */
.woocommerce-cart .cart-collaterals, .woocommerce-checkout .woocommerce { }
.woocommerce table.shop_table { border: 1px solid var(--cream-300); border-radius: var(--radius-md); }
.woocommerce table.shop_table th { font-family: var(--font-body); font-weight: 600; color: var(--charcoal); }
.woocommerce .cart_totals h2, .woocommerce-checkout #order_review_heading { font-family: var(--font-display); font-size: var(--fs-h3); margin-bottom: 16px; }
.woocommerce-cart table.cart img { width: 72px; border-radius: var(--radius-sm); }

/* ---- Checkout layout ---- */
.woocommerce-checkout #customer_details { margin-bottom: 24px; }
.woocommerce-checkout #payment { background: var(--cream-50); border: 1px solid var(--cream-300); border-radius: var(--radius-md); }
.woocommerce-checkout #payment ul.payment_methods { border-bottom: 1px solid var(--cream-300); }
.woocommerce-checkout #payment div.payment_box { background: var(--surface); border-radius: var(--radius-sm); }
.woocommerce-checkout #payment div.payment_box::before { border-bottom-color: var(--surface); }

/* ---- Notices / messages ---- */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-top-color: var(--primary-red); background: var(--cream-50); color: var(--charcoal); border-radius: var(--radius-sm);
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--primary-red); }

/* ---- Sale flash badge on single ---- */
.woocommerce span.onsale { background: var(--primary-red); color: #fff; border-radius: 999px; font: var(--weight-bold) 11px/1 var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 12px; min-height: 0; min-width: 0; top: 18px; left: 18px; }

/* ---- Contact page ---- */
.contact-hero { background: var(--deep-red); color: var(--cream-100); text-align: center; position: relative; overflow: hidden; padding: clamp(56px,7vw,88px) 0; }
.contact-hero .ch-arch { position: absolute; right: -50px; top: 50%; transform: translateY(-50%); width: 380px; height: 460px; }
.contact-hero .ch-arch path { fill: none; stroke: rgba(201,162,75,0.16); stroke-width: 2; }
.contact-hero h1 { color: var(--cream-50); font-size: var(--fs-h1); margin: 16px 0 12px; }
.contact-hero p { color: rgba(251,243,226,0.82); max-width: 480px; margin: 0 auto; }
.contact-body { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(36px,5vw,72px); align-items: start; padding-top: clamp(40px,5vw,64px); padding-bottom: clamp(40px,5vw,64px); }
.cinfo-row { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; }
.cinfo-row .cic { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--primary-red); color: var(--primary-red); display: grid; place-items: center; flex: none; }
.cinfo-row .cic svg { width: 20px; height: 20px; }
.cinfo-row h4 { font: var(--weight-semi) 12px/1 var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 6px; }
.cinfo-row a, .cinfo-row span:not(.cic) { color: var(--charcoal); font-size: 16px; }
.contact-social { margin: 8px 0 26px; }
.contact-social a { border-color: var(--cream-400); }
.contact-social svg { color: var(--primary-red); }
.hours-card { background: var(--cream-50); border: 1px solid var(--cream-300); border-radius: var(--radius-md); padding: 22px 24px; }
.hours-card h4 { font: var(--weight-semi) 12px/1 var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-700); margin: 0 0 10px; }
.hours-card p { color: var(--text-muted); font-size: 14.5px; margin: 0; }
.form-card { background: var(--surface); border: 1px solid var(--cream-300); border-radius: var(--radius-lg); padding: clamp(24px,3vw,40px); box-shadow: var(--shadow-sm); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-notice { background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.3); color: var(--error); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 14px; margin: 0 0 18px; }
.hp-field { position: absolute !important; left: -9999px !important; }
.form-success { text-align: center; padding: 28px 8px; }
.form-success .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--veg-green); color: #fff; display: inline-grid; place-items: center; margin-bottom: 18px; }
.form-success .tick svg { width: 30px; height: 30px; }
.form-success h3 { font-size: var(--fs-h3); margin: 0 0 10px; }
.form-success p { color: var(--text-muted); margin: 0; }
@media (max-width: 860px) {
  .contact-body { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .single-product .shop-wrap > div.product { grid-template-columns: 1fr; }
  .single-product .shop-wrap > div.product .woocommerce-product-gallery { position: static; }
  .single-product .woocommerce-product-gallery__wrapper { min-height: 380px; padding: 24px; }
  .single-product .woocommerce-product-gallery__image img { max-height: 340px; }
  .shop-wrap { padding: 20px; }
  .page-wrap { padding: 28px 20px; }
}
