/* ============================================================
   WELLHAUS Child Theme for PrestaShop Hummingbird v2
   ============================================================
   Skandynawski minimalizm · Ciepłe kolory · Konturowe ikony
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ===== 1. CSS VARIABLES / DESIGN TOKENS ===== */

:root {
  /* Brand */
  --wh-navy: #252E4B;
  --wh-navy-dark: #1a2038;
  --wh-navy-light: #3A4470;
  --wh-navy-rgb: 37, 46, 75;

  /* Accent */
  --wh-teal: #2A8C7A;
  --wh-teal-light: #E0F2EE;
  --wh-warm: #C4826D;
  --wh-warm-light: #FAEFEB;
  --wh-sage: #8B9E82;
  --wh-sage-light: #EEF3EB;

  /* Surfaces */
  --wh-bg: #FFFFFF;
  --wh-bg-off: #F7F7F5;
  --wh-bg-warm: #FAF8F5;
  --wh-bg-cream: #F3EFE8;

  /* Text */
  --wh-text: #1a1a1a;
  --wh-text-sec: #555555;
  --wh-text-muted: #999999;

  /* Borders & Shadows */
  --wh-border: #e8e8e6;
  --wh-shadow-sm: 0 2px 8px rgba(var(--wh-navy-rgb), 0.04);
  --wh-shadow-md: 0 8px 24px rgba(var(--wh-navy-rgb), 0.06);
  --wh-shadow-lg: 0 16px 48px rgba(var(--wh-navy-rgb), 0.08);

  /* Radius */
  --wh-radius: 16px;
  --wh-radius-sm: 10px;
  --wh-radius-xs: 6px;
  --wh-radius-pill: 100px;

  --navy: var(--wh-navy);
  --navy-dark: var(--wh-navy-dark);
  --navy-light: var(--wh-navy-light);
  --teal: var(--wh-teal);
  --teal-light: var(--wh-teal-light);
  --warm: var(--wh-warm);
  --warm-light: var(--wh-warm-light);
  --sage: var(--wh-sage);
  --sage-light: var(--wh-sage-light);
  --bg: var(--wh-bg);
  --bg-off: var(--wh-bg-off);
  --bg-warm: var(--wh-bg-warm);
  --text: var(--wh-text);
  --text-sec: var(--wh-text-sec);
  --text-muted: var(--wh-text-muted);
  --border: var(--wh-border);
  --radius: var(--wh-radius);

  /* Transitions */
  --wh-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --wh-duration: 0.3s;

  /* ---- Bootstrap overrides ---- */
  --bs-primary: var(--wh-navy);
  --bs-primary-rgb: var(--wh-navy-rgb);
  --bs-link-color: var(--wh-navy);
  --bs-link-hover-color: var(--wh-navy-light);
  --bs-body-font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bs-body-color: var(--wh-text);
  --bs-body-bg: var(--wh-bg);
  --bs-border-color: var(--wh-border);
  --bs-border-radius: var(--wh-radius-sm);
  --bs-border-radius-lg: var(--wh-radius);
  --bs-border-radius-sm: var(--wh-radius-xs);
}


/* ===== 2. GLOBAL TYPOGRAPHY & RESET ===== */

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--wh-text);
  background: var(--wh-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--wh-navy);
  line-height: 1.2;
}

a {
  color: var(--wh-navy);
  text-decoration: none;
  transition: color var(--wh-duration);
}
a:hover { color: var(--wh-navy-light); }

::selection {
  background: var(--wh-navy);
  color: #fff;
}


/* ===== 3. HEADER / NAVIGATION ===== */

#header {
  background: var(--wh-bg);
  border-bottom: 1px solid var(--wh-border);
  box-shadow: none;
  transition: box-shadow var(--wh-duration);
}

/* Promo bar (displayBanner hook) */
.header-banner,
#header .header-banner {
  background: var(--wh-navy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 10px 20px;
  text-align: center;
}
.header-banner a { color: #fff; text-decoration: underline; font-weight: 600; }

/* Logo area */
.header__logo img { max-height: 36px; }

/* Navigation links */
.header__nav,
#_desktop_top_menu {
  font-size: 0.87rem;
  font-weight: 500;
}
#_desktop_top_menu a,
.header__nav a {
  color: var(--wh-text);
  padding: 8px 0;
  position: relative;
  transition: color var(--wh-duration);
}
#_desktop_top_menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--wh-navy);
  transition: width var(--wh-duration);
}
#_desktop_top_menu a:hover { color: var(--wh-navy); }
#_desktop_top_menu a:hover::after { width: 100%; }

/* Dropdown menus */
.top-menu .sub-menu,
.dropdown-menu {
  border: 1px solid var(--wh-border);
  border-radius: var(--wh-radius-sm);
  box-shadow: var(--wh-shadow-md);
  padding: 16px;
  background: #fff;
}

/* Cart / User icons */
.header__right .cart-preview,
.header__right .user-info,
.header__right .blockcart,
.header__right .header__search {
  color: var(--wh-navy);
}
.header__right svg,
.header__right i {
  font-size: 1.15rem;
}

/* Cart count badge */
.cart-products-count,
.blockcart .cart-products-count {
  background: var(--wh-navy);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Search bar */
.search-widget form input[type="text"],
.header__search input {
  border: 1.5px solid var(--wh-border);
  border-radius: var(--wh-radius-pill);
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.88rem;
  transition: border-color var(--wh-duration);
  background: var(--wh-bg-off);
}
.search-widget form input:focus,
.header__search input:focus {
  border-color: var(--wh-navy);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--wh-navy-rgb), 0.08);
}
.search-widget form button,
.header__search button {
  background: var(--wh-navy);
  color: #fff;
  border-radius: var(--wh-radius-pill);
  border: none;
  padding: 10px 20px;
}

/* Sticky header shadow on scroll */
#header.is-sticky,
.header--sticky {
  box-shadow: 0 2px 20px rgba(var(--wh-navy-rgb), 0.06);
}


/* ===== MAIN NAV (fixed makieta links) ===== */
.wh-main-nav { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.wh-main-nav .ps-mainmenu__tree-item { margin: 0; }
.wh-main-nav .ps-mainmenu__tree-item-wrapper { padding: 0; }
.wh-main-nav .ps-mainmenu__tree-link {
  font-size: 0.87rem; font-weight: 500; color: var(--wh-text); padding: 8px 0;
  position: relative; background: none; border: none;
}
.wh-main-nav .ps-mainmenu__tree-link::after {
  content: ''; position: absolute; bottom: 2px; left: 0; width: 0; height: 1.5px;
  background: var(--wh-navy); transition: width var(--wh-duration);
}
.wh-main-nav .ps-mainmenu__tree-link:hover { color: var(--wh-navy); }
.wh-main-nav .ps-mainmenu__tree-link:hover::after { width: 100%; }


/* ===== 4. BUTTONS ===== */

.btn-primary,
.btn-primary:active,
.btn-primary:focus,
button.btn-primary {
  background: var(--wh-navy);
  border-color: var(--wh-navy);
  color: #fff;
  border-radius: var(--wh-radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  transition: all var(--wh-duration) var(--wh-ease);
  box-shadow: none;
}
.btn-primary:hover {
  background: var(--wh-navy-light);
  border-color: var(--wh-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--wh-navy-rgb), 0.18);
}

.btn-secondary,
.btn-outline-primary {
  background: transparent;
  border: 1.5px solid var(--wh-navy);
  color: var(--wh-navy);
  border-radius: var(--wh-radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  transition: all var(--wh-duration);
}
.btn-secondary:hover,
.btn-outline-primary:hover {
  background: var(--wh-navy);
  color: #fff;
}

.btn-success,
.add-to-cart,
button.add-to-cart {
  background: var(--wh-navy);
  border-color: var(--wh-navy);
  border-radius: var(--wh-radius-pill);
  font-weight: 600;
  padding: 14px 32px;
  transition: all var(--wh-duration) var(--wh-ease);
}
.btn-success:hover,
.add-to-cart:hover {
  background: var(--wh-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--wh-navy-rgb), 0.18);
}

/* Force makieta pill radius on all CTA buttons (hummingbird .btn sets its own
   --bs-btn-border-radius locally, so override the var AND the property) */
.btn,
.btn-primary, .btn-secondary, .btn-tertiary,
.btn-outline-primary, .btn-outline-secondary,
.btn-success, button.btn-primary, .add-to-cart,
.wh-btn-primary, .wh-btn-secondary, .wh-btn-outline-white {
  --bs-btn-border-radius: var(--wh-radius-pill);
  border-radius: var(--wh-radius-pill) !important;
}
/* keep genuinely square/icon buttons from becoming pills where it would look odd */
.btn-square-icon,
.product__quantity .btn,
.cart-overview .product-line__quantity-button .btn,
.wh-pdp-qty-ctrl button,
.wh-cart-qty-mini button {
  border-radius: var(--wh-radius-sm) !important;
}
.wh-prod-cart-btn { border-radius: 50% !important; }


/* ===== 5. HOMEPAGE ===== */

/* Featured products / product slider */
.featured-products,
.product-accessories,
.product-miniature-grid {
  padding: 64px 0;
}
.featured-products .products-section-title,
.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--wh-navy);
  text-align: center;
  margin-bottom: 40px;
}

/* Custom homepage banner area */
.carousel,
.custom-homepage-banner {
  border-radius: var(--wh-radius);
  overflow: hidden;
}
.carousel .carousel-item img {
  border-radius: var(--wh-radius);
}


/* ===== 6. PRODUCT CARDS (LISTING & WIDGETS) ===== */

.product-miniature,
.js-product-miniature {
  background: #fff;
  border: 1px solid var(--wh-border);
  border-radius: var(--wh-radius);
  overflow: hidden;
  transition: all 0.4s var(--wh-ease);
  position: relative;
}
.product-miniature:hover {
  transform: translateY(-6px);
  box-shadow: var(--wh-shadow-lg);
  border-color: transparent;
}

/* Product thumbnail */
.product-miniature .thumbnail-container,
.product-miniature .product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--wh-bg-off);
  border-radius: var(--wh-radius) var(--wh-radius) 0 0;
}
.product-miniature .thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--wh-ease);
}
.product-miniature:hover .thumbnail-container img {
  transform: scale(1.05);
}

/* Product info area */
.product-miniature .product-description,
.product-miniature .product-title {
  padding: 16px 20px 4px;
}
.product-miniature .product-title a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--wh-navy);
  line-height: 1.4;
}

/* Price */
.product-miniature .product-price-and-shipping {
  padding: 0 20px 16px;
}
.product-miniature .price,
.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wh-navy);
}
.product-miniature .regular-price {
  font-size: 0.82rem;
  color: var(--wh-text-muted);
  text-decoration: line-through;
}
.product-miniature .discount-percentage,
.discount-percentage,
.product-flag {
  background: var(--wh-warm);
  color: #fff;
  border-radius: var(--wh-radius-xs);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.product-flag.new {
  background: var(--wh-teal);
}
.product-flag.on-sale {
  background: var(--wh-warm);
}

/* Quick view button */
.product-miniature .quick-view,
.quick-view {
  background: var(--wh-navy);
  color: #fff;
  border-radius: var(--wh-radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  border: none;
  opacity: 0;
  transition: opacity var(--wh-duration);
}
.product-miniature:hover .quick-view { opacity: 1; }

/* Star ratings */
.star-content .star,
.comments-note .star-on {
  color: #F4B740;
}


/* ===== 7. CATEGORY / LISTING PAGE ===== */

/* Category header */
.block-category,
#category-description {
  background: var(--wh-bg-off);
  border-radius: var(--wh-radius);
  padding: 40px;
  margin-bottom: 32px;
  border: none;
}
.block-category h1,
.category-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--wh-navy);
  margin-bottom: 12px;
}
.block-category #category-description p,
.category-header p {
  font-size: 0.95rem;
  color: var(--wh-text-sec);
  line-height: 1.7;
}

/* Sort / filter bar */
.sort-by-row,
.products-sort-order,
.total-products {
  font-size: 0.85rem;
  color: var(--wh-text-sec);
}
.sort-by-row select,
.products-sort-order select {
  border: 1.5px solid var(--wh-border);
  border-radius: var(--wh-radius-sm);
  padding: 8px 16px;
  font-family: inherit;
  font-size: 0.85rem;
  background: #fff;
}

/* Faceted search / filters */
#search_filters,
.faceted-search {
  background: #fff;
  border: 1px solid var(--wh-border);
  border-radius: var(--wh-radius);
  padding: 24px;
}
#search_filters .facet-title,
.faceted-search .facet-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wh-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
#search_filters .facet-label a,
.faceted-search .facet-label a {
  font-size: 0.85rem;
  color: var(--wh-text-sec);
}
.facet .custom-checkbox input[type="checkbox"]:checked + span {
  background: var(--wh-navy);
  border-color: var(--wh-navy);
}

/* Active filters */
.active-filter-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wh-navy);
}
.active-filters .filter-block {
  background: var(--wh-bg-off);
  border-radius: var(--wh-radius-xs);
  padding: 4px 12px;
  font-size: 0.78rem;
}

/* Pagination */
.pagination .page-item .page-link {
  border: 1px solid var(--wh-border);
  border-radius: var(--wh-radius-xs);
  color: var(--wh-navy);
  font-weight: 500;
  margin: 0 2px;
  transition: all var(--wh-duration);
}
.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
  background: var(--wh-navy);
  border-color: var(--wh-navy);
  color: #fff;
}


/* ===== 8. PRODUCT DETAIL PAGE ===== */

/* Product gallery */
.product-cover {
  border-radius: var(--wh-radius);
  overflow: hidden;
  background: var(--wh-bg-off);
}
.product-cover img {
  border-radius: var(--wh-radius);
}
.product-images > li .thumb-container img {
  border-radius: var(--wh-radius-xs);
  border: 2px solid transparent;
  transition: border-color var(--wh-duration);
}
.product-images > li.selected .thumb-container img,
.product-images > li:hover .thumb-container img {
  border-color: var(--wh-navy);
}

/* Product title & meta */
.product-detail h1,
.product__name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wh-navy);
  line-height: 1.25;
  margin-bottom: 12px;
}

.product-prices .current-price .price,
.product__price .current-price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--wh-navy);
}
.product-prices .regular-price {
  color: var(--wh-text-muted);
  text-decoration: line-through;
  font-size: 1rem;
}
.product-discount .discount {
  background: var(--wh-warm);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--wh-radius-xs);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Quantity selector */
.product-quantity .qty,
.qty input[type="number"],
input.js-cart-line-product-quantity {
  border: 1.5px solid var(--wh-border);
  border-radius: var(--wh-radius-sm);
  text-align: center;
  font-weight: 600;
  font-family: inherit;
  width: 64px;
  height: 44px;
}
.product-quantity .input-group-btn .btn,
.qty .btn {
  background: var(--wh-bg-off);
  border: 1.5px solid var(--wh-border);
  color: var(--wh-navy);
  border-radius: var(--wh-radius-sm);
}

/* Add to cart */
.product-add-to-cart .add-to-cart {
  font-size: 1rem;
  padding: 16px 40px;
}

/* Product tabs */
.product-tabs .nav-tabs,
.tabs .nav-tabs {
  border-bottom: 2px solid var(--wh-border);
}
.product-tabs .nav-link,
.tabs .nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--wh-text-muted);
  border: none;
  padding: 12px 20px;
  position: relative;
  transition: color var(--wh-duration);
}
.product-tabs .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--wh-navy);
  transition: width var(--wh-duration);
}
.product-tabs .nav-link.active,
.tabs .nav-link.active {
  color: var(--wh-navy);
  background: transparent;
  border: none;
}
.product-tabs .nav-link.active::after { width: 100%; }

.product-tabs .tab-pane,
.tabs .tab-pane {
  padding: 24px 0;
  font-size: 0.92rem;
  color: var(--wh-text-sec);
  line-height: 1.8;
}

/* Product features table */
.product-features .data-sheet {
  border-radius: var(--wh-radius-sm);
  overflow: hidden;
}
.product-features .data-sheet dt,
.product-features .data-sheet dd {
  padding: 12px 16px;
  font-size: 0.85rem;
}
.product-features .data-sheet dt {
  background: var(--wh-bg-off);
  color: var(--wh-navy);
  font-weight: 600;
}

/* Social sharing */
.social-sharing li a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wh-bg-off);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--wh-duration);
}
.social-sharing li a:hover {
  background: var(--wh-navy);
  color: #fff;
}


/* ===== 9. CART PAGE ===== */

.cart-grid-body {
  background: #fff;
  border: 1px solid var(--wh-border);
  border-radius: var(--wh-radius);
  padding: 32px;
}

.cart-item {
  border-bottom: 1px solid var(--wh-border);
  padding: 20px 0;
}
.cart-item:last-child { border-bottom: none; }

.cart-item .product-line-info .label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--wh-navy);
}
.cart-item .product-price {
  font-weight: 700;
  color: var(--wh-navy);
}

/* Cart summary */
.cart-summary,
.cart-grid-right {
  background: var(--wh-bg-off);
  border: 1px solid var(--wh-border);
  border-radius: var(--wh-radius);
  padding: 32px;
}
.cart-summary .cart-summary-line {
  font-size: 0.9rem;
  padding: 8px 0;
}
.cart-summary .cart-total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wh-navy);
  border-top: 2px solid var(--wh-border);
  padding-top: 16px;
  margin-top: 8px;
}

/* Promo code input */
.promo-code input {
  border: 1.5px solid var(--wh-border);
  border-radius: var(--wh-radius-pill) 0 0 var(--wh-radius-pill);
  padding: 12px 20px;
  font-family: inherit;
}
.promo-code .btn {
  border-radius: 0 var(--wh-radius-pill) var(--wh-radius-pill) 0;
}


/* ===== 10. CHECKOUT ===== */

.checkout-step {
  background: #fff;
  border: 1px solid var(--wh-border);
  border-radius: var(--wh-radius);
  margin-bottom: 20px;
  padding: 32px;
}
.checkout-step .step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wh-navy);
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkout-step .step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wh-navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.checkout-step.-complete .step-number {
  background: var(--wh-teal);
}

/* Form fields */
.form-control,
input.form-control,
select.form-control,
textarea.form-control {
  border: 1.5px solid var(--wh-border);
  border-radius: var(--wh-radius-sm);
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--wh-duration), box-shadow var(--wh-duration);
  background: #fff;
}
.form-control:focus {
  border-color: var(--wh-navy);
  box-shadow: 0 0 0 3px rgba(var(--wh-navy-rgb), 0.08);
  outline: none;
}

label,
.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--wh-navy);
  margin-bottom: 6px;
}

/* Payment options */
.payment-options .payment-option {
  border: 1.5px solid var(--wh-border);
  border-radius: var(--wh-radius-sm);
  padding: 16px;
  margin-bottom: 8px;
  transition: all var(--wh-duration);
}
.payment-options .payment-option:hover,
.payment-options .payment-option.selected {
  border-color: var(--wh-navy);
  background: rgba(var(--wh-navy-rgb), 0.02);
}

/* Order confirmation */
#order-confirmation .card {
  border-radius: var(--wh-radius);
  border: 1px solid var(--wh-border);
}
.order-confirmation-table {
  border-radius: var(--wh-radius-sm);
  overflow: hidden;
}


/* ===== 11. CUSTOMER ACCOUNT ===== */

.my-account .links a,
.page-my-account .links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--wh-border);
  border-radius: var(--wh-radius);
  font-weight: 600;
  color: var(--wh-navy);
  transition: all var(--wh-duration);
}
.my-account .links a:hover {
  border-color: var(--wh-navy);
  background: rgba(var(--wh-navy-rgb), 0.02);
  transform: translateY(-2px);
  box-shadow: var(--wh-shadow-sm);
}
.my-account .links a i,
.my-account .links a svg {
  font-size: 1.4rem;
  color: var(--wh-navy);
}

/* Order history */
.order-history table,
.table {
  border-radius: var(--wh-radius-sm);
  overflow: hidden;
}
.table thead th {
  background: var(--wh-bg-off);
  color: var(--wh-navy);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  padding: 14px 16px;
}
.table td {
  font-size: 0.88rem;
  padding: 14px 16px;
  border-color: var(--wh-border);
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: rgba(var(--wh-navy-rgb), 0.015);
}


/* ===== 12. CMS PAGES (About, Contact etc.) ===== */

.page-cms .page-header h1,
.cms-page h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--wh-navy);
  margin-bottom: 24px;
}
.page-cms .page-content,
.cms-page .page-content {
  font-size: 0.95rem;
  color: var(--wh-text-sec);
  line-height: 1.8;
  max-width: 800px;
}
.page-cms .page-content h2 {
  font-size: 1.4rem;
  color: var(--wh-navy);
  margin-top: 40px;
  margin-bottom: 16px;
}
.page-cms .page-content h3 {
  font-size: 1.1rem;
  color: var(--wh-navy);
  margin-top: 28px;
  margin-bottom: 12px;
}


/* ===== 13. CONTACT PAGE ===== */

.contact-form {
  background: #fff;
  border: 1px solid var(--wh-border);
  border-radius: var(--wh-radius);
  padding: 40px;
  max-width: 700px;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-rich {
  background: var(--wh-bg-off);
  border-radius: var(--wh-radius);
  padding: 40px;
}
.contact-rich h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wh-navy);
  margin-bottom: 20px;
}
.contact-rich .block .data {
  font-size: 0.9rem;
  color: var(--wh-text-sec);
  line-height: 1.7;
}


/* ===== 14. FOOTER ===== */

/* Real hummingbird footer: .footer__before (light band: social + newsletter)
   + .footer__main (dark, columns). Target REAL classes only. */
.footer__main {
  background: var(--wh-navy-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 64px 0 32px;
}
.footer__main .footer__main-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px 32px;
  margin-bottom: 24px;
}
/* neutralise Bootstrap col widths; equal flexible columns */
.footer__main .footer__main-top > [class*="col-"] {
  flex: 1 1 170px;
  width: auto;
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
.footer__main .footer__brand-col { flex: 1.6 1 240px; }
.footer__main .footer-block { margin-bottom: 0; }
@media (max-width: 575px) {
  .footer__main .footer__main-top > [class*="col-"] { flex-basis: 45%; }
}
.footer__main .footer-block__title,
.footer__main .footer-block__title a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}
.footer__main .footer-block__list { padding: 0; margin: 0; list-style: none; }
.footer__main .footer-block__list a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  padding-block: 5px;
  transition: color var(--wh-duration);
}
.footer__main .footer-block__list a:hover { color: #fff; }

/* Brand column (makieta) */
.footer__brand-col .wh-footer-brand {
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 16px; color: #fff;
}
.footer__brand-col .wh-footer-desc {
  font-size: 0.82rem; color: rgba(255, 255, 255, 0.45); line-height: 1.7; max-width: 280px;
}

/* Copyright row */
.footer__main .copyright,
.footer__copyright {
  font-size: 0.72rem; color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px; margin-top: 24px;
}

/* footer__before = light band (newsletter + social), makieta look */
.footer__before { background: var(--wh-bg-off); border-top: 1px solid var(--wh-border); }
.footer__before .ps-emailsubscription { background: transparent !important; padding: 56px 20px !important; }
/* center newsletter like makieta (heading + form stacked, centered) */
.footer__before .ps-emailsubscription .row { justify-content: center !important; text-align: center; }
.footer__before .ps-emailsubscription .h3 {
  flex: 0 0 100% !important; max-width: 100% !important;
  font-size: 1.3rem !important; font-weight: 700 !important; color: var(--wh-navy) !important;
  margin: 0 auto 20px !important;
}
.footer__before .ps-emailsubscription .h3::after {
  content: "Porady o porządku w domu, premiery produktów i 10% rabatu na pierwsze zakupy.";
  display: block; font-size: 0.9rem; font-weight: 400; color: var(--wh-text-sec); margin-top: 8px;
}
.footer__before .ps-emailsubscription .col-lg-6 {
  flex: 0 0 100% !important; max-width: 520px !important; margin: 0 auto;
}
.footer__before .ps-emailsubscription .d-flex { max-width: 480px; margin: 0 auto; }
.footer__before .ps-emailsubscription .fs-6 { text-align: left; max-width: 480px; margin: 10px auto 0; }
.footer__before .ps-emailsubscription input[type="email"] {
  border: 1.5px solid var(--wh-border); border-radius: var(--wh-radius-pill);
  padding: 12px 20px; font-family: inherit;
}
.footer__before .ps-emailsubscription .btn {
  border-radius: var(--wh-radius-pill); background: var(--wh-navy); border-color: var(--wh-navy); color: #fff;
}
.footer__before .ps-socialfollow a { color: var(--wh-navy); }


/* ===== 15. BREADCRUMB ===== */

.breadcrumb {
  background: transparent;
  padding: 16px 0;
  font-size: 0.78rem;
}
.breadcrumb li {
  color: var(--wh-text-muted);
}
.breadcrumb li a {
  color: var(--wh-text-muted);
  transition: color var(--wh-duration);
}
.breadcrumb li a:hover {
  color: var(--wh-navy);
}
.breadcrumb li::after,
.breadcrumb .breadcrumb-separator {
  color: var(--wh-text-muted);
  margin: 0 8px;
}


/* ===== 16. ALERTS & NOTIFICATIONS ===== */

.alert {
  border-radius: var(--wh-radius-sm);
  font-size: 0.88rem;
  padding: 16px 20px;
  border: none;
}
.alert-success {
  background: var(--wh-teal-light);
  color: var(--wh-teal);
}
.alert-danger {
  background: var(--wh-warm-light);
  color: #c0392b;
}
.alert-info {
  background: #EEF2F7;
  color: var(--wh-navy);
}
.alert-warning {
  background: #FFF8E1;
  color: #8B6914;
}


/* ===== 17. MODALS ===== */

.modal-content {
  border-radius: var(--wh-radius);
  border: none;
  box-shadow: var(--wh-shadow-lg);
}
.modal-header {
  border-bottom: 1px solid var(--wh-border);
  padding: 24px;
}
.modal-header .modal-title {
  font-weight: 700;
  color: var(--wh-navy);
}
.modal-body {
  padding: 24px;
}
.modal-footer {
  border-top: 1px solid var(--wh-border);
  padding: 16px 24px;
}


/* ===== 18. MISC / UTILITIES ===== */

/* Cards */
.card {
  border: 1px solid var(--wh-border);
  border-radius: var(--wh-radius);
  box-shadow: none;
}
.card-header {
  background: var(--wh-bg-off);
  border-bottom: 1px solid var(--wh-border);
  font-weight: 600;
  color: var(--wh-navy);
}

/* Custom checkbox / radio */
.custom-checkbox input[type="checkbox"] + span,
.custom-radio input[type="radio"] + span {
  border: 1.5px solid var(--wh-border);
  border-radius: 4px;
  transition: all var(--wh-duration);
}
.custom-checkbox input[type="checkbox"]:checked + span {
  background: var(--wh-navy);
  border-color: var(--wh-navy);
}
.custom-radio input[type="radio"]:checked + span {
  border-color: var(--wh-navy);
}
.custom-radio input[type="radio"]:checked + span::after {
  background: var(--wh-navy);
}

/* Badges */
.badge {
  border-radius: var(--wh-radius-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.badge.badge-primary,
.badge.bg-primary {
  background: var(--wh-navy);
}

/* Progress bar */
.progress-bar {
  background: var(--wh-navy);
}

/* Tooltips */
.tooltip-inner {
  background: var(--wh-navy);
  border-radius: var(--wh-radius-xs);
  font-size: 0.78rem;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--wh-bg-off); }
::-webkit-scrollbar-thumb { background: rgba(var(--wh-navy-rgb), 0.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(var(--wh-navy-rgb), 0.3); }


/* ===== 19. 404 PAGE ===== */

.page-not-found {
  text-align: center;
  padding: 80px 20px;
}
.page-not-found h1 {
  font-size: 6rem;
  font-weight: 700;
  color: var(--wh-navy);
  opacity: 0.1;
  margin-bottom: -20px;
}
.page-not-found h2 {
  font-size: 1.6rem;
  color: var(--wh-navy);
  margin-bottom: 12px;
}
.page-not-found p {
  color: var(--wh-text-sec);
  margin-bottom: 28px;
}
.page-not-found .search-widget {
  max-width: 500px;
  margin: 0 auto;
}


/* ===== 20. RESPONSIVE ADJUSTMENTS ===== */

@media (max-width: 991px) {
  .product-miniature {
    border-radius: var(--wh-radius-sm);
  }
  .checkout-step {
    padding: 24px;
  }
  .cart-grid-body {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  h1 { font-size: 1.6rem; }
  .featured-products { padding: 40px 0; }
  .block-category { padding: 24px; }
  #footer { padding: 40px 0 24px; }
  .contact-form { padding: 24px; }
}


/* ===== 21. PRINT STYLES ===== */

@media print {
  #header, #footer, .breadcrumb { display: none; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* ===== WELLHAUS HERO SECTION ===== */

.wh-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #F5F3EF 0%, #EDE8E0 100%);
  min-height: 500px;
  padding: 60px 0;
}

.wh-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.wh-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(37, 46, 75, 0.06);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--wh-navy);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.wh-hero__badge svg {
  stroke: var(--wh-navy);
  fill: none;
}

.wh-hero__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--wh-navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.wh-hero__desc {
  font-size: 1rem;
  color: var(--wh-text-sec);
  margin-bottom: 32px;
  max-width: 440px;
  line-height: 1.7;
}

.wh-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wh-btn-primary svg {
  stroke: #fff;
  fill: none;
}

.wh-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wh-hero__img-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(37, 46, 75, 0.1);
  position: relative;
  background: linear-gradient(135deg, #E5DFD5, #D5CEC2);
}

.wh-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wh-hero__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wh-hero__placeholder svg {
  stroke: var(--wh-navy);
  opacity: 0.12;
}

.wh-hero__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--wh-navy);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== TRUST BAR ===== */

.wh-trust-bar {
  padding: 40px 0;
  background: var(--wh-bg);
  border-bottom: 1px solid var(--wh-border);
}

.wh-trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.wh-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.wh-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--wh-bg-off);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wh-trust-icon svg {
  stroke: var(--wh-navy);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wh-trust-text h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wh-navy);
  margin: 0;
}
.wh-trust-text p {
  font-size: 0.72rem;
  color: var(--wh-text-muted);
  margin: 0;
}

/* ===== HOMEPAGE SECTIONS ===== */

.page-content--home .featured-products,
.page-content--home .newproducts,
.page-content--home .bestsellers-products {
  padding: 64px 0;
}

.page-content--home .products-section-title,
.page-content--home h2.h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--wh-navy);
  text-align: center;
  margin-bottom: 40px;
}

/* Section labels */
.page-content--home .products-section-title::before {
  content: 'WELLHAUS';
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wh-warm);
  margin-bottom: 8px;
}

/* Products grid */
.page-content--home .products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
  .wh-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .wh-hero__desc {
    margin-left: auto;
    margin-right: auto;
  }
  .wh-hero__ctas {
    justify-content: center;
  }
  .wh-hero__img-wrap {
    max-width: 300px;
    margin: 0 auto;
  }
  .wh-trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .wh-hero {
    padding: 40px 0;
    min-height: auto;
  }
  .wh-trust-bar__inner {
    grid-template-columns: 1fr;
  }
  .wh-trust-item {
    justify-content: flex-start;
  }
}

/* ===== WELLHAUS PROMO BAR ===== */

.wh-promo-bar {
  background: var(--wh-navy);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.wh-promo-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 6px;
}
.wh-promo-bar a:hover {
  color: rgba(255,255,255,0.8);
}

/* ===== WELLHAUS HEADER EXTRA STYLES ===== */

/* Make sure header has proper z-index */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Header top bar (displayNav1, displayNav2) */
.header-top {
  background: var(--wh-bg-off);
  border-bottom: 1px solid var(--wh-border);
  padding: 8px 0;
  font-size: 0.82rem;
}
.header-top__left,
.header-top__right {
  display: flex;
  align-items: center;
}
.header-top__right {
  justify-content: flex-end;
  gap: 20px;
}

/* Header bottom (logo, menu, cart) */
.header-bottom {
  background: var(--wh-bg);
  padding: 12px 0;
}
.header-bottom__row {
  align-items: center;
}

/* Logo styling */
.header-bottom__logo img {
  max-height: 40px;
  width: auto;
}

/* Text logo fallback */
.header-bottom__logo a {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--wh-navy);
  text-transform: uppercase;
  text-decoration: none;
}

/* Header blocks (cart, user, etc.) */
.header-block {
  display: flex;
  align-items: center;
}
.header-block__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  color: var(--wh-navy);
  transition: background var(--wh-duration);
}
.header-block__action-btn:hover {
  background: var(--wh-bg-off);
}
.header-block__icon {
  font-size: 1.3rem;
}
.header-block__badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--wh-navy);
  color: #fff;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Search bar in header */
.header-bottom .search-widget,
#_desktop_ps_searchbar {
  flex: 1;
  max-width: 400px;
  margin: 0 32px;
}

/* Main menu styling */
.header-nav-full-width {
  background: var(--wh-bg);
  border-top: 1px solid var(--wh-border);
}

/* Customer sign in */
#_desktop_ps_customersignin .header-block__action-btn,
.ps-customer-signin a {
  color: var(--wh-navy);
}

/* Shopping cart */
#_desktop_ps_shoppingcart .header-block,
.blockcart {
  position: relative;
}

/* ===== CATEGORY GRID ===== */
.wh-categories {
  padding: 60px 0;
  background: #fff;
}

.wh-categories__header {
  text-align: center;
  margin-bottom: 40px;
}

.wh-categories__title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2D3E50;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}

.wh-categories__subtitle {
  font-size: 1rem;
  color: #64748B;
  margin: 0;
}

.wh-categories__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.wh-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.wh-category-card:hover {
  transform: translateY(-4px);
}

.wh-category-card__img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #F5F3EF;
  margin-bottom: 12px;
}

.wh-category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wh-category-card:hover .wh-category-card__img img {
  transform: scale(1.05);
}

.wh-category-card__title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D3E50;
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 1200px) {
  .wh-categories__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .wh-categories {
    padding: 40px 0;
  }
  
  .wh-categories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .wh-categories__title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .wh-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .wh-category-card__img {
    border-radius: 12px;
  }
  
  .wh-category-card__title {
    font-size: 0.8rem;
  }
}

/* ===== WELLHAUS PRODUCT PAGE FIXES ===== */

.page-product .product__category-products {
  margin: 32px 0;
}

.page-product .product__category-products .ps-categoryproducts {
  margin: 0;
}

.page-product .product__category-products .module-products {
  width: 100%;
}

@media (min-width: 992px) {
  .page-product .product__right {
    align-self: start;
    position: sticky;
    top: calc(var(--scroll-padding-top, 80px) + 16px);
    z-index: 2;
  }

  .page-product .product__bottom {
    display: block;
    margin-top: 24px;
  }

  .page-product .product__bottom-left,
  .page-product .product__bottom-right {
    margin-bottom: 32px;
  }
}

/* ===== WELLHAUS TRUST BAR GRID ===== */

.wh-trust-bar {
  padding: 32px 0;
}

.wh-trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.wh-trust-item {
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--wh-border);
  border-radius: var(--wh-radius-sm);
  background: var(--wh-bg);
  box-shadow: var(--wh-shadow-sm);
}

.wh-trust-text h4 {
  line-height: 1.25;
  margin-bottom: 4px;
}

.wh-trust-text p {
  line-height: 1.35;
}

@media (max-width: 991px) {
  .wh-trust-bar__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .wh-trust-bar {
    padding: 24px 0;
  }

  .wh-trust-bar__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wh-trust-item {
    padding: 16px;
  }
}

/* ===== WELLHAUS FOOTER BEFORE CLEANUP ===== */

.footer__before {
  padding: 0;
}

.footer__before .ps-socialfollow {
  padding: 14px 0 !important;
}

.footer__before .ps-socialfollow + .ps-emailsubscription {
  margin-top: 0;
}

/* ===== WELLHAUS V2 MOCKUP ALIGNMENT ===== */

.wh-section-label,
.wh-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 12px;
}

.wh-section-label--warm {
  color: var(--warm);
}

.wh-categories__title,
.section-title {
  letter-spacing: 0;
}

.wh-products-heading {
  text-align: center;
  margin-bottom: 40px;
}

.wh-products-heading .section-title {
  margin-bottom: 0;
}

.page-index .ps-bestsellers,
.page-index .featured-products {
  padding: 72px 0;
}

.wh-trust-bar {
  padding: 64px 40px;
  background: var(--bg-off);
}

.wh-trust-bar__inner.container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.wh-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-height: 100%;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wh-trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 46, 75, 0.06);
  border-color: transparent;
}

.wh-trust-icon {
  width: 52px;
  height: 52px;
  padding: 14px;
  background: var(--bg-off);
  border-radius: 14px;
  color: var(--navy);
  flex: 0 0 52px;
}

.wh-trust-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.wh-trust-text h4,
.blockreassurance .block-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 4px;
}

.wh-trust-text p,
.blockreassurance .block-content {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.page-index .blockreassurance:not(.blockreassurance--product),
.page-index #block-reassurance {
  padding: 64px 40px;
  background: var(--bg-off);
}

.page-index .blockreassurance:not(.blockreassurance--product) ul,
.page-index #block-reassurance ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  list-style: none;
}

.page-index .blockreassurance:not(.blockreassurance--product) li,
.page-index #block-reassurance li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-index .blockreassurance:not(.blockreassurance--product) li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 46, 75, 0.06);
  border-color: transparent;
}

.page-index .blockreassurance:not(.blockreassurance--product) li img,
.page-index .blockreassurance:not(.blockreassurance--product) li svg,
.page-index #block-reassurance li img,
.page-index #block-reassurance li svg {
  width: 52px;
  height: 52px;
  padding: 14px;
  background: var(--bg-off);
  border-radius: 14px;
  flex-shrink: 0;
}

.wh-banner-navy {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 52px 40px;
}

.wh-banner-navy h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}

.wh-banner-navy p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto 24px;
}

.wh-btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
}

.wh-btn-outline-white:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.wh-feature {
  padding: 80px 40px;
  background: var(--bg-off);
}

.wh-feature-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.wh-feature-img {
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #E5DFD5, #D5CEC2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 48px rgba(37, 46, 75, 0.06);
}

.wh-feature-img svg {
  width: 120px;
  height: 120px;
}

.wh-feature-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.25;
}

.wh-feature-text p {
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 28px;
}

.wh-feature-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.wh-stat {
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.wh-stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

.wh-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.page-product .product__container {
  align-items: flex-start;
}

.page-product .product__bottom {
  width: 100%;
  display: block;
  margin-top: 32px;
}

.page-product .product__bottom-left,
.page-product .product__bottom-right {
  width: 100%;
}

.product-tabs {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 32px;
  padding: 0 20px;
}

.product-tabs .nav-tabs {
  border-bottom: 2px solid var(--border);
}

.product-tabs .nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border: none;
  padding: 14px 24px;
  position: relative;
  background: transparent;
}

.product-tabs .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width 0.3s;
}

.product-tabs .nav-link.active {
  color: var(--navy);
  background: transparent;
}

.product-tabs .nav-link.active::after {
  width: 100%;
}

.product-tabs .tab-pane {
  padding: 24px 0;
  font-size: 0.92rem;
  color: var(--text-sec);
  line-height: 1.8;
}

.product-tabs__extra + .product-tabs__extra {
  margin-top: 24px;
}

.product-tabs__extra h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.wh-details-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.wh-details-list .details__item {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 20px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.wh-details-list .details__item:last-child {
  border-bottom: 0;
}

.wh-details-list .details__title {
  font-weight: 600;
  color: var(--navy);
}

.wh-pdp-features {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.wh-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 0.78rem;
  color: var(--text-sec);
  line-height: 1.35;
}

.wh-feat svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

.page-product .ps-viewedproduct .module-products__list,
.page-product .ps-viewedproduct .products,
.page-product .ps-viewedproduct .products-grid {
  justify-content: center;
}

@media (min-width: 992px) {
  .page-product .product__right,
  .product-information,
  .product-rightside {
    position: sticky;
    top: 80px;
    align-self: flex-start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: 2;
  }
}

@media (max-width: 1024px) {
  .wh-feature-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .wh-trust-bar,
  .page-index .blockreassurance:not(.blockreassurance--product),
  .page-index #block-reassurance,
  .wh-feature {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wh-trust-bar__inner.container,
  .page-index .blockreassurance:not(.blockreassurance--product) ul,
  .page-index #block-reassurance ul {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .wh-trust-item,
  .page-index .blockreassurance:not(.blockreassurance--product) li,
  .page-index #block-reassurance li {
    padding: 24px;
  }

  .wh-feature-stats,
  .wh-pdp-features {
    grid-template-columns: 1fr;
  }

  .product-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .product-tabs .nav-link {
    white-space: nowrap;
    padding: 12px 16px;
  }

  .wh-details-list .details__item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ============================================================
   WELLHAUS 1:1 COMPONENTS (ported from design makieta)
   Prefixed wh- to avoid Bootstrap/PrestaShop collisions.
   Container: max-width 1320px, padding 0 40px.
   ============================================================ */

.wh-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Shared section heads ---- */
.wh-section-header { text-align: center; margin-bottom: 48px; }
.wh-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 40px;
}

/* ---- Buttons (component versions) ---- */
.wh-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; background: var(--navy); color: #fff; border: none;
  border-radius: var(--radius-pill); font-size: 0.9rem; font-weight: 600;
  transition: all 0.3s var(--ease);
}
.wh-btn-primary:hover {
  background: var(--navy-light); color: #fff; transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--wh-navy-rgb), 0.18);
}
.wh-btn-primary svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 2; fill: none; }
.wh-btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy); border-radius: var(--radius-pill);
  font-size: 0.9rem; font-weight: 600; transition: all 0.3s;
}
.wh-btn-secondary:hover { background: var(--navy); color: #fff; }

/* ---- Breadcrumb ---- */
.wh-breadcrumb {
  padding: 16px 40px; font-size: 0.78rem; color: var(--text-muted);
  max-width: 1320px; margin: 0 auto;
}
.wh-breadcrumb a { color: var(--text-muted); }
.wh-breadcrumb a:hover { color: var(--navy); }
.wh-breadcrumb span { margin: 0 8px; color: var(--border); }

/* ============================================================
   PRODUCT CARD (used on home, listing, PDP related, search)
   ============================================================ */
.wh-prod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.wh-prod-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden; background: #fff;
  border: 1px solid var(--border); transition: all 0.4s var(--ease);
  cursor: pointer; position: relative;
}
.wh-prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(var(--wh-navy-rgb), 0.08);
  border-color: transparent;
}
.wh-prod-card-img {
  aspect-ratio: 1; background: var(--bg-off); display: flex;
  align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.wh-prod-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.wh-prod-card:hover .wh-prod-card-img img { transform: scale(1.05); }
.wh-prod-card-img svg { width: 72px; height: 72px; stroke: var(--navy); stroke-width: 0.8; fill: none; opacity: 0.15; }
.wh-prod-badge {
  position: absolute; top: 12px; left: 12px; background: var(--teal); color: #fff;
  padding: 4px 10px; border-radius: 6px; font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.03em; z-index: 1;
}
.wh-prod-badge--sale { background: var(--warm); }
.wh-prod-badge--new { background: var(--teal); }
.wh-prod-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.wh-prod-stars { color: #F4B740; font-size: 0.75rem; margin-bottom: 6px; letter-spacing: 1px; }
.wh-prod-stars span { color: var(--text-muted); font-size: 0.72rem; margin-left: 4px; letter-spacing: normal; }
.wh-prod-title { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; line-height: 1.4; }
.wh-prod-title a { color: inherit; }
.wh-prod-desc { font-size: 0.78rem; color: var(--text-sec); margin-bottom: 14px; line-height: 1.5; }
.wh-prod-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.wh-prod-price { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.wh-prod-price .wh-old, .wh-prod-price .old {
  font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through;
  font-weight: 400; margin-left: 6px;
}
.wh-prod-cart-btn {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy);
  border: none; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; flex-shrink: 0;
}
.wh-prod-cart-btn:hover { background: var(--navy-light); transform: scale(1.1); }
.wh-prod-cart-btn svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 2; fill: none; }
/* card flags as makieta badge (top-left), card add-to-cart form */
.wh-prod-card-img .product-flags {
  position: absolute; top: 12px; left: 12px; right: auto; margin: 0; padding: 0;
  list-style: none; display: flex; flex-direction: column; gap: 6px; z-index: 2;
}
.wh-prod-card-img .product-flags .badge {
  background: var(--teal); color: #fff; padding: 4px 10px; border-radius: 6px;
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em;
}
.wh-prod-card-img .product-flags .badge.discount,
.wh-prod-card-img .product-flags .badge.on-sale,
.wh-prod-card-img .product-flags .badge.reduction { background: var(--warm); }
.wh-prod-card-img .product-flags .badge.new { background: var(--teal); }
.wh-prod-card__actions { display: flex; align-items: center; }
.wh-prod-card__actions form { margin: 0; }
.wh-prod-card .quantity-button { display: none !important; }

/* ============================================================
   SHOP / CATEGORY (left sidebar + grid)
   ============================================================ */
.wh-shop-page { max-width: 1320px; margin: 0 auto; padding: 0 40px 80px; }
.wh-shop-header { margin-bottom: 32px; }
.wh-shop-header h1 { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.wh-shop-header p { font-size: 0.95rem; color: var(--text-sec); }
.wh-shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
.wh-shop-filters {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; position: sticky; top: 80px;
}
.wh-filter-group { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.wh-filter-group:last-child { border: none; margin: 0; padding: 0; }
.wh-filter-group h4, .wh-filter-group .facet-title {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--navy); margin-bottom: 14px;
}
.wh-filter-opt, .wh-filter-group .facet-label {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
  font-size: 0.85rem; color: var(--text-sec); cursor: pointer;
}
.wh-filter-opt input, .wh-filter-group input { accent-color: var(--navy); }
.wh-shop-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.wh-shop-count { font-size: 0.85rem; color: var(--text-muted); }
.wh-shop-sort select {
  padding: 8px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.82rem; background: #fff;
}
.wh-shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ---- Category page wiring (native facet markup + product grid) ---- */
.wh-shop-layout--nofilters { grid-template-columns: 1fr; }
.wh-shop-main { min-width: 0; }
.wh-shop-main .products {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
/* faceted-search module inside the makieta sidebar card */
.wh-shop-filters #search_filters,
.wh-shop-filters #search-filters,
.wh-shop-filters .faceted-search {
  background: transparent; border: none; border-radius: 0; padding: 0; box-shadow: none;
}
.wh-shop-filters .facet { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.wh-shop-filters .facet:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.wh-shop-filters .facet .facet-title,
.wh-shop-filters .facet .h6 {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--navy); margin-bottom: 14px;
}
.wh-shop-filters .facet-label { font-size: 0.85rem; color: var(--text-sec); }
.wh-shop-filters .facet-label a { color: var(--text-sec); }
.wh-shop-filters input[type="checkbox"], .wh-shop-filters input[type="radio"] { accent-color: var(--navy); }
/* products bar (count + sort) like makieta wh-shop-bar */
.wh-shop-main .products__selection {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.wh-shop-main .products__count { font-size: 0.85rem; color: var(--text-muted); }
.wh-shop-main .products__sort { display: flex; align-items: center; gap: 12px; }
/* category header like makieta shop-header */
.category__header { margin-bottom: 32px; }
.category__header .page-title,
.category__header h1 { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.category__description { font-size: 0.95rem; color: var(--text-sec); line-height: 1.7; max-width: 720px; }

/* Pagination */
.wh-pagination { display: flex; gap: 4px; justify-content: center; margin-top: 40px; }
.wh-pagination a, .wh-pagination .page-link {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 500; color: var(--navy);
}
.wh-pagination a.active, .wh-pagination .active .page-link {
  background: var(--navy); color: #fff; border-color: var(--navy);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.wh-pdp { padding: 0 40px 80px; max-width: 1320px; margin: 0 auto; }
.wh-pdp-grid { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.wh-pdp-gallery {
  border-radius: var(--radius); overflow: hidden; background: var(--bg-off);
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
}
.wh-pdp-gallery img { width: 100%; height: 100%; object-fit: cover; }
.wh-pdp-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.wh-pdp-thumb {
  width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--bg-off); border: 2px solid transparent; cursor: pointer;
}
.wh-pdp-thumb.active, .wh-pdp-thumb.selected { border-color: var(--navy); }
.wh-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.wh-pdp-info { position: sticky; top: 80px; }
.wh-pdp-brand { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.wh-pdp-name { font-size: 1.8rem; font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 12px; }
.wh-pdp-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 0.82rem; color: var(--text-muted); }
.wh-pdp-rating .wh-stars { color: #F4B740; letter-spacing: 1px; }
.wh-pdp-price-block { padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.wh-pdp-price { font-size: 2rem; font-weight: 700; color: var(--navy); }
.wh-pdp-old { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; margin-left: 8px; }
.wh-pdp-discount { display: inline-block; background: var(--warm); color: #fff; padding: 3px 10px; border-radius: 6px; font-size: 0.72rem; font-weight: 600; margin-left: 8px; }
.wh-pdp-desc { font-size: 0.92rem; color: var(--text-sec); line-height: 1.8; margin-bottom: 24px; }
.wh-pdp-variants { margin-bottom: 24px; }
.wh-pdp-variants label { font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; display: block; }
.wh-pdp-variant-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.wh-pdp-variant-btn {
  padding: 8px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: all 0.2s;
}
.wh-pdp-variant-btn.active, .wh-pdp-variant-btn.selected { border-color: var(--navy); color: var(--navy); }
.wh-pdp-qty { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.wh-pdp-qty label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.wh-pdp-qty-ctrl { display: flex; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.wh-pdp-qty-ctrl button { width: 40px; height: 40px; border: none; background: var(--bg-off); font-size: 1rem; font-weight: 600; color: var(--navy); }
.wh-pdp-qty-ctrl input { width: 48px; height: 40px; border: none; text-align: center; font-family: inherit; font-weight: 600; }
.wh-pdp-atc { width: 100%; margin-bottom: 12px; }
.wh-pdp-features { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.wh-pdp-feat { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-sec); }
.wh-pdp-feat svg { width: 16px; height: 16px; stroke: var(--teal); stroke-width: 2; fill: none; flex-shrink: 0; }

/* PDP tabs */
.wh-tabs-section { padding: 0 40px 80px; max-width: 1320px; margin: 0 auto; }
.wh-tab-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 32px; flex-wrap: wrap; }
.wh-tab-btn {
  padding: 14px 24px; border: none; background: none; font-size: 0.9rem;
  font-weight: 600; color: var(--text-muted); position: relative;
}
.wh-tab-btn::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--navy); transition: width 0.3s; }
.wh-tab-btn.active { color: var(--navy); }
.wh-tab-btn.active::after { width: 100%; }
.wh-tab-content { font-size: 0.92rem; color: var(--text-sec); line-height: 1.8; max-width: 800px; }
.wh-tab-pane { display: none; }
.wh-tab-pane.active { display: block; }

/* ---- PDP native-markup wiring to makieta look ---- */
@media (min-width: 992px) {
  .product__container.wh-pdp {
    display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start;
  }
}
.wh-pdp .product__left { min-width: 0; }
.wh-pdp .product__images,
.wh-pdp .product__carousel {
  border-radius: var(--radius); overflow: hidden; background: var(--bg-off);
}
.wh-pdp .product__carousel .carousel-item { aspect-ratio: 1; }
.wh-pdp .product__carousel .carousel-item img { width: 100%; height: 100%; object-fit: cover; }
.wh-pdp .product__thumbnails-list {
  display: flex; gap: 8px; margin-top: 12px; padding: 0; list-style: none; flex-wrap: wrap;
}
.wh-pdp .product__thumbnail {
  width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--bg-off); border: 2px solid transparent; padding: 0; cursor: pointer;
}
.wh-pdp .product__thumbnail.active { border-color: var(--navy); }
.wh-pdp .product__thumbnail img { width: 100%; height: 100%; object-fit: cover; }
/* price block */
.wh-pdp-info .product-prices {
  padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.wh-pdp-info .product__description-short { font-size: 0.92rem; color: var(--text-sec); line-height: 1.8; margin-bottom: 24px; }
/* variants as pills */
.wh-pdp-info .product-variants__label,
.wh-pdp-info .product-variants .control-label {
  font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; display: block;
}
.wh-pdp-info .product-variants__items,
.wh-pdp-info .product-variants ul { display: flex; gap: 8px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0 0 8px; }
.wh-pdp-info .product-variants label.attribute-name,
.wh-pdp-info .product-variants .input-container > label:not(.input-color) {
  padding: 8px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: all 0.2s; margin: 0;
}
.wh-pdp-info .product-variants input:checked + label.attribute-name,
.wh-pdp-info .product-variants input:checked ~ label { border-color: var(--navy); color: var(--navy); }
/* qty + add-to-cart */
.wh-pdp-info .product__actions-qty-add { display: flex; align-items: stretch; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.wh-pdp-info .product__quantity .quantity-button,
.wh-pdp-info .product__quantity { display: flex; }
.wh-pdp-info .product__add-to-cart { flex: 1; min-width: 220px; }
.wh-pdp-info .product__add-to-cart-button {
  width: 100%; justify-content: center; padding: 16px 32px; font-size: 1rem;
  border-radius: var(--radius-pill);
}
.wh-pdp-info .product__availability { margin: 8px 0 12px; font-size: 0.85rem; }

/* productvariantlinks swatches -> WELLHAUS (override module inline !important) */
.page-product .wh-pdp-variant-links { margin-bottom: 4px; }
.page-product .product-variants-item { margin-bottom: 20px !important; }
.page-product .product-variants-item .control-label {
  font-size: 0.82rem !important; font-weight: 600 !important; color: var(--wh-navy) !important;
  text-transform: none !important; letter-spacing: 0 !important; margin-bottom: 8px !important;
}
.page-product .product-variants-item a.attribute-radio__label {
  border: 1.5px solid var(--wh-border) !important;
  border-radius: var(--wh-radius-sm) !important;
  background: #fff !important; color: var(--wh-navy) !important;
  padding: 8px 14px !important; min-width: 0 !important;
  transition: all 0.2s !important;
}
.page-product .product-variants-item a.attribute-radio__label:hover {
  border-color: var(--wh-navy) !important;
}
.page-product .product-variants-item a.attribute-radio__label.active {
  border-color: var(--wh-navy) !important;
  background: rgba(var(--wh-navy-rgb), 0.04) !important;
  color: var(--wh-navy) !important;
}
.page-product .product-variants-item a.attribute-radio__label .attribute-radio__text {
  font-size: 0.82rem !important; font-weight: 500 !important; color: var(--wh-navy) !important;
}
.page-product .product-variants-item a.attribute-radio__label img.pvl-thumb {
  width: 48px !important; height: 48px !important; border-radius: var(--wh-radius-xs) !important;
}
.page-product .pvl-carousel-nav { border-radius: 50% !important; border-color: var(--wh-border) !important; }
.page-product .pvl-carousel-nav:hover { border-color: var(--wh-navy) !important; background: var(--wh-bg-off) !important; }
.page-product .pvl-carousel-nav svg { fill: var(--wh-navy) !important; }

/* ============================================================
   CART
   ============================================================ */
.wh-cart-page { padding: 0 40px 80px; max-width: 1100px; margin: 0 auto; }
.wh-cart-page h1 { font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 32px; }
.wh-cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.wh-cart-item { display: grid; grid-template-columns: 80px 1fr auto auto; gap: 20px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--border); }
.wh-cart-item-img { width: 80px; height: 80px; border-radius: var(--radius-sm); background: var(--bg-off); overflow: hidden; }
.wh-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.wh-cart-item-name { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.wh-cart-item-variant { font-size: 0.78rem; color: var(--text-muted); }
.wh-cart-qty-mini { display: flex; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-top: 8px; width: fit-content; }
.wh-cart-qty-mini button { width: 28px; height: 28px; border: none; background: var(--bg-off); color: var(--navy); }
.wh-cart-qty-mini span, .wh-cart-qty-mini input { width: 32px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 600; text-align: center; border: none; }
.wh-cart-item-price { font-size: 0.95rem; font-weight: 700; color: var(--navy); text-align: right; }
.wh-cart-item-remove { background: none; border: none; padding: 8px; }
.wh-cart-item-remove svg { width: 18px; height: 18px; stroke: var(--text-muted); stroke-width: 1.5; fill: none; }
.wh-cart-item-remove:hover svg { stroke: #c0392b; }
.wh-cart-summary { background: var(--bg-off); border-radius: var(--radius); padding: 32px; position: sticky; top: 80px; }
.wh-cart-summary h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.wh-cart-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.88rem; color: var(--text-sec); }
.wh-cart-total { display: flex; justify-content: space-between; padding: 16px 0 0; border-top: 2px solid var(--border); margin-top: 8px; font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.wh-cart-promo { display: flex; gap: 8px; margin: 20px 0; }
.wh-cart-promo input { flex: 1; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-pill); font-family: inherit; font-size: 0.85rem; }
.wh-cart-promo button { padding: 12px 20px; background: #fff; border: 1.5px solid var(--navy); color: var(--navy); border-radius: var(--radius-pill); font-weight: 600; font-size: 0.82rem; }
.wh-cart-ship-note { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--teal); margin-top: 12px; padding: 12px; background: var(--teal-light); border-radius: var(--radius-sm); }
.wh-cart-ship-note svg { width: 16px; height: 16px; stroke: var(--teal); stroke-width: 2; fill: none; flex-shrink: 0; }

/* ---- Cart page native-markup wiring (makieta look) ---- */
@media (min-width: 992px) {
  .page-cart .cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
  .page-cart .cart-grid > [class*="col-"] { width: 100%; max-width: 100%; flex: none; }
}
.page-cart .cart-grid__content h1,
.page-cart .cart-grid .page-title { font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 32px; }
.page-cart .cart-grid__aside-wrapper {
  background: var(--bg-off); border-radius: var(--radius); padding: 32px; position: sticky; top: 80px;
}
.page-cart .cart-grid__aside-wrapper h2 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
/* cart line -> wh-cart-item */
.page-cart .cart-overview .product-line,
.cart-overview .product-line {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 20px; align-items: center;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.cart-overview .product-line:last-child { border-bottom: none; }
.cart-overview .product-line__image { width: 80px; }
.cart-overview .product-line__image img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); background: var(--bg-off); }
.cart-overview .product-line__content { grid-column: 2 / 4; display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; }
.cart-overview .product-line__content-left { min-width: 0; }
.cart-overview .product-line__title { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.cart-overview .product-line__item--info { font-size: 0.78rem; color: var(--text-muted); }
.cart-overview .product-line__item--prices { font-size: 0.85rem; color: var(--text-sec); margin-top: 4px; }
.cart-overview .product-line__content-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-overview .product-line__quantity-button { display: flex; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.cart-overview .product-line__quantity-button .form-control { border: none; width: 44px; text-align: center; font-weight: 600; }
.cart-overview .product-line__quantity-button .btn { background: var(--bg-off); border: none; color: var(--navy); width: 32px; }
.cart-overview .product-line__price { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.cart-overview .product-line__actions { grid-column: 1 / 4; justify-self: end; }
.cart-overview .product-line__actions .js-remove-from-cart { font-size: 0.78rem; color: var(--text-muted); }
.cart-overview .product-line__actions .js-remove-from-cart:hover { color: #c0392b; }
/* summary lines */
.page-cart .cart-summary-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.88rem; color: var(--text-sec); }
.page-cart .cart-summary-line.cart-total,
.page-cart .cart-total { border-top: 2px solid var(--border); padding-top: 16px; margin-top: 8px; font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.page-cart .cart-detailed-actions .btn,
.page-cart .checkout a.btn { width: 100%; justify-content: center; }

/* ============================================================
   CHECKOUT (CSS on native hummingbird BEM markup) + step counter
   ============================================================ */
.page-checkout .checkout-process { counter-reset: wh-step; }
.page-checkout .checkout-process .step {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; margin-bottom: 20px;
}
.page-checkout .checkout-process .step__title {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 12px;
}
.page-checkout .checkout-process .step__title::before {
  counter-increment: wh-step; content: counter(wh-step);
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  background: var(--bg-off); border: 1.5px solid var(--border);
  color: var(--text-muted); font-size: 0.8rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.page-checkout .checkout-process .step--current .step__title::before {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.page-checkout .checkout-process .step--complete .step__title::before {
  background: var(--teal); color: #fff; border-color: var(--teal);
  content: '\2713';
}
.page-checkout .checkout-grid__aside .cart-summary,
.page-checkout .checkout-grid__aside-wrapper { position: sticky; top: 80px; }
.page-checkout .ship-opt, .page-checkout .delivery-option,
.page-checkout .payment-option {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px; margin-bottom: 10px; transition: all 0.2s;
}
.page-checkout .delivery-option:hover, .page-checkout .payment-option:hover,
.page-checkout .delivery-option.selected, .page-checkout .payment-option.selected {
  border-color: var(--navy); background: rgba(var(--wh-navy-rgb), 0.02);
}

/* ============================================================
   ORDER CONFIRMATION
   ============================================================ */
.wh-confirm { max-width: 700px; margin: 0 auto; padding: 60px 40px 80px; text-align: center; }
.wh-confirm-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.wh-confirm-icon svg { width: 40px; height: 40px; stroke: var(--teal); stroke-width: 2; fill: none; }
.wh-confirm h1 { font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.wh-confirm p { font-size: 0.95rem; color: var(--text-sec); margin-bottom: 8px; }
.wh-confirm-order { display: inline-block; background: var(--bg-off); padding: 8px 20px; border-radius: var(--radius-pill); font-size: 0.9rem; font-weight: 600; color: var(--navy); margin: 16px 0 32px; }
.wh-confirm-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: left; margin-bottom: 24px; }
.wh-confirm-box h3 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.wh-confirm-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-sec); padding: 6px 0; }
/* confirmation header (native page) */
.wh-confirm-head { max-width: 700px; margin: 0 auto 24px; padding: 40px 0 8px; text-align: center; }
.wh-confirm-head .wh-confirm-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.wh-confirm-head .wh-confirm-icon svg { width: 40px; height: 40px; stroke: var(--teal); stroke-width: 2; fill: none; }
.wh-confirm-head h1 { font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.wh-confirm-head p { font-size: 0.95rem; color: var(--text-sec); margin-bottom: 8px; }
.page-order-confirmation .order-confirmation__details { max-width: 700px; margin: 0 auto 24px; border-radius: var(--radius); border: 1px solid var(--border); }
.page-order-confirmation .order-confirmation__details .card-body { padding: 28px; }

/* ============================================================
   NEWSLETTER (component)
   ============================================================ */
.wh-newsletter { padding: 80px 40px; background: var(--bg-off); text-align: center; }
.wh-newsletter h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.wh-newsletter p { font-size: 0.9rem; color: var(--text-sec); margin-bottom: 28px; }
.wh-nl-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.wh-nl-form input { flex: 1; padding: 14px 20px; border: 1.5px solid var(--border); border-radius: var(--radius-pill); font-family: inherit; font-size: 0.88rem; background: #fff; }
.wh-nl-form button { padding: 14px 28px; background: var(--navy); color: #fff; border: none; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600; white-space: nowrap; }

/* ============================================================
   NAV / CATEGORY NAV (component overrides for header)
   ============================================================ */
.wh-cat-nav { position: sticky; top: 64px; z-index: 99; background: #fff; border-bottom: 1px solid var(--border); }
.wh-cat-nav-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; display: flex; gap: 4px; align-items: center; overflow-x: auto; scrollbar-width: none; }
.wh-cat-nav-inner::-webkit-scrollbar { display: none; }
.wh-cat-nav-item { display: inline-flex; align-items: center; gap: 8px; padding: 16px; white-space: nowrap; border-bottom: 2px solid transparent; transition: all 0.2s var(--ease); color: var(--text-sec); }
.wh-cat-nav-item svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; opacity: 0.75; flex-shrink: 0; }
.wh-cat-nav-label { font-size: 0.85rem; font-weight: 500; }
.wh-cat-nav-item:hover { color: var(--navy); }
.wh-cat-nav-item:hover svg { opacity: 1; }
.wh-cat-nav-item.active { color: var(--navy); border-bottom-color: var(--warm); }
.wh-cat-nav-item.active .wh-cat-nav-label { font-weight: 700; }
.wh-cat-nav-promo { margin-left: auto; flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: var(--teal-light); border-radius: var(--radius-pill); font-size: 0.82rem; font-weight: 600; color: var(--teal); white-space: nowrap; }
.wh-cat-nav-promo svg { width: 16px; height: 16px; stroke: var(--teal); stroke-width: 2; fill: none; opacity: 1; flex-shrink: 0; }

/* ============================================================
   BLOG (prestablog)
   ============================================================ */
.wh-blog-page { max-width: 1320px; margin: 0 auto; padding: 0 40px 80px; }
.wh-blog-hero { background: var(--bg-off); padding: 60px 40px; text-align: center; margin-bottom: 48px; }
.wh-blog-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.wh-blog-hero p { font-size: 1rem; color: var(--text-sec); max-width: 560px; margin: 0 auto; }
.wh-blog-cats { display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.wh-blog-cat { padding: 8px 18px; border: 1.5px solid var(--border); border-radius: var(--radius-pill); font-size: 0.82rem; font-weight: 500; color: var(--text-sec); transition: all 0.2s; cursor: pointer; }
.wh-blog-cat.active, .wh-blog-cat:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
/* featured post (makieta) */
.wh-blog-featured {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 0;
  margin-bottom: 48px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; color: inherit;
  transition: all 0.4s var(--ease);
}
.wh-blog-featured:hover { box-shadow: 0 16px 40px rgba(var(--wh-navy-rgb), 0.08); transform: translateY(-4px); }
.wh-blog-featured-img { aspect-ratio: 16/10; background: linear-gradient(135deg, #E0F2EE, #C5E5DC); overflow: hidden; }
.wh-blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.wh-blog-featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.wh-blog-featured-body h2 { font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.25; }
.wh-blog-featured-body p { font-size: 0.92rem; color: var(--text-sec); line-height: 1.7; margin-bottom: 16px; }

.wh-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; padding: 0; margin: 0 0 40px; }
.wh-blog-grid .wh-blog-card { list-style: none; }
.wh-blog-card > a { color: inherit; display: flex; flex-direction: column; height: 100%; }
.wh-blog-card .wh-blog-card-img { aspect-ratio: 16/10; background: var(--teal-light); overflow: hidden; }
.wh-blog-card .wh-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.wh-blog-card { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--border); transition: all 0.4s var(--ease); cursor: pointer; display: flex; flex-direction: column; }
.wh-blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(var(--wh-navy-rgb), 0.08); }
.wh-blog-card-img { aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; background: var(--teal-light); overflow: hidden; }
.wh-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.wh-blog-card-body { padding: 22px; }
.wh-blog-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.wh-blog-card-body h3 { font-size: 0.98rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.wh-blog-card-body p { font-size: 0.8rem; color: var(--text-sec); line-height: 1.6; margin-bottom: 12px; }
.wh-blog-card-meta { font-size: 0.72rem; color: var(--text-muted); }

/* ---- Blog (prestablog grid-for-1-7) native-markup wiring ---- */
#module-prestablog-blog #blog_list_1-7-category {
  list-style: none; margin: 0 0 40px; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
#module-prestablog-blog .blog-grid-block {
  width: 100%; max-width: 100%; flex: none; margin: 0; padding: 0; list-style: none;
}
#module-prestablog-blog .blog-grid-block .block_cont {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all 0.4s var(--ease);
}
#module-prestablog-blog .blog-grid-block .block_cont:hover {
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(var(--wh-navy-rgb), 0.08);
}
#module-prestablog-blog .blog-grid-block > a,
#module-prestablog-blog .blog-grid-block .block_cont > a { color: inherit; display: block; }
#module-prestablog-blog .block_top { aspect-ratio: 16 / 10; background: var(--teal-light); overflow: hidden; }
#module-prestablog-blog .block_top img { width: 100%; height: 100%; object-fit: cover; }
#module-prestablog-blog .block_bas { padding: 22px; }
#module-prestablog-blog .block_bas h3 { font-size: 0.98rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
#module-prestablog-blog .date_blog-cat,
#module-prestablog-blog .categorie_blog { font-size: 0.72rem; color: var(--text-muted); }
#module-prestablog-blog .categorie_blog { color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
#module-prestablog-blog .prestablog_desc { font-size: 0.8rem; color: var(--text-sec); line-height: 1.6; margin: 8px 0 12px; }
#module-prestablog-blog .prestablog_more { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
/* category filter -> chips */
#module-prestablog-blog .filtrecat,
.prestablog-mod .filtrecat { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; padding: 0; list-style: none; }
#module-prestablog-blog .filtrecat li,
#module-prestablog-blog .filtrecat a {
  padding: 8px 18px; border: 1.5px solid var(--border); border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 500; color: var(--text-sec); transition: all 0.2s;
}
#module-prestablog-blog .filtrecat a:hover,
#module-prestablog-blog .filtrecat .active a { background: var(--navy); color: #fff; border-color: var(--navy); }
/* Article body -> makieta typography */
#prestablogfont { font-size: 1.02rem; color: var(--text-sec); line-height: 1.85; }
#prestablogfont h2 { font-size: 1.5rem; color: var(--navy); margin: 36px 0 16px; }
#prestablogfont h3 { font-size: 1.2rem; color: var(--navy); margin: 28px 0 12px; }
#prestablogfont p { margin-bottom: 20px; }
#prestablogfont ul { margin: 0 0 20px 24px; }
#prestablogfont li { margin-bottom: 8px; }
#prestablogfont blockquote { border-left: 3px solid var(--teal); padding: 8px 0 8px 24px; margin: 24px 0; font-style: italic; color: var(--navy); }
#prestablogfont img { border-radius: var(--radius); margin: 16px 0; }
.prestablog-related-products .h3,
.prestablog-related-products h2 { font-size: 1.3rem; color: var(--navy); margin-bottom: 16px; }
.prestablog-related-products a.border { border: 1px solid var(--border) !important; border-radius: var(--radius) !important; transition: all 0.3s; }
.prestablog-related-products a.border:hover { border-color: var(--navy) !important; transform: translateY(-4px); box-shadow: var(--wh-shadow-md); }

@media (max-width: 1024px) { #module-prestablog-blog #blog_list_1-7-category { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { #module-prestablog-blog #blog_list_1-7-category { grid-template-columns: 1fr; } }

/* Blog article */
.wh-article { max-width: 760px; margin: 0 auto; padding: 0 40px 80px; }
.wh-article-hero { text-align: center; padding: 48px 0 32px; }
.wh-article-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.wh-article-meta { display: flex; align-items: center; gap: 16px; justify-content: center; font-size: 0.82rem; color: var(--text-muted); }
.wh-article-meta .wh-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-off); }
.wh-article-cover { aspect-ratio: 16/9; border-radius: var(--radius); background: linear-gradient(135deg, #E0F2EE, #C5E5DC); margin-bottom: 40px; overflow: hidden; }
.wh-article-cover img { width: 100%; height: 100%; object-fit: cover; }
.wh-article-body { font-size: 1.02rem; color: var(--text-sec); line-height: 1.85; }
.wh-article-body h2 { font-size: 1.5rem; color: var(--navy); margin: 36px 0 16px; }
.wh-article-body p { margin-bottom: 20px; }
.wh-article-body ul { margin: 0 0 20px 24px; }
.wh-article-body li { margin-bottom: 8px; }
.wh-article-body blockquote { border-left: 3px solid var(--teal); padding: 8px 0 8px 24px; margin: 24px 0; font-style: italic; color: var(--navy); }
.wh-article-share { display: flex; align-items: center; gap: 12px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.wh-article-share span { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.wh-article-share a { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-off); display: flex; align-items: center; justify-content: center; }
.wh-article-share svg { width: 16px; height: 16px; stroke: var(--navy); stroke-width: 1.5; fill: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.wh-contact-page { max-width: 1100px; margin: 0 auto; padding: 0 40px 80px; }
.wh-contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.wh-contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.wh-contact-info { background: var(--bg-off); border-radius: var(--radius); padding: 40px; }
.wh-contact-info h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }

/* ---- Contact page native-markup polish ---- */
.page-contact #content,
.page-contact .page-content { max-width: 1100px; margin-left: auto; margin-right: auto; }
.page-contact .contact-form {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px;
}
.page-contact .page-title,
.page-contact h1 { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
/* ---- CMS page (O nas) centered + hero helper ---- */
.page-cms .page-content--cms { max-width: 1100px; margin: 0 auto; }
.wh-cms-hero {
  background: linear-gradient(160deg, #F5F3EF, #EDE8E0);
  border-radius: var(--radius); padding: 64px 48px; text-align: center; margin-bottom: 8px;
}
.wh-cms-hero .wh-section-label { justify-content: center; }
.wh-cms-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); margin-bottom: 16px; }
.wh-cms-hero p { font-size: 1.05rem; color: var(--text-sec); max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* ---- Footer brand column (makieta) ---- */
.wh-footer-brand { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; color: #fff; }
.wh-footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }

/* ============================================================
   COMPONENT RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .wh-pdp-grid { grid-template-columns: 1fr; }
  .wh-pdp-info { position: static; }
  .wh-cart-grid { grid-template-columns: 1fr; }
  .wh-cart-summary { position: static; }
  .wh-shop-layout { grid-template-columns: 1fr; }
  .wh-shop-filters { position: static; }
  .wh-shop-grid, .wh-prod-grid, .wh-shop-main .products { grid-template-columns: repeat(2, 1fr); }
  .wh-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .wh-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .wh-container, .wh-breadcrumb, .wh-pdp, .wh-tabs-section, .wh-cart-page,
  .wh-shop-page, .wh-blog-page, .wh-article, .wh-contact-page {
    padding-left: 20px; padding-right: 20px;
  }
  .wh-prod-grid, .wh-shop-grid, .wh-blog-grid, .wh-shop-main .products { grid-template-columns: 1fr; }
  .wh-cart-item { grid-template-columns: 60px 1fr auto; }
  .wh-pdp-features { grid-template-columns: 1fr; }
  .wh-nl-form { flex-direction: column; }
  .wh-newsletter { padding-left: 20px; padding-right: 20px; }
  .wh-cat-nav { top: 56px; }
  .wh-cat-nav-promo { display: none; }
}

/* ===== WELLHAUS product variants (linked separate products as swatches) ===== */
.wh-variants { margin: 0 0 1.25rem; }
.wh-variants__title { margin: 0 0 .5rem; font-size: .875rem; color: var(--bs-secondary-color, #6c757d); }
.wh-variants__current { color: var(--bs-body-color, #1d1d1f); font-weight: 600; }
.wh-variants__list { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.wh-variants__item { display: flex; }
.wh-variants__swatch {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; padding: .1875rem; border-radius: 50%;
  border: 1px solid var(--bs-border-color, #dee2e6); background: #fff;
  transition: box-shadow .15s ease, border-color .15s ease; cursor: pointer;
}
.wh-variants__swatch:hover { border-color: var(--wh-navy, #1f2a44); }
.wh-variants__swatch.is-active { border-color: var(--wh-navy, #1f2a44); box-shadow: 0 0 0 2px var(--wh-navy, #1f2a44); cursor: default; }
.wh-variants__dot { display: block; width: 100%; height: 100%; border-radius: 50%; border: 1px solid rgba(0,0,0,.08); }
.wh-variants__pill {
  display: inline-flex; align-items: center; padding: .375rem .75rem;
  border: 1px solid var(--bs-border-color, #dee2e6); border-radius: 999px;
  font-size: .875rem; line-height: 1; color: var(--bs-body-color, #1d1d1f);
  text-decoration: none; background: #fff; transition: border-color .15s ease, background .15s ease;
}
.wh-variants__pill:hover { border-color: var(--wh-navy, #1f2a44); }
.wh-variants__pill.is-active { border-color: var(--wh-navy, #1f2a44); background: var(--wh-navy, #1f2a44); color: #fff; cursor: default; }
.wh-variants .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
