/**
 * DomLaVida theme (child of Classic) — visual design system
 * Fonts: Plus Jakarta Sans + Cormorant Garamond italic accents
 * Palette: coral #FF6B57 / salmon #F36855 / dark #161616 / soft #FDF7F4
 */

/* ============ 1. TOKENS & BASE ============ */
:root {
  --dl-coral: #FF6B57;
  --dl-coral-dark: #EE523C;
  --dl-salmon: #F36855;
  --dl-dark: #161616;
  --dl-soft: #FDF7F4;
  --dl-muted: #7A7A7A;
  --dl-light: #F5F5F7;
  --dl-border: #E8E8EC;
  --dl-hero-grad: radial-gradient(circle at 75% 35%, #F8A99C 0%, #F57C69 45%, #E85B46 95%);
  --dl-radius: 16px;
  --dl-radius-lg: 28px;
  --dl-shadow-sm: 0 1px 3px rgba(22, 22, 22, .08);
  --dl-shadow-md: 0 10px 28px rgba(22, 22, 22, .10);
  --dl-font: 'Plus Jakarta Sans', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --dl-serif: 'Cormorant Garamond', Georgia, serif;
}

body {
  font-family: var(--dl-font);
  color: var(--dl-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .h1, .h2, .h3 {
  font-family: var(--dl-font);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--dl-dark);
}

::selection { background: var(--dl-coral); color: #fff; }

a { color: var(--dl-dark); }
a:hover, a:focus { color: var(--dl-coral); text-decoration: none; }

.font-italic-accent {
  font-family: var(--dl-serif);
  font-style: italic;
  font-weight: 500;
}

@media (min-width: 1400px) {
  .container { max-width: 1360px; }
}

#wrapper { background: #fff; padding-top: 0; }
#content-wrapper { padding-left: 15px; padding-right: 15px; }

/* ============ 2. BUTTONS ============ */
.btn {
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  padding: .7rem 1.6rem;
  transition: all .2s ease;
  border: 1px solid transparent;
}
.btn-primary, .btn.btn-primary {
  background: var(--dl-dark);
  border-color: var(--dl-dark);
  color: #fff;
  box-shadow: var(--dl-shadow-sm);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active,
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: var(--dl-coral) !important;
  border-color: var(--dl-coral) !important;
  color: #fff !important;
  box-shadow: var(--dl-shadow-md);
}
.btn-secondary, .btn.btn-secondary, .btn-outline-primary {
  background: #fff;
  border-color: var(--dl-border);
  color: var(--dl-dark);
}
.btn-secondary:hover, .btn.btn-secondary:hover {
  border-color: var(--dl-dark);
  color: var(--dl-dark);
  background: #fff;
}
.btn-coral, .btn.btn-coral {
  background: var(--dl-coral);
  border-color: var(--dl-coral);
  color: #fff;
}
.btn-coral:hover { background: var(--dl-coral-dark); border-color: var(--dl-coral-dark); color: #fff; }
.btn-lg { padding: .85rem 2rem; font-size: .95rem; }
.btn-sm { padding: .45rem 1.1rem; font-size: .78rem; }
.btn.disabled, .btn:disabled { opacity: .55; }

/* ============ 3. FORMS ============ */
.form-control, .input-group .form-control, select.form-control, textarea.form-control {
  border-radius: 12px;
  border: 1px solid var(--dl-border);
  padding: .7rem 1rem;
  font-size: .85rem;
  color: var(--dl-dark);
  background: #fff;
}
.form-control:focus {
  border-color: var(--dl-coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 87, .15);
}
.form-control-label, label.form-control-label { font-weight: 600; font-size: .82rem; }
.custom-checkbox input:checked ~ .custom-control-label::before,
.custom-radio input:checked ~ .custom-control-label::before {
  background-color: var(--dl-coral);
  border-color: var(--dl-coral);
}
input[type="checkbox"], input[type="radio"] { accent-color: var(--dl-coral); }
.input-group .input-group-btn .btn, .input-group-btn .btn { border-radius: 0 12px 12px 0; }

/* ============ 4. HEADER ============ */
#header { box-shadow: none; }
#header .header-banner { padding: 0; }
#header .header-banner img { width: 100%; }

/* slim utility strip */
#header .header-nav {
  background: var(--dl-light);
  border-bottom: 1px solid var(--dl-border);
  margin-bottom: 0;
  max-height: none;
  padding: 0;
  font-size: .75rem;
}
#header .header-nav .container > .row { align-items: center; min-height: 36px; }
#header .header-nav a { color: #555; font-weight: 600; }
#header .header-nav a:hover { color: var(--dl-coral); }
#header .header-nav .material-icons { font-size: 1rem; vertical-align: -2px; }
#header .header-nav .right-nav { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; }

/* sticky main row */
#header .header-top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f1f1f4;
  padding: .8rem 0;
}
#header .header-top > .container > .row { align-items: center; }
#_desktop_logo img.logo { max-height: 52px; width: auto; }

/* main row layout */
.dl-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
#header .header-top-right { display: flex; align-items: center; flex-wrap: wrap; gap: .75rem; }

/* newsletter pill in header */
.dl-newsletter-pill {
  background: var(--dl-dark);
  color: #fff !important;
  font-size: .78rem;
  font-weight: 600;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--dl-shadow-sm);
  transition: all .2s ease;
}
.dl-newsletter-pill:hover { background: var(--dl-coral); color: #fff !important; transform: translateY(-1px); }

/* login link */
#header .user-info a { font-weight: 600; font-size: .85rem; color: #444; white-space: nowrap; }
#header .user-info a:hover { color: var(--dl-coral); }
#header .user-info .material-icons { color: #666; }

/* cart */
#header .blockcart .header { display: flex; align-items: center; gap: .3rem; font-weight: 600; font-size: .85rem; cursor: pointer; }
#header .blockcart .shopping-cart { color: #444; }
#header .blockcart:hover .shopping-cart { color: var(--dl-coral); }
#header .cart-products-count {
  background: var(--dl-coral);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  min-width: 1.1rem;
  height: 1.1rem;
  line-height: 1.1rem;
  border-radius: 999px;
  text-align: center;
  padding: 0 .2rem;
  box-shadow: var(--dl-shadow-sm);
}

/* language / currency */
#header .language-selector-wrapper .language-selector,
#header .currency-selector { font-size: .75rem; font-weight: 600; }
#header .language-selector-wrapper button,
#header .currency-selector .btn-unstyle {
  font-size: .75rem;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  gap: .25rem;
}
#header .language-selector-wrapper button:hover { color: var(--dl-coral); }

/* search */
#search_widget { min-width: 220px; flex: 1 1 220px; max-width: 420px; }
#search_widget form { position: relative; overflow: visible; }
#search_widget input[type="text"] {
  border-radius: 999px;
  background: var(--dl-light);
  border: 1px solid transparent;
  padding: .6rem 2.8rem .6rem 1.1rem;
  font-size: .83rem;
  height: auto;
}
#search_widget input[type="text"]:focus { background: #fff; border-color: var(--dl-coral); box-shadow: 0 0 0 3px rgba(255,107,87,.15); }
#search_widget button[type="submit"] {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  border-radius: 999px;
  background: var(--dl-dark);
  color: #fff;
  border: none;
  width: 2.1rem;
  padding: 0;
}
#search_widget button[type="submit"]:hover { background: var(--dl-coral); }
#search_widget button[type="submit"] .search { font-size: 1.1rem; line-height: 2.1rem; }

/* top menu */
#header .top-menu { margin: 0; }
#header .top-menu a[data-depth="0"] {
  font-size: .85rem;
  font-weight: 700;
  color: #3a3a3a;
  padding: .6rem .9rem;
  text-transform: none;
}
#header .top-menu a[data-depth="0"]:hover { color: var(--dl-coral); }
#header .top-menu .sub-menu { border-radius: var(--dl-radius); border: 1px solid var(--dl-border); box-shadow: var(--dl-shadow-md); }

/* mobile header */
#header .header-nav .mobile { padding: .4rem 0; }
#menu-icon .material-icons { font-size: 1.8rem; }
#header.is-open #mobile_top_menu_wrapper {
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: var(--dl-shadow-md);
  padding: 1rem;
}
#mobile_top_menu .top-menu a[data-depth="0"] { font-weight: 700; padding: .7rem .5rem; border-bottom: 1px solid var(--dl-border); }
#mobile_top_menu .top-menu { width: 100%; }

/* ============ 5. HERO SLIDER ============ */
#index .homeslider-container,
.homeslider-container {
  border-radius: 28px;
  overflow: hidden;
  background: var(--dl-hero-grad);
  box-shadow: var(--dl-shadow-sm);
  margin: 1rem auto 0;
  max-width: 1400px;
  position: relative;
}
.homeslider-container ul.rslides,
.homeslider-container .rslides { margin: 0; }
.homeslider-container .rslides li { position: relative; }
.homeslider-container .rslides img {
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  object-fit: cover;
  display: block;
}
.homeslider-container .caption {
  position: absolute;
  left: 0; right: auto;
  bottom: 0; top: 0;
  width: min(560px, 90%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
  background: linear-gradient(90deg, rgba(20, 10, 8, .55) 0%, rgba(20, 10, 8, .25) 55%, transparent 100%);
  text-align: left;
}
.homeslider-container .caption h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.12;
  margin-bottom: .8rem;
  text-transform: none;
}
.homeslider-container .caption div,
.homeslider-container .caption p {
  color: rgba(255, 255, 255, .92);
  font-size: .95rem;
  line-height: 1.6;
}
.homeslider-container .caption a {
  display: inline-block;
  margin-top: 1.2rem;
  background: var(--dl-dark);
  color: #fff !important;
  font-weight: 600;
  font-size: .85rem;
  padding: .7rem 1.8rem;
  border-radius: 999px;
  align-self: flex-start;
}
.homeslider-container .caption a:hover { background: var(--dl-coral); }
.rslides_tabs { text-align: center; margin-top: .8rem; }
.rslides_tabs li { display: inline-block; margin: 0 .25rem; }
.rslides_tabs li a {
  display: block;
  width: .6rem; height: .6rem;
  border-radius: 999px;
  background: #ddd;
  text-indent: -9999px;
  overflow: hidden;
}
.rslides_tabs li.rslides_here a { background: var(--dl-coral); }

/* ============ 6. HOMEPAGE SECTIONS ============ */
#index #content-wrapper { padding-top: 0; }
#custom-text {
  background: #fff;
  border-radius: var(--dl-radius-lg);
  box-shadow: none;
  margin: 2rem auto;
  padding: 2rem;
  text-align: left;
}
#custom-text h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
#custom-text p { color: #555; line-height: 1.7; }

.featured-products { margin: 2.5rem 0; }
.featured-products > h2, section.featured-products > h2,
.page-content.page-cms h1, #content-wrapper h1.h1 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}
.products-selection .sort-by-row { align-items: center; }

/* banners */
.banner img, .ps-banner img {
  border-radius: var(--dl-radius);
  box-shadow: var(--dl-shadow-sm);
}

/* ============ 7. PRODUCT CARDS ============ */
.product-miniature .thumbnail-container,
.js-product-miniature .thumbnail-container {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: var(--dl-radius);
  box-shadow: var(--dl-shadow-sm);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
  margin-bottom: 0;
}
.product-miniature:hover .thumbnail-container {
  transform: translateY(-4px);
  box-shadow: var(--dl-shadow-md);
}
.product-miniature .thumbnail-top { position: relative; background: var(--dl-light); }
.product-miniature .product-thumbnail img {
  border: none;
  border-radius: var(--dl-radius) var(--dl-radius) 0 0;
}
.product-miniature .product-description { padding: 1.1rem 1.2rem 1.3rem; }
.product-miniature .product-title, .product-miniature h3.product-title, .product-miniature h2.product-title {
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: .5rem;
  min-height: 2.6em;
}
.product-miniature .product-title a { color: var(--dl-dark); }
.product-miniature .product-title a:hover { color: var(--dl-coral); }
.product-price-and-shipping .price {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dl-dark);
}
.product-price-and-shipping .regular-price {
  color: #a0a0a8;
  text-decoration: line-through;
  font-size: .85rem;
  margin-right: .4rem;
}
.discount-percentage, .discount-amount, .product-flags .discount,
span.discount-percentage {
  background: var(--dl-coral);
  color: #fff;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  padding: .2rem .6rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.product-flags { margin: 0; padding: 0; }
.product-flags .product-flag {
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 800;
  padding: .28rem .7rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: var(--dl-shadow-sm);
  margin: .5rem 0 0 .5rem;
}
.product-flags .new { background: #fff; color: var(--dl-dark); }
.product-flags .on-sale, .product-flags .discount { background: var(--dl-coral); color: #fff; }
.product-flags .out_of_stock { background: var(--dl-dark); color: #fff; }
.highlighted-informations {
  background: rgba(255, 255, 255, .96);
  border-radius: 0 0 var(--dl-radius) var(--dl-radius);
  box-shadow: none;
}
.quick-view { color: var(--dl-dark); font-weight: 600; font-size: .8rem; }
.quick-view:hover { color: var(--dl-coral); }
.variant-links a {
  border-radius: 50%;
  border: 1px solid var(--dl-border);
}
.variant-links a:hover { border-color: var(--dl-coral); }
.js-product { margin-bottom: 1.5rem; }

/* ============ 8. CATEGORY / LISTING ============ */
.breadcrumb {
  background: transparent;
  padding: .8rem 0;
  font-size: .8rem;
}
.breadcrumb a { color: #777; }
.breadcrumb a:hover { color: var(--dl-coral); }
.breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #bbb; }

.block-category {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: var(--dl-radius-lg);
  box-shadow: none;
  margin-bottom: 1.5rem;
  padding: 1.8rem;
  min-height: 0;
}
.block-category h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: .4rem; }
.block-category .category-description, #category-description { color: #666; line-height: 1.7; }
.block-category .category-cover img { border-radius: var(--dl-radius); }

#left-column .facet, #search_filters, .block-categories {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: var(--dl-radius);
  box-shadow: var(--dl-shadow-sm);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1rem;
}
.facet-title, .block-categories .block-categories-title, .facet .h6 {
  font-weight: 800;
  font-size: .95rem;
  text-transform: none;
}
.facet-label a, .block-categories a { color: #444; font-size: .85rem; }
.facet-label a:hover, .block-categories a:hover { color: var(--dl-coral); }
.active_filters .filter-block {
  background: var(--dl-dark);
  color: #fff;
  border-radius: 999px;
  font-size: .75rem;
  padding: .3rem .8rem;
  border: none;
}
.active_filters .filter-block .close { color: #fff; opacity: .8; text-shadow: none; }

#js-product-list-top .products-sort-order .select-title,
.sort-by-row .products-sort-order .select-title {
  border: 1px solid var(--dl-border);
  border-radius: 999px;
  box-shadow: none;
  font-size: .8rem;
  font-weight: 600;
  padding: .5rem 1rem;
}
.sort-by-row { margin-bottom: 1rem; }
#js-product-list-header p, .products-selection p { color: var(--dl-muted); font-size: .82rem; }

.pagination .page-list {
  background: transparent;
  box-shadow: none;
  display: flex;
  gap: .4rem;
  justify-content: center;
  margin: 2rem 0 1rem;
}
.pagination .page-list li { display: inline-flex; }
.pagination .page-list a, .pagination .page-list span {
  width: 2.3rem; height: 2.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--dl-border);
  color: #555;
  font-weight: 700;
  font-size: .82rem;
  margin: 0;
}
.pagination .page-list a:hover { border-color: var(--dl-dark); color: var(--dl-dark); }
.pagination .page-list .current a, .pagination .page-list a.current {
  background: var(--dl-dark);
  border-color: var(--dl-dark);
  color: #fff;
}
.pagination .page-list .disabled { opacity: .4; }

/* subcategories */
#subcategories ul { display: flex; flex-wrap: wrap; gap: .6rem; }
#subcategories .subcategory-image a {
  display: inline-block;
  border: 1px solid var(--dl-border);
  border-radius: 999px;
  padding: .45rem 1.1rem;
  font-size: .8rem;
  font-weight: 600;
  background: #fff;
}
#subcategories .subcategory-image a:hover { border-color: var(--dl-coral); color: var(--dl-coral); }
#subcategories .subcategory-image img { display: none; }

/* ============ 9. PRODUCT PAGE ============ */
#product #content { max-width: 100%; }
.product-cover img, #product .product-cover img {
  border-radius: 24px;
  border: 1px solid #f0f0f4;
  box-shadow: var(--dl-shadow-sm);
}
.js-thumb, #product .js-thumb {
  border-radius: 12px;
  border: 1px solid #f0f0f4;
}
.js-thumb.selected, .js-thumb.js-thumb-selected { border-color: var(--dl-coral); }
.product-flags .product-flag { z-index: 2; }

h1.h1.product-name, .product-info h1 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.product-prices .price, .product-prices div.price {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dl-dark);
}
.product-prices .regular-price { font-size: 1.1rem; }
.product-discounts table { border-radius: 12px; overflow: hidden; }
.product-variants .product-variants-item .control-label { font-weight: 700; font-size: .85rem; }
.product-variants-item .color, .product-variants-item input[type="radio"] + span { border-radius: 50%; }
.product-add-to-cart .product-quantity { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.product-quantity .qty { display: inline-flex; align-items: center; border: 1px solid var(--dl-border); border-radius: 999px; overflow: hidden; }
.product-quantity .qty .btn { border: none; background: transparent; padding: .55rem .8rem; color: var(--dl-dark); }
.product-quantity .qty input.qty {
  border: none;
  width: 3rem;
  text-align: center;
  font-weight: 800;
  border-radius: 0;
  padding: .55rem 0;
}
.product-add-to-cart .add-to-cart, .product-add-to-cart .btn.add-to-cart {
  border-radius: 999px;
  padding: .8rem 2.2rem;
  font-size: .9rem;
  text-transform: none;
}
.product-add-to-cart .add-to-cart .material-icons { display: none; }
#product-availability .product-available { color: #1e9e5a; font-weight: 700; }
#product-availability .product-unavailable, #product-availability .product-last-items { color: var(--dl-coral); font-weight: 700; }

.tabs, .product-tabs { margin-top: 2rem; }
.tabs .nav-tabs, .product-tabs .nav-tabs { border: none; gap: .5rem; margin-bottom: 1.2rem; }
.tabs .nav-tabs .nav-link, .product-tabs .nav-tabs .nav-link {
  border: 1px solid var(--dl-border);
  border-radius: 999px;
  color: #555;
  font-weight: 700;
  font-size: .83rem;
  padding: .55rem 1.3rem;
}
.tabs .nav-tabs .nav-link.active, .product-tabs .nav-tabs .nav-link.active {
  background: var(--dl-dark);
  border-color: var(--dl-dark);
  color: #fff;
}
.tabs .tab-content, .product-tabs .tab-content {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: var(--dl-radius);
  padding: 1.6rem;
  box-shadow: var(--dl-shadow-sm);
}
.product-features > dl.data-sheet { border-radius: 12px; overflow: hidden; }
.product-features > dl.data-sheet dt { background: var(--dl-light); }

#block-reassurance, .blockreassurance_product {
  border: 1px solid #f0f0f4;
  border-radius: var(--dl-radius);
  box-shadow: none;
}
#block-reassurance li, .blockreassurance_product li { border: none; }
.social-sharing li {
  border-radius: 50%;
  border: 1px solid var(--dl-border);
  box-shadow: none;
  width: 2.3rem; height: 2.3rem;
}
.product-manufacturer { margin-bottom: 1rem; }
#product-modal .modal-content, .modal-content { border-radius: 24px; border: none; box-shadow: var(--dl-shadow-md); }
#blockcart-modal .modal-body { border-radius: 24px; }
#blockcart-modal .btn { margin-top: .6rem; }
.product-customization .card { border-radius: var(--dl-radius); border-color: #f0f0f4; }
.product-refresh { color: var(--dl-muted); }

/* reviews (productcomments) */
#product-comments-list .comment, .grade-stars .star-content { color: var(--dl-coral); }
.btn-comment { border-radius: 999px; }

/* ============ 10. CART ============ */
.cart-grid .cart-grid-body .card, .cart-grid .cart-grid-right .card {
  border: 1px solid #f0f0f4;
  border-radius: var(--dl-radius);
  box-shadow: var(--dl-shadow-sm);
}
.cart-grid .cart-grid-body .card { padding: 1.2rem 1.4rem; }
.cart-item { border-bottom: 1px solid #f2f2f5; padding: 1rem 0; }
.cart-item:last-child { border-bottom: none; }
.cart-item .product-line-grid-right .qty { display: inline-flex; align-items: center; border: 1px solid var(--dl-border); border-radius: 999px; }
.cart-item .product-line-grid-right .qty input { border: none; width: 2.6rem; text-align: center; font-weight: 700; }
.cart-item .product-line-grid-right .qty .btn { border: none; background: transparent; padding: .4rem .6rem; }
.cart-item .remove-from-cart { color: #aaa; }
.cart-item .remove-from-cart:hover { color: var(--dl-coral); }
.cart-summary .card-block { padding: 1.3rem 1.4rem; }
.cart-summary .cart-summary-line .value { font-weight: 800; }
.cart-summary .cart-total .value { font-size: 1.3rem; }
.cart-grid-right .checkout a.btn, .checkout a.btn-primary { width: 100%; padding: .9rem; font-size: .95rem; }
.promo-code .promo-input { display: flex; gap: .5rem; }
.promo-code input { border-radius: 999px; }
#cart-subtotal-products .label, .cart-summary-line .label { color: #555; }

/* ============ 11. CHECKOUT ============ */
body#checkout #header .header-nav { display: none; }
body#checkout #content-wrapper { max-width: 1100px; margin: 0 auto; }
.checkout-step {
  border: 1px solid #f0f0f4;
  border-radius: var(--dl-radius);
  box-shadow: var(--dl-shadow-sm);
  margin-bottom: 1rem;
}
.checkout-step .step-number {
  background: var(--dl-dark);
  border-radius: 50%;
  font-weight: 800;
}
.checkout-step.-complete .step-number, .checkout-step.-current .step-number { background: var(--dl-coral); }
.checkout-step .step-title { font-weight: 800; text-transform: none; font-size: 1rem; }
.address-item {
  border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius);
}
.address-item.selected { border-color: var(--dl-coral); box-shadow: 0 0 0 3px rgba(255,107,87,.15); }
.delivery-option {
  border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius);
  padding: .9rem 1rem;
  margin-bottom: .6rem;
  background: #fff;
}
.delivery-option:hover { border-color: #c9c9d2; }
.payment-option {
  border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius);
  padding: 1rem;
  margin-bottom: .6rem;
  background: #fff;
}
.payment-option:hover { border-color: #c9c9d2; }
#payment-confirmation .btn { width: 100%; padding: .95rem; font-size: .95rem; margin-top: .8rem; }
.condition-label label { font-size: .8rem; }
#order-summary-content {
  border: 1px solid #f0f0f4;
  border-radius: var(--dl-radius);
  box-shadow: var(--dl-shadow-sm);
}
body#checkout section.checkout-step .content { padding: 1.2rem 1.4rem; }
#checkout-personal-information-step .nav-tabs { border: none; gap: .5rem; }
#checkout-personal-information-step .nav-tabs .nav-link { border: 1px solid var(--dl-border); border-radius: 999px; font-weight: 700; font-size: .8rem; }
#checkout-personal-information-step .nav-tabs .nav-link.active { background: var(--dl-dark); color: #fff; border-color: var(--dl-dark); }

/* order confirmation */
#order-confirmation #content-wrapper .card, #order-details .card {
  border: 1px solid #f0f0f4;
  border-radius: var(--dl-radius);
  box-shadow: var(--dl-shadow-sm);
}
.page-order-confirmation .h1.card-title i.material-icons { color: #1e9e5a; }

/* ============ 12. AUTH / ACCOUNT ============ */
.page-authentication #content, #login-form {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: var(--dl-radius-lg);
  box-shadow: var(--dl-shadow-md);
  padding: 2.2rem;
  max-width: 560px;
  margin: 2rem auto;
}
.page-authentication #content h1, #login-form h1 { font-size: 1.7rem; text-align: center; }
#login-form .form-control { margin-bottom: .2rem; }
.forgot-password { text-align: center; display: block; margin-top: .6rem; font-size: .82rem; }
#customer-form .form-footer, #login-form .form-footer { text-align: center; }
.page-customer-account #content .links a,
.my-account ul li a, #my-account ul li a {
  display: block;
  border: 1px solid #f0f0f4;
  border-radius: var(--dl-radius);
  padding: 1rem 1.2rem;
  margin-bottom: .7rem;
  font-weight: 700;
  box-shadow: var(--dl-shadow-sm);
  background: #fff;
}
.page-customer-account #content .links a:hover, #my-account ul li a:hover { border-color: var(--dl-coral); color: var(--dl-coral); transform: translateY(-2px); }
.page-customer-account #content .links a i, #my-account ul li a i { color: var(--dl-coral); }
.table { border-radius: var(--dl-radius); overflow: hidden; }
.table thead th { background: var(--dl-light); border: none; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: #666; }

/* ============ 13. CMS / CONTACT / MISC PAGES ============ */
.page-cms #content-wrapper .page-content, .cms-page .page-content {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: var(--dl-radius-lg);
  box-shadow: var(--dl-shadow-sm);
  padding: 2.2rem;
}
.page-cms h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }
.page-cms p, .page-cms li { line-height: 1.75; color: #444; }

#contact-wrapper, .contact-form {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: var(--dl-radius-lg);
  box-shadow: var(--dl-shadow-sm);
  padding: 2rem;
}
.contact-rich { color: #555; }
.contact-rich h4 { font-weight: 800; }

.page-not-found #content-wrapper, body#pagenotfound #content {
  text-align: center;
  background: var(--dl-light);
  border-radius: var(--dl-radius-lg);
  padding: 4rem 2rem;
  margin: 2rem 0;
}
.page-not-found h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
#search_widget form.alert { background: transparent; border: none; }

.sitemap ul.nested { border-left: 2px solid var(--dl-border); }
.manufacturer-list .brand, .supplier-list .brand {
  border: 1px solid #f0f0f4;
  border-radius: var(--dl-radius);
  padding: 1.2rem;
  box-shadow: var(--dl-shadow-sm);
}
.store-item, #stores .store-item {
  border: 1px solid #f0f0f4;
  border-radius: var(--dl-radius);
  box-shadow: var(--dl-shadow-sm);
  padding: 1.2rem;
  margin-bottom: 1rem;
}

/* ============ 14. NEWSLETTER BLOCKS ============ */
.block_newsletter, #blockEmailSubscription_displayFooterBefore {
  background: var(--dl-light);
  border-radius: var(--dl-radius-lg);
  padding: 2rem 2.2rem;
  margin: 2.5rem 0;
  border: none;
  max-width: 100%;
}
.block_newsletter p#block-newsletter-label, .block_newsletter h4 {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--dl-dark);
  margin-bottom: .4rem;
}
.block_newsletter form { display: flex; gap: .6rem; flex-wrap: wrap; align-items: stretch; margin-top: 1rem; }
.block_newsletter form .row { display: flex; gap: .6rem; flex-wrap: wrap; width: 100%; margin: 0; }
.block_newsletter form .row > div { padding: 0; }
.block_newsletter .input-wrapper { flex: 1 1 240px; overflow: visible; }
.block_newsletter input[type="email"] {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--dl-border);
  background: #fff;
  padding: .75rem 1.2rem;
  font-size: .85rem;
}
.block_newsletter input[type="email"]:focus { border-color: var(--dl-coral); box-shadow: 0 0 0 3px rgba(255,107,87,.15); outline: none; }
.block_newsletter input[type="submit"], .block_newsletter .btn {
  border-radius: 999px;
  background: var(--dl-dark);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: .75rem 1.8rem;
  float: none;
}
.block_newsletter input[type="submit"]:hover { background: var(--dl-coral); }
.block_newsletter .col-xs-12 p, .block_newsletter form > div p { font-size: .72rem; color: #999; width: 100%; }
.block_newsletter .notification { border-radius: 12px; }

/* ============ 15. FOOTER ============ */
#footer { background: #fff; }
.footer-container {
  background: #fff;
  border-top: 1px solid var(--dl-border);
  box-shadow: none;
  padding-top: 2.5rem;
  margin-top: 0;
}
.footer-container .h3, .footer-container .title {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #a0a0a8;
  margin-bottom: .9rem;
}
.footer-container .links ul > li a, .footer-container ul > li a {
  color: #555;
  font-size: .85rem;
  font-weight: 500;
  padding: .22rem 0;
  display: inline-block;
}
.footer-container .links ul > li a:hover { color: var(--dl-coral); }
#contact-infos, .contact-infos { font-size: .85rem; }
#contact-infos .h3 { margin-bottom: .6rem; }
#contact-infos a[href^="mailto"] { font-size: 1.15rem; font-weight: 800; color: var(--dl-dark); }
#contact-infos a[href^="mailto"]:hover { color: var(--dl-coral); }

.block-social ul { display: flex; gap: .6rem; }
.block-social li {
  width: 2.2rem; height: 2.2rem;
  border: 1px solid var(--dl-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff !important;
}
.block-social li a { font-size: 0; }
.block-social li a::before { display: none; }
.block-social li:hover { border-color: var(--dl-coral); }
.block-social li:hover a { color: var(--dl-coral); }

.dl-payments {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  padding: 1.1rem 0;
  margin-top: 1.5rem;
  border-top: 1px solid #f1f1f4;
}
.dl-payments span {
  border: 1px solid var(--dl-border);
  background: #fff;
  border-radius: 6px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .02em;
  padding: .3rem .55rem;
  color: var(--dl-dark);
}
#footer .copyright, .footer-container .text-sm-center, .dl-copyright {
  font-size: .72rem;
  color: #a0a0a8;
  padding: 1rem 0 1.4rem;
}
#footer .copyright a, .dl-copyright a { color: #888; }
#footer .copyright a:hover { color: var(--dl-coral); }

/* ============ 16. ALERTS / MODALS / MISC ============ */
.alert {
  border-radius: var(--dl-radius);
  border: 1px solid #f0f0f4;
  font-size: .85rem;
}
.alert-success { background: #eef9f1; border-color: #c9ecd4; color: #1e7e46; }
.alert-danger { background: #fdf0ee; border-color: #f6cfc8; color: #c0392b; }
.alert-warning { background: #fff8ec; border-color: #f3dfae; color: #8a6d1b; }
.alert-info { background: #eef4fd; border-color: #c9daf3; color: #2c5aa0; }

.modal-content { border-radius: 24px; border: none; }
.modal-header { border-bottom: 1px solid #f1f1f4; }
.modal-header .h2, .modal-header h2 { font-size: 1.2rem; }

.ps-alert-error, .ps-alert-success { border-radius: 12px; }

/* back to top */
#back-to-top, .dl-back-to-top {
  position: fixed;
  right: 1.2rem; bottom: 1.2rem;
  width: 2.8rem; height: 2.8rem;
  border-radius: 50%;
  background: var(--dl-dark);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  box-shadow: var(--dl-shadow-md);
  cursor: pointer;
  border: none;
}
#back-to-top.show, .dl-back-to-top.show { display: inline-flex; }
#back-to-top:hover { background: var(--dl-coral); }

/* reassurance */
#block-reassurance img, .blockreassurance_product img { border-radius: 8px; }

/* faceted search mobile */
#search_filter_toggler { border-radius: 999px; border: 1px solid var(--dl-border); font-weight: 700; }

/* contact info blocks */
#contact-infos { margin-bottom: 1rem; }

/* ============ 17. RESPONSIVE ============ */
@media (max-width: 1199px) {
  #search_widget { min-width: 170px; }
  .dl-newsletter-pill { display: none; }
}
@media (max-width: 991px) {
  .homeslider-container { border-radius: 20px; }
  .homeslider-container .caption { width: 100%; padding: 1.6rem; background: linear-gradient(0deg, rgba(20,10,8,.6) 0%, rgba(20,10,8,.2) 60%, transparent 100%); justify-content: flex-end; }
  #header .header-nav .hidden-sm-down { display: none; }
  .footer-container .row { row-gap: 1.5rem; }
  .block_newsletter, #blockEmailSubscription_displayFooterBefore { padding: 1.5rem; }
  .tabs .tab-content, .product-tabs .tab-content { padding: 1.1rem; }
}
@media (max-width: 767px) {
  #header .header-top { position: sticky; }
  .product-miniature .product-description { padding: .9rem; }
  .product-miniature .product-title { font-size: .85rem; }
  .homeslider-container .rslides img { height: 300px; }
  .page-authentication #content, #login-form { padding: 1.5rem; margin: 1rem auto; }
  .page-cms #content-wrapper .page-content, .cms-page .page-content,
  #contact-wrapper, .contact-form { padding: 1.3rem; }
  .cart-grid .cart-grid-body .card { padding: .9rem; }
  .dl-payments { justify-content: center; }
  #footer .copyright, .dl-copyright { text-align: center; }
  .block-social ul { justify-content: flex-start; }
  .checkout-step .content { padding: 1rem; }
  .product-cover img, #product .product-cover img { border-radius: 16px; }
}

/* ============ 18. HEADER v2 (single row) ============ */
#header .header-top.dl-header { padding: .7rem 0; }
.dl-header-container { max-width: 1400px; }
.dl-header-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.dl-header-logo { flex: 0 0 auto; }
.dl-header-logo .dl-logo-title { margin: 0; }
.dl-header-logo img.logo { max-height: 48px; width: auto; }
.dl-header-nav { flex: 1 1 auto; min-width: 0; display: flex; align-items: center; }
.dl-header-nav #_desktop_top_menu { flex: 1 1 auto; min-width: 0; }
.dl-header-nav #search_widget { flex: 0 1 260px; min-width: 180px; margin-left: auto; }
.dl-header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 0;
}
.dl-header-actions #_desktop_cart,
.dl-header-actions #_desktop_user_info,
.dl-header-actions .language-selector-wrapper,
.dl-header-actions .currency-selector { display: inline-flex; align-items: center; }
.dl-header-mobile { display: none; }

/* ============ 19. FOOTER v2 ============ */
.dl-footer-brand { padding-bottom: 1.2rem; border-bottom: 1px solid #f1f1f4; margin-bottom: 1.8rem; }
.dl-footer-logo img { max-height: 40px; width: auto; }
.dl-footer-logotext { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; }
.dl-footer-links { row-gap: 1.5rem; }
.dl-copy-sep { margin: 0 .5rem; color: #ccc; }

/* ============ 20. PRODUCT CARD v2 ============ */
.dl-product { height: 100%; }
.dl-card { height: 100%; display: flex; flex-direction: column; }
.dl-thumb-wrap { display: flex; flex-direction: column; height: 100%; }
.dl-thumb-top { position: relative; }
.dl-thumb-link { display: block; overflow: hidden; border-radius: var(--dl-radius) var(--dl-radius) 0 0; }
.dl-thumb-img { transition: transform .35s ease; width: 100%; height: auto; }
.dl-product:hover .dl-thumb-img { transform: scale(1.06); }
.dl-hoverbar { border-radius: 0; }
.dl-quickview { font-size: .78rem; }
.dl-card-body { flex: 1 1 auto; display: flex; flex-direction: column; }
.dl-card-title { order: 0; }
.dl-card-price { order: 1; margin-top: auto; padding-top: .5rem; display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }

/* ============ 21. LISTING v2 ============ */
.dl-listing-title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: .6rem; }
.dl-active-filters { margin-bottom: 1rem; }
.dl-active-filters .active_filters { margin: 0; padding: 0; }

/* ============ 22. HOMEPAGE v2 ============ */
.dl-home { padding-top: .5rem; }
.dl-home-inner > section,
.dl-home-inner > div { margin-bottom: 1rem; }

/* ============ 23. HEADER v2 RESPONSIVE ============ */
@media (max-width: 1199px) {
  .dl-header-nav #search_widget { flex-basis: 200px; min-width: 150px; }
  .dl-header-actions { gap: .7rem; }
}
@media (max-width: 991px) {
  .dl-header-row { flex-wrap: wrap; }
  .dl-header-nav { order: 3; flex-basis: 100%; }
  .dl-header-nav #search_widget { flex: 1 1 auto; max-width: none; }
}
@media (max-width: 767px) {
  .dl-header-logo, .dl-header-nav, .dl-header-actions { display: none; }
  .dl-header-mobile { display: block; width: 100%; }
}

/* ============ 24. HERO CAROUSEL ============ */
.dl-hero { max-width: 1400px; margin: 1rem auto 0; padding: 0 12px; }
.dl-hero-carousel { position: relative; border-radius: 28px; overflow: hidden; background: var(--dl-hero-grad); box-shadow: var(--dl-shadow-sm); }
.dl-hero-slides { margin: 0; }
.dl-hero-slide { position: relative; }
.dl-hero-link { display: block; }
.dl-hero-figure { margin: 0; }
.dl-hero-img { width: 100%; height: clamp(300px, 40vw, 520px); object-fit: cover; display: block; }
.dl-hero-caption {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: min(560px, 92%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
  background: linear-gradient(90deg, rgba(20, 10, 8, .55) 0%, rgba(20, 10, 8, .22) 55%, transparent 100%);
  text-align: left;
}
.dl-hero-title {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.12;
  margin-bottom: .8rem;
  text-transform: none;
}
.dl-hero-desc, .dl-hero-desc p { color: rgba(255, 255, 255, .92); font-size: .95rem; line-height: 1.6; }
.dl-hero-dots { bottom: 1rem; margin: 0; }
.dl-hero-dots li {
  width: .6rem; height: .6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
  border: none;
  margin: 0 .3rem;
}
.dl-hero-dots li.active { background: #fff; width: 1.6rem; }
.dl-hero-arrows .dl-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--dl-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--dl-shadow-sm);
  opacity: 0;
  transition: opacity .2s ease, background .2s ease;
}
.dl-hero-carousel:hover .dl-hero-arrow { opacity: 1; }
.dl-hero-arrows .left { left: 1rem; }
.dl-hero-arrows .right { right: 1rem; }
.dl-hero-arrow:hover { background: var(--dl-dark); color: #fff; }
.dl-hero-arrow .material-icons { font-size: 1.4rem; }
@media (max-width: 767px) {
  .dl-hero { padding: 0 8px; }
  .dl-hero-carousel { border-radius: 20px; }
  .dl-hero-img { height: 300px; }
  .dl-hero-caption { width: 100%; padding: 1.4rem; justify-content: flex-end; background: linear-gradient(0deg, rgba(20,10,8,.6) 0%, rgba(20,10,8,.2) 60%, transparent 100%); }
  .dl-hero-arrows { display: none; }
}

/* ============ 25. PRODUCT PAGE v2 ============ */
.dl-product-page { padding-top: .5rem; }
.dl-product-grid { row-gap: 1.5rem; }
.dl-gallery-card {
  background: var(--dl-light);
  border: 1px solid #f0f0f4;
  border-radius: 28px;
  box-shadow: var(--dl-shadow-sm);
  padding: 1.4rem;
}
.dl-summary-card {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 28px;
  box-shadow: var(--dl-shadow-sm);
  padding: 1.8rem;
  height: 100%;
}
.dl-product-title { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: .8rem; }
.dl-summary-card .product-prices { margin: 1rem 0; }
.dl-summary-card .product-description { color: #555; line-height: 1.7; margin-bottom: 1.2rem; }
.dl-summary-card .product-actions { border-top: 1px solid #f1f1f4; padding-top: 1.2rem; margin-top: 1.2rem; }
.dl-eyebrow {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dl-coral);
  margin-bottom: .4rem;
}
.dl-category-card { position: relative; overflow: hidden; }
.dl-category-title { margin-bottom: .4rem; }
@media (max-width: 767px) {
  .dl-gallery-card, .dl-summary-card { border-radius: 20px; padding: 1.1rem; }
}

/* ================================================================
   V3 — Material-3-expressive layer (projekt lavidaHtmlTemplate)
   primary #b42907 / container #ff5e3a / surfaces / Playfair italic
   ================================================================ */
:root {
  --dl-primary: #b42907;
  --dl-primary-hover: #8b1a00;
  --dl-pcontainer: #ff5e3a;
  --dl-surface: #fbf8ff;
  --dl-sclowest: #ffffff;
  --dl-sclow: #f4f2fd;
  --dl-sc: #eeedf7;
  --dl-schigh: #e8e7f1;
  --dl-schighest: #e3e1ec;
  --dl-onsurf: #1a1b22;
  --dl-onsurf-var: #5a413b;
  --dl-terrac: #d57d5a;
  --dl-tert: #934a2a;
  --dl-outline: #8e7069;
  --dl-outlvar: #e3beb6;
  --dl-secc: #e4e1e6;
  --dl-serif-d: 'Playfair Display', Georgia, serif;
}
.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; vertical-align: middle; }

/* ---- fixed header ---- */
#header .header-top.dl-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(251, 248, 255, .9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, .04);
  border-bottom: none;
  padding: 0;
}
.dl-header-container { max-width: 1280px; width: 100%; padding-left: 1.5rem; padding-right: 1.5rem; }
.dl-header-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 80px; }
.dl-header-brand { display: flex; align-items: center; flex: 0 0 auto; }
.dl-header-brand .dl-logo-title { margin: 0; line-height: 0; }
.dl-header-brand img.logo { max-height: 44px; width: auto; }
.dl-logo-text { display: inline-flex; align-items: center; gap: .4rem; }
.dl-logo-text:hover { text-decoration: none; }
.dl-logo-icon { color: var(--dl-primary); font-size: 28px; }
.dl-logo-word { font-weight: 800; font-size: 1.35rem; letter-spacing: -.02em; color: var(--dl-onsurf); }
.dl-logo-accent { font-family: var(--dl-serif-d); font-style: italic; font-weight: 500; color: var(--dl-primary); }
body#index #wrapper, body #wrapper { padding-top: 80px; }
#header .header-banner:empty { display: none; }

/* nav links + active pill */
.dl-header-nav { flex: 1 1 auto; display: flex; align-items: center; min-width: 0; }
.dl-header-nav #_desktop_top_menu { flex: 0 1 auto; }
#header .dl-header-nav .top-menu { margin: 0; display: flex; align-items: center; gap: .15rem; }
#header .dl-header-nav .top-menu a[data-depth="0"] {
  font-size: .92rem; font-weight: 500; color: var(--dl-onsurf-var);
  padding: .5rem .8rem; border-radius: 999px; white-space: nowrap;
}
#header .dl-header-nav .top-menu a[data-depth="0"]:hover { color: var(--dl-onsurf); background: var(--dl-sc); }
#header .dl-header-nav .top-menu .current a[data-depth="0"],
#header .dl-header-nav .top-menu a.current[data-depth="0"] {
  background: var(--dl-secc); color: var(--dl-onsurf); font-weight: 600;
}
/* search collapses to the right of nav */
.dl-header-nav #search_widget { flex: 0 1 200px; min-width: 150px; max-width: 230px; margin-left: .5rem; }
.dl-header-nav #search_widget input[type="text"] { background: var(--dl-sclow); padding: .55rem 2.6rem .55rem 1rem; }
/* hide classic search button text, keep round icon button */
.dl-header-nav #search_widget button[type="submit"] { background: transparent; color: var(--dl-onsurf-var); width: 2rem; }
.dl-header-nav #search_widget button[type="submit"]:hover { background: var(--dl-schigh); color: var(--dl-onsurf); }

/* actions */
.dl-header-actions { flex: 0 0 auto; display: flex; align-items: center; gap: .8rem; margin-left: auto; }
.dl-header-actions .dl-newsletter-pill {
  display: none;
  align-items: center; gap: .4rem;
  background: var(--dl-sclow); color: var(--dl-onsurf-var) !important;
  font-size: .83rem; font-weight: 500;
  padding: .5rem 1rem; border-radius: 999px; white-space: nowrap;
}
.dl-header-actions .dl-newsletter-pill:hover { background: var(--dl-sc); color: var(--dl-onsurf) !important; transform: none; }
.dl-header-actions .dl-newsletter-pill .material-symbols-outlined { font-size: 18px; }
@media (min-width: 576px) { .dl-header-actions .dl-newsletter-pill { display: inline-flex; } }
#header .dl-header-actions .user-info a { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--dl-onsurf); }
#header .dl-header-actions .user-info .material-icons {
  width: 2rem; height: 2rem; border-radius: 50%; background: var(--dl-primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 18px; margin: 0;
}
#header .dl-header-actions .blockcart .header { position: relative; width: 2.5rem; height: 2.5rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
#header .dl-header-actions .blockcart .header:hover { background: var(--dl-schigh); }
#header .dl-header-actions .blockcart .shopping-cart { font-size: 22px; color: var(--dl-onsurf-var); }
#header .dl-header-actions .blockcart .header > span.hidden-sm-down { display: none; }
#header .dl-header-actions .cart-products-count {
  position: absolute; top: 2px; right: 0;
  background: var(--dl-primary); min-width: 1rem; height: 1rem; line-height: 1rem; font-size: 10px;
}
/* lang/currency pills */
#header .dl-header-actions .language-selector-wrapper .btn-unstyle,
#header .dl-header-actions .currency-selector .btn-unstyle {
  background: var(--dl-sclow); border-radius: 999px; padding: .3rem .6rem;
  display: inline-flex; align-items: center; gap: .3rem;
}

/* ---- primary buttons go M3 ---- */
.btn-primary, .btn.btn-primary { background: var(--dl-primary); border-color: var(--dl-primary); }
.btn-primary:hover, .btn.btn-primary:hover { background: var(--dl-primary-hover) !important; border-color: var(--dl-primary-hover) !important; }
.form-control:focus { border-color: var(--dl-primary); box-shadow: 0 0 0 3px rgba(180, 41, 7, .12); }
input[type="checkbox"], input[type="radio"] { accent-color: var(--dl-primary); }
.custom-checkbox input:checked ~ .custom-control-label::before,
.custom-radio input:checked ~ .custom-control-label::before { background-color: var(--dl-primary); border-color: var(--dl-primary); }
#search_widget input[type="text"]:focus { border-color: var(--dl-primary); box-shadow: 0 0 0 3px rgba(180,41,7,.12); }

/* ---- footer v3 ---- */
#footer { background: var(--dl-sclow); }
.footer-container { background: var(--dl-sclow); border-top: none; padding-top: 3rem; }
.dl-footer-brand { border-bottom: 1px solid rgba(142, 112, 105, .3); margin-bottom: 0; padding-bottom: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.dl-footer-logo img { max-height: 40px; }
.dl-footer-links { padding-top: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(142,112,105,.3); row-gap: 1.5rem; }
.footer-container .dl-footer-links .h3, .footer-container .dl-footer-links .title { color: var(--dl-onsurf); font-size: .72rem; }
.footer-container .dl-footer-links ul > li a { color: var(--dl-onsurf-var); }
.footer-container .dl-footer-links ul > li a:hover { color: var(--dl-primary); }
#contact-infos a[href^="mailto"] { color: var(--dl-primary); }
.dl-payments { border-top: none; margin-top: 0; padding: 1.2rem 0 .4rem; align-items: center; }
.dl-payments::before { content: 'Płatności:'; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--dl-onsurf-var); margin-right: .3rem; }
.dl-payments span { background: var(--dl-surface); box-shadow: 0 1px 4px rgba(0,0,0,.05); border: none; border-radius: 8px; padding: .4rem .7rem; }
.dl-copyright { display: flex; flex-wrap: wrap; gap: .4rem 1rem; align-items: center; justify-content: space-between; text-align: left; }
.dl-copyright a { color: var(--dl-onsurf-var); }
.dl-copyright a:hover { color: var(--dl-primary); }

/* ---- product card v3 ---- */
.product-miniature .thumbnail-container { border: none; border-radius: 20px; background: #fff; }
.product-miniature .thumbnail-top { background: var(--dl-sc); }
.dl-thumb-link { border-radius: 20px 20px 0 0; }
.dl-thumb-img { aspect-ratio: 4/3; object-fit: cover; }
.product-miniature .product-description { padding: 1rem 1rem 1.1rem; }
.product-miniature .product-title { font-size: .98rem; }
.product-miniature .product-title a:hover { color: var(--dl-primary); }
.product-price-and-shipping .price { color: var(--dl-onsurf); }
.discount-percentage, .discount-amount, span.discount-percentage { background: var(--dl-primary); }
.product-flags .on-sale, .product-flags .discount { background: var(--dl-primary); }
.product-flags .new { background: var(--dl-secc); color: var(--dl-onsurf); }
.quick-view:hover { color: var(--dl-primary); }
.variant-links a:hover { border-color: var(--dl-primary); }

/* ---- listing v3 ---- */
.dl-listing-head { margin-bottom: 1rem; }
.dl-listing-title { color: var(--dl-onsurf); }
.block-category.dl-category-card { background: transparent; border: none; box-shadow: none; padding: 0; margin-bottom: 1.2rem; }
.dl-eyebrow { color: var(--dl-primary); }
#subcategories .subcategory-image a:hover { border-color: var(--dl-primary); color: var(--dl-primary); }
.sort-by-row .products-sort-order .select-title { border-radius: 999px; }
.active_filters .filter-block { background: var(--dl-onsurf); }
.pagination .page-list .current a { background: var(--dl-primary); border-color: var(--dl-primary); }

/* ---- product page v3 ---- */
.dl-gallery-card { background: var(--dl-sc); }
.dl-summary-card .product-prices .price, .product-prices .price { color: var(--dl-onsurf); }
.product-add-to-cart .add-to-cart, .product-add-to-cart .btn.add-to-cart { background: var(--dl-primary); border-color: var(--dl-primary); }
.product-add-to-cart .add-to-cart:hover { background: var(--dl-primary-hover) !important; border-color: var(--dl-primary-hover) !important; }
.tabs .nav-tabs .nav-link.active, .product-tabs .nav-tabs .nav-link.active { background: var(--dl-onsurf); }
.address-item.selected { border-color: var(--dl-primary); box-shadow: 0 0 0 3px rgba(180,41,7,.12); }

/* ---- auth / account ---- */
.page-authentication #content h1 { color: var(--dl-onsurf); }

/* ---- popup modal ---- */
.dl-popup-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(26, 27, 34, .55);
  display: none; align-items: center; justify-content: center; padding: 1rem;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.dl-popup-overlay.show { display: flex; }
.dl-popup {
  background: #fff; border-radius: 28px; max-width: 880px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
  position: relative;
}
.dl-popup-media { background: linear-gradient(135deg, #ff5e3a, #b42907); min-height: 320px; display: flex; align-items: center; justify-content: center; color: #fff; padding: 2rem; }
.dl-popup-off { font-size: clamp(3rem, 7vw, 5rem); font-weight: 800; line-height: 1; }
.dl-popup-body { padding: 2.2rem; }
.dl-popup-body h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.dl-popup-body h3 span { color: var(--dl-primary); }
.dl-popup-body p { color: var(--dl-onsurf-var); font-size: .88rem; line-height: 1.65; }
.dl-popup-close { position: absolute; top: .9rem; right: .9rem; width: 2.2rem; height: 2.2rem; border-radius: 50%; border: none; background: var(--dl-sclow); color: var(--dl-onsurf); font-size: 1.1rem; cursor: pointer; }
.dl-popup-close:hover { background: var(--dl-schigh); }
.dl-popup-form { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.1rem; }
.dl-popup-form input { border: 1px solid var(--dl-outlvar); border-radius: 12px; padding: .7rem 1rem; font-size: .85rem; width: 100%; }
.dl-popup-form input:focus { outline: none; border-color: var(--dl-primary); box-shadow: 0 0 0 3px rgba(180,41,7,.12); }
.dl-popup-form button { background: var(--dl-primary); color: #fff; border: none; border-radius: 999px; padding: .8rem; font-weight: 700; cursor: pointer; }
.dl-popup-form button:hover { background: var(--dl-primary-hover); }
.dl-popup-note { font-size: .7rem; color: #999; }
@media (max-width: 767px) { .dl-popup { grid-template-columns: 1fr; } .dl-popup-media { min-height: 180px; } }

/* ---- header v3 responsive ---- */
@media (max-width: 1199px) {
  .dl-header-nav #search_widget { flex-basis: 160px; min-width: 130px; }
}
@media (max-width: 991px) {
  .dl-header-nav { order: 3; flex-basis: 100%; }
  .dl-header-nav #search_widget { flex: 1 1 auto; max-width: none; margin-left: 0; }
  #header .header-top.dl-header { height: auto; min-height: 80px; position: sticky; }
  body#index #wrapper, body #wrapper { padding-top: 0; }
  .dl-header-row { height: auto; min-height: 80px; flex-wrap: wrap; padding: .4rem 0; }
}
@media (max-width: 767px) {
  .dl-header-brand, .dl-header-nav, .dl-header-actions { display: none; }
  .dl-header-mobile { display: block; width: 100%; }
  .dl-header-container { padding-left: 1rem; padding-right: 1rem; }
}

/* ============ 26. HOMEPAGE PLACEHOLDERS ============ */
.dl-section-title { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: .8rem; color: var(--dl-onsurf); }
.dl-section-lead { color: var(--dl-onsurf-var); line-height: 1.7; max-width: 44rem; }
.dl-stories { padding: 3.5rem 0 1rem; }
.dl-stories .container { max-width: 1280px; }
.dl-stories-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 1.2rem; }
.dl-story { display: flex; flex-direction: column; gap: .4rem; }
.dl-story:hover { text-decoration: none; transform: translateY(-3px); }
.dl-story-thumb {
  aspect-ratio: 9/14; border-radius: 20px; background: linear-gradient(160deg, var(--dl-sc), var(--dl-sclow));
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.dl-story-thumb .material-symbols-outlined { font-size: 44px; color: var(--dl-primary); }
.dl-story-views { font-size: .72rem; font-weight: 700; color: var(--dl-onsurf); }
.dl-story-name { font-size: .78rem; color: var(--dl-onsurf-var); }
.dl-flex { padding: 2.5rem 0; }
.dl-flex .container { max-width: 1280px; }
.dl-flex-cta { display: flex; gap: .8rem; margin-top: 1.2rem; flex-wrap: wrap; }
.dl-ai { padding: 2.5rem 0; }
.dl-ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1280px; }
.dl-ai-media {
  border-radius: 28px; aspect-ratio: 1/1; max-height: 480px;
  background: linear-gradient(135deg, #ff5e3a, #b42907);
  display: flex; align-items: center; justify-content: center;
}
.dl-ai-media .material-symbols-outlined { font-size: 120px; color: rgba(255,255,255,.9); }
.dl-ai-body .btn { margin-top: 1.2rem; }
.dl-appband { padding: 1.5rem 0 3rem; }
.dl-appband-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.2rem; max-width: 1280px; }
.dl-appcard { border-radius: 28px; padding: 2.2rem; }
.dl-appcard h3 { font-size: 1.6rem; margin: .4rem 0 .6rem; }
.dl-appcard p { color: var(--dl-onsurf-var); font-size: .9rem; line-height: 1.65; }
.dl-appcard-news { background: var(--dl-sclow); }
.dl-appcard-news .btn { margin-top: 1rem; }
.dl-appcard-app { background: linear-gradient(135deg, #ff5e3a, #b42907); color: #fff; }
.dl-appcard-app h3 { color: #fff; }
.dl-appcard-app p { color: rgba(255,255,255,.9); }
.dl-appcard-app .dl-eyebrow { color: #fff; }
.dl-appcard-badges { display: flex; gap: .6rem; margin-top: 1rem; }
.dl-appcard-badges span { background: rgba(0,0,0,.85); color: #fff; font-size: .7rem; font-weight: 700; padding: .45rem .9rem; border-radius: 8px; }
.dl-seo { padding: 1rem 0 3.5rem; }
.dl-seo .container { max-width: 1280px; }
.dl-seo h2 { font-size: 1.4rem; margin-bottom: .8rem; }
.dl-seo p { color: var(--dl-onsurf-var); line-height: 1.8; font-size: .92rem; margin-bottom: .8rem; }
@media (max-width: 991px) {
  .dl-stories-row { grid-template-columns: repeat(3, 1fr); }
  .dl-ai-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .dl-appband-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) { .dl-stories-row { grid-template-columns: repeat(2, 1fr); } }

/* ============ 27. CMS / AUTH / CONTACT layouts ============ */
.dl-cms-layout { display: grid; grid-template-columns: 1fr 300px; gap: 1.5rem; align-items: start; }
.dl-cms-main { margin: 0; }
.dl-cms-main h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--dl-onsurf); }
.dl-cms-side {
  background: #fff; border: 1px solid #f0f0f4; border-radius: 20px;
  box-shadow: var(--dl-shadow-sm); padding: 1.3rem; position: sticky; top: 100px;
}
.dl-cms-side-title { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: #a0a0a8; margin-bottom: .8rem; }
.dl-cms-side-nav { display: flex; flex-direction: column; gap: .15rem; margin-bottom: 1.1rem; }
.dl-cms-side-nav a { display: flex; align-items: center; gap: .6rem; padding: .55rem .7rem; border-radius: 12px; color: var(--dl-onsurf-var); font-size: .85rem; font-weight: 600; }
.dl-cms-side-nav a:hover { background: var(--dl-sclow); color: var(--dl-primary); text-decoration: none; }
.dl-cms-side-nav .material-symbols-outlined { font-size: 20px; color: var(--dl-primary); }
.dl-cms-side-cta { background: var(--dl-sclow); border-radius: 16px; padding: 1rem; text-align: center; }
.dl-cms-side-cta .material-symbols-outlined { font-size: 28px; color: var(--dl-primary); }
.dl-cms-side-cta p { font-size: .82rem; color: var(--dl-onsurf-var); margin: .4rem 0 .7rem; }
.dl-auth-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.5rem; align-items: stretch; max-width: 960px; margin: 0 auto; }
.dl-auth-main { background: #fff; border: 1px solid #f0f0f4; border-radius: 24px; box-shadow: var(--dl-shadow-md); padding: 2rem; }
.dl-auth-side {
  background: linear-gradient(150deg, #ff5e3a, #b42907); color: #fff;
  border-radius: 24px; padding: 2rem; display: flex; flex-direction: column; justify-content: center; gap: .6rem;
}
.dl-auth-side h3 { color: #fff; font-size: 1.45rem; }
.dl-auth-side p { color: rgba(255,255,255,.88); font-size: .87rem; line-height: 1.65; }
.dl-auth-side .dl-eyebrow { color: #fff; }
.dl-auth-side-icon { font-size: 40px; }
.dl-auth-perks { list-style: none; padding: 0; margin: .6rem 0 1rem; display: flex; flex-direction: column; gap: .5rem; }
.dl-auth-perks li { display: flex; align-items: center; gap: .6rem; font-size: .85rem; font-weight: 600; }
.dl-auth-perks .material-symbols-outlined { font-size: 20px; }
.dl-auth-side .btn-coral { background: #fff; border-color: #fff; color: var(--dl-primary); align-self: flex-start; }
.dl-auth-side .btn-coral:hover { background: var(--dl-onsurf); border-color: var(--dl-onsurf); color: #fff; }
.dl-contact-head { margin-bottom: 1.5rem; }
.dl-contact-title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--dl-onsurf); margin-bottom: .6rem; }
.dl-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.2rem; }
.dl-contact-card {
  background: #fff; border: 1px solid #f0f0f4; border-radius: 20px;
  box-shadow: var(--dl-shadow-sm); padding: 1.3rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.dl-contact-card:hover { text-decoration: none; border-color: var(--dl-primary); transform: translateY(-2px); }
.dl-contact-card .material-symbols-outlined { font-size: 28px; color: var(--dl-primary); margin-bottom: .3rem; }
.dl-contact-card-title { font-weight: 800; color: var(--dl-onsurf); }
.dl-contact-card-sub { font-size: .82rem; color: var(--dl-onsurf-var); }
.dl-contact-formwrap { background: #fff; border: 1px solid #f0f0f4; border-radius: 24px; box-shadow: var(--dl-shadow-sm); padding: 1.8rem; }
@media (max-width: 991px) {
  .dl-cms-layout, .dl-auth-layout { grid-template-columns: 1fr; }
  .dl-cms-side { position: static; }
  .dl-contact-cards { grid-template-columns: 1fr; }
}

/* ============ 28. HEADER FIX + SVG ICONS + SHORTS + SPEED ============ */
/* smaller logo so menu fits */
.dl-header-brand img.logo { max-height: 34px; width: auto; max-width: 190px; }
/* menu: sentence look from UPPERCASE source */
#header .dl-header-nav .top-menu a[data-depth="0"] {
  font-size: .8rem; padding: .5rem .6rem; text-transform: lowercase;
}
#header .dl-header-nav .top-menu a[data-depth="0"]::first-letter { text-transform: uppercase; }
/* search widget: module renders <i> icons, not button */
.dl-header-nav #search_widget form { display: flex; align-items: center; }
.dl-header-nav #search_widget i.material-icons.search { position: static; margin: 0 .4rem 0 .7rem; font-size: 1.1rem; color: var(--dl-onsurf-var); }
.dl-header-nav #search_widget i.material-icons.clear { display: none; }
.dl-header-nav #search_widget input[type="text"] { padding-left: 0; background: transparent; border: none; box-shadow: none; }
.dl-header-nav #search_widget { background: var(--dl-sclow); border-radius: 999px; border: 1px solid transparent; }
.dl-header-nav #search_widget:focus-within { background: #fff; border-color: var(--dl-primary); box-shadow: 0 0 0 3px rgba(180,41,7,.12); }
/* hide newsletter pill earlier to prevent crowding */
@media (max-width: 1250px) { .dl-header-actions .dl-newsletter-pill { display: none; } }
@media (max-width: 1100px) {
  .dl-header-nav #search_widget { flex-basis: 150px; min-width: 130px; }
  #header .dl-header-nav .top-menu a[data-depth="0"] { font-size: .75rem; padding: .5rem .45rem; }
}
/* svg icons */
.dl-ic { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.dl-ic svg { width: 22px; height: 22px; }
.dl-ic-sm svg { width: 18px; height: 18px; }
.dl-ic-md svg { width: 28px; height: 28px; color: var(--dl-primary); }
.dl-ic-xl svg { width: 110px; height: 110px; color: rgba(255,255,255,.9); }
.dl-newsletter-pill .dl-ic svg { width: 18px; height: 18px; }
.dl-cms-side-nav .dl-ic svg { width: 20px; height: 20px; color: var(--dl-primary); }
.dl-auth-perks .dl-ic svg { width: 20px; height: 20px; color: #fff; }
.dl-contact-card .dl-ic svg { width: 28px; height: 28px; color: var(--dl-primary); }
/* youtube shorts cards */
.dl-stories-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.dl-yt-more { display: inline-flex; align-items: center; gap: .45rem; font-size: .83rem; font-weight: 700; color: var(--dl-primary); white-space: nowrap; }
.dl-yt-more:hover { color: var(--dl-primary-hover); }
.dl-yt-more .dl-ic svg { width: 18px; height: 18px; }
.dl-short .dl-story-thumb { padding: 0; background: var(--dl-onsurf); }
.dl-short .dl-story-thumb img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 9/14; display: block; }
.dl-short-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.dl-short-play .dl-ic { width: 3rem; height: 3rem; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--dl-primary); box-shadow: 0 4px 16px rgba(0,0,0,.3); transition: transform .2s ease; }
.dl-short-play .dl-ic svg { width: 1.5rem; height: 1.5rem; margin-left: 2px; }
.dl-short:hover .dl-short-play .dl-ic { transform: scale(1.12); }
.dl-short-badge {
  position: absolute; top: .6rem; left: .6rem;
  background: rgba(0,0,0,.65); color: #fff; font-size: .62rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; padding: .25rem .55rem; border-radius: 999px;
}
.dl-short .dl-story-name { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-weight: 600; }
/* hero first image priority hint handled in markup */

/* ============ 29. PIXEL PASS (type scale + product/cart/video) ============ */
/* type scale */
.dl-listing-title { font-size: 40px; line-height: 48px; letter-spacing: -.025em; font-weight: 800; }
.dl-category-card .category-description, #category-description { font-size: 18px; line-height: 28px; }
.dl-eyebrow { font-size: 11px; line-height: 14px; letter-spacing: .02em; font-weight: 500; }
.product-miniature .product-title { font-size: 18px; line-height: 24px; font-weight: 600; }
.product-price-and-shipping .price { font-size: 24px; line-height: 32px; letter-spacing: -.015em; font-weight: 700; }
/* card spec row */
.dl-spec { display: grid; grid-template-columns: repeat(3, 1fr); gap: .25rem; background: var(--dl-sclow); border-radius: 12px; padding: .55rem .3rem; margin: .6rem 0 .2rem; text-align: center; }
.dl-spec div span { display: block; font-size: 11px; line-height: 14px; letter-spacing: .02em; text-transform: uppercase; color: var(--dl-onsurf-var); font-weight: 500; }
.dl-spec div strong { display: block; font-size: 15px; line-height: 18px; font-weight: 700; color: var(--dl-onsurf); margin-top: 2px; }
.dl-spec div:last-child strong { color: var(--dl-primary); }
/* price card + buybox */
.dl-pricecard { background: var(--dl-sclow); border-radius: 16px; padding: 1rem 1.1rem; margin: 1rem 0; }
.dl-pricecard .product-price { display: flex; align-items: baseline; gap: .6rem; }
.dl-pricecard .current-price-value { font-size: 24px; line-height: 32px; font-weight: 800; letter-spacing: -.015em; }
.dl-instant-note { font-size: 13px; color: var(--dl-onsurf-var); margin: .4rem 0 0; }
.dl-qty-label { font-weight: 700; font-size: .85rem; }
.dl-qtyrow { display: flex; gap: .8rem; align-items: stretch; flex-wrap: wrap; }
.dl-stepper { display: inline-flex; align-items: center; border: 1px solid var(--dl-outlvar); border-radius: 999px; overflow: hidden; background: #fff; }
.dl-stepper-btn { border: none; background: transparent; width: 2.6rem; height: 100%; min-height: 3.1rem; font-size: 1.2rem; font-weight: 700; color: var(--dl-onsurf); cursor: pointer; }
.dl-stepper-btn:hover { background: var(--dl-sclow); color: var(--dl-primary); }
.dl-stepper-input { border: none; width: 2.8rem; text-align: center; font-weight: 800; font-size: 1rem; border-radius: 0; padding: .6rem 0; }
.dl-cta { flex: 1 1 240px; }
.dl-addbtn { width: 100%; min-height: 3.25rem; font-size: .95rem; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; }
.dl-shipnotes { display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; }
.dl-shipnote { display: flex; gap: .7rem; align-items: flex-start; background: var(--dl-sclow); border-radius: 14px; padding: .7rem .9rem; }
.dl-shipnote strong { display: block; font-size: .85rem; }
.dl-shipnote span { font-size: .8rem; color: var(--dl-onsurf-var); }
/* gallery thumbs */
.product-cover img { aspect-ratio: 4/3; object-fit: cover; }
.js-thumb { border-radius: 14px; }
/* accessories title */
.products-section-title, .product-accessories .h5, #categoryproducts .h5, .categoryproducts .products-section-title {
  font-size: 32px; line-height: 40px; letter-spacing: -.02em; font-weight: 700; color: var(--dl-onsurf);
}
/* cart shipbar */
.dl-cart { max-width: 1280px; margin: 0 auto; }
.dl-shipbar { display: flex; gap: 1rem; background: #fff; border: 1px solid #f0f0f4; border-radius: 20px; box-shadow: var(--dl-shadow-sm); padding: 1.1rem 1.3rem; margin-bottom: 1.2rem; align-items: flex-start; }
.dl-shipbar-ic { width: 3rem; height: 3rem; border-radius: 14px; background: var(--dl-sclow); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.dl-shipbar-ic .dl-ic svg { width: 26px; height: 26px; color: var(--dl-primary); }
.dl-shipbar-body { flex: 1 1 auto; }
.dl-shipbar-title { font-weight: 800; font-size: 1rem; margin: 0; color: var(--dl-onsurf); }
.dl-shipbar-sub { font-size: .83rem; color: var(--dl-onsurf-var); margin: .15rem 0 .6rem; }
.dl-shipbar-track { height: .45rem; background: var(--dl-schigh); border-radius: 999px; overflow: hidden; }
.dl-shipbar-fill { height: 100%; background: var(--dl-primary); border-radius: 999px; transition: width .5s ease; }
.dl-shipbar-pct { font-size: .75rem; color: var(--dl-onsurf-var); margin: .3rem 0 0; }
.dl-cart-title { font-size: 40px; line-height: 48px; letter-spacing: -.025em; font-weight: 800; }
.dl-continue { display: inline-flex; align-items: center; gap: .3rem; font-weight: 600; margin-top: .8rem; }
.dl-summary-card .cart-summary-line .label, .dl-summary-card .cart-summary-line .value { font-size: .9rem; }
.dl-paybadges { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #f1f1f4; }
.dl-paybadges span { background: var(--dl-sclow); border-radius: 8px; font-size: .62rem; font-weight: 800; padding: .35rem .55rem; color: var(--dl-onsurf); }
.dl-trust { background: #fff; border: 1px solid #f0f0f4; border-radius: 20px; box-shadow: var(--dl-shadow-sm); padding: 1rem 1.2rem; margin-top: 1rem; display: flex; flex-direction: column; gap: .8rem; }
.dl-trust-row { display: flex; gap: .7rem; align-items: flex-start; }
.dl-trust-row strong { display: block; font-size: .83rem; }
.dl-trust-row span { font-size: .78rem; color: var(--dl-onsurf-var); }
.dl-trust-row .dl-ic svg { color: var(--dl-primary); }
/* cart lines */
.cart-item .product-line-grid-left img { border-radius: 14px; }
/* video modal */
.dl-video-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(26,27,34,.8); display: none; align-items: center; justify-content: center; padding: 1rem; }
.dl-video-overlay.show { display: flex; }
.dl-video-box { width: min(420px, 100%); position: relative; }
.dl-video-frame { aspect-ratio: 9/16; max-height: 80vh; border-radius: 20px; overflow: hidden; background: #000; box-shadow: 0 24px 70px rgba(0,0,0,.5); }
.dl-video-frame iframe { width: 100%; height: 100%; border: none; }
.dl-video-close { position: absolute; top: -.9rem; right: -.4rem; width: 2.4rem; height: 2.4rem; border-radius: 50%; border: none; background: #fff; color: var(--dl-onsurf); font-size: 1.3rem; cursor: pointer; z-index: 2; }
.dl-video-yt { display: block; text-align: center; color: #fff; font-weight: 700; font-size: .85rem; margin-top: .8rem; }
/* company line */
.dl-company { font-size: 11px; color: var(--dl-onsurf-var); opacity: .8; margin-top: .6rem; }
/* products-top row */
#js-product-list-top .row, .products-selection .row { align-items: center; }
#js-product-list-top .total-products p { font-size: 15px; color: var(--dl-onsurf-var); }
@media (max-width: 767px) {
  .dl-listing-title, .dl-cart-title { font-size: 32px; line-height: 40px; }
  .product-miniature .product-title { font-size: 15px; line-height: 20px; }
  .dl-spec { display: none; }
}

/* ============ 30. MENUCATALOG + GUIDES + HERO BTN ============ */
.dl-hero-btn {
  display: inline-block; margin-top: 1.2rem; align-self: flex-start;
  background: var(--dl-onsurf); color: #fff !important;
  font-weight: 600; font-size: .85rem; padding: .7rem 1.8rem; border-radius: 999px;
}
.dl-hero-btn:hover { background: var(--dl-primary); }
.dl-menucatalog { max-width: 1280px; margin: 0 auto; padding: 3rem 1.5rem; }
.dl-cat-pills { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .5rem; scrollbar-width: none; }
.dl-cat-pills::-webkit-scrollbar { display: none; }
.dl-cat-pill {
  background: #fff; border: 1px solid var(--dl-outlvar); color: var(--dl-onsurf);
  padding: .45rem 1.1rem; border-radius: 999px; font-size: .8rem; font-weight: 700;
  white-space: nowrap; box-shadow: var(--dl-shadow-sm);
}
.dl-cat-pill:hover { border-color: var(--dl-primary); color: var(--dl-primary); text-decoration: none; }
.dl-cat-pill.active { background: #fff; border-color: var(--dl-outlvar); }
.dl-cat-subtabs { display: flex; gap: .25rem; overflow-x: auto; padding: .8rem 0; border-bottom: 1px solid #f1f1f4; margin-bottom: 2rem; }
.dl-cat-subtab { color: var(--dl-onsurf-var); font-size: .8rem; font-weight: 600; padding: .5rem .4rem; white-space: nowrap; }
.dl-cat-subtab:hover { color: var(--dl-onsurf); text-decoration: none; }
.dl-cat-subtab.active { color: var(--dl-onsurf); font-weight: 800; border-bottom: 2px solid var(--dl-onsurf); margin-bottom: -1px; }
.dl-cat-grid { scroll-behavior: smooth; }
.dl-cat-arrows { display: flex; justify-content: flex-end; gap: .5rem; margin-top: 2rem; }
.dl-cat-arrow {
  width: 2rem; height: 2rem; border-radius: 50%; border: 1px solid var(--dl-outlvar);
  background: #fff; color: #a0a0a8; font-size: 1.2rem; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.dl-cat-arrow:hover { color: var(--dl-onsurf); border-color: var(--dl-onsurf); }
/* index minimal cards = dish look */
#index .product-miniature .product-description { padding: 1.25rem; }
#index .product-miniature .product-title { font-size: .875rem; line-height: 1.4; min-height: 0; }
#index .highlighted-informations { display: none; }
#index .product-flags { display: none; }
/* guides strip */
.dl-guides { padding: 1rem 0 3rem; }
.dl-guides .container { max-width: 1280px; }
.dl-guides-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.dl-guides-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.dl-guide-card { background: #fff; border: 1px solid #f0f0f4; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--dl-shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.dl-guide-card:hover { text-decoration: none; transform: translateY(-4px); box-shadow: var(--dl-shadow-md); }
.dl-guide-thumb { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--dl-sc); }
.dl-guide-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.dl-guide-card:hover .dl-guide-thumb img { transform: scale(1.06); }
.dl-guide-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .25rem; }
.dl-guide-cat { font-size: 11px; font-weight: 500; color: #a0a0a8; }
.dl-guide-title { font-size: .875rem; font-weight: 700; line-height: 1.4; color: var(--dl-onsurf); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 991px) { .dl-guides-grid { grid-template-columns: repeat(2, 1fr); } .dl-menucatalog { padding: 2rem 1rem; } }
@media (max-width: 576px) { .dl-guides-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }

/* ============ 32. HOME PROGRAMS + APPLICATION LAYOUT ============ */
.dl-programs { padding: 1rem 0 2.5rem; }
.dl-program-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; max-width: 1280px; margin: 0 auto; }
.dl-program-card { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; border-radius: 18px; background: var(--dl-sc); box-shadow: var(--dl-shadow-sm); }
.dl-program-card img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.dl-program-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(26,27,34,.65)); pointer-events: none; }
.dl-program-card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--dl-shadow-md); }
.dl-program-card:hover img { transform: scale(1.06); }
.dl-program-label { position: absolute; z-index: 1; left: .7rem; right: .7rem; bottom: .7rem; padding: .55rem .7rem; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--dl-onsurf); text-align: center; font-weight: 700; font-size: .76rem; line-height: 1.2; }
/* Reference site uses generous surface spacing, not Bootstrap's compressed rows. */
#wrapper > .container { max-width: 1280px; }
#content-wrapper { padding-left: 0; padding-right: 0; }
#main { padding-bottom: 2rem; }
.breadcrumb { max-width: 1280px; margin: 0 auto; padding: 1rem 1.5rem .5rem; }
.dl-menucatalog .products { margin-left: -.75rem; margin-right: -.75rem; }
.dl-menucatalog .products > .dl-product { padding-left: .75rem; padding-right: .75rem; margin-bottom: 1.5rem; }
.dl-menucatalog .product-miniature .thumbnail-container { box-shadow: 0 1px 5px rgba(26,27,34,.07); }
.dl-menucatalog .product-miniature:hover .thumbnail-container { box-shadow: 0 12px 30px rgba(26,27,34,.12); }

/* ============ 33. REGISTER / PAGE APP SHELL ============ */
.dl-register-layout { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 1.5rem; align-items: stretch; padding: 2rem 0 4rem; }
.dl-register-main { background: #fff; border: 1px solid #eeeef3; border-radius: 24px; padding: 2rem; box-shadow: var(--dl-shadow-sm); }
.dl-register-breadcrumb { color: var(--dl-onsurf-var); font-size: .8rem; font-weight: 600; margin-bottom: 1.5rem; }
.dl-register-title { font-size: 32px; line-height: 40px; margin: 0 0 .5rem; }
.dl-register-title em { font-family: var(--dl-serif-d); color: var(--dl-primary); font-style: italic; font-weight: 500; }
.dl-register-lead { max-width: 620px; color: var(--dl-onsurf-var); font-size: 15px; line-height: 22px; margin-bottom: 1.5rem; }
.dl-register-form { max-width: none; margin: 0; padding: 0; border: 0; box-shadow: none; }
.dl-existing-account { background: var(--dl-sclow); border-radius: 12px; padding: .75rem 1rem; color: var(--dl-onsurf-var); font-size: .85rem; }
.dl-existing-account a { color: var(--dl-primary); font-weight: 700; }
.dl-register-side { background: linear-gradient(145deg, #ff5e3a, #b42907); color: #fff; border-radius: 24px; padding: 2rem; display: flex; flex-direction: column; justify-content: center; gap: .7rem; }
.dl-register-side h2 { color: #fff; font-size: 28px; line-height: 36px; }
.dl-register-side p { color: rgba(255,255,255,.88); line-height: 1.65; }
.dl-register-side .dl-eyebrow { color: #fff; }
.dl-register-side > .dl-ic svg { color: #fff; }
.dl-register-side ul { list-style: none; margin: .5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.dl-register-side li { display: flex; align-items: center; gap: .6rem; font-size: .84rem; font-weight: 600; }
.dl-register-side li .dl-ic svg { color: #fff; }
.dl-register-side li .dl-ic { width: 20px; }

/* Application views share the reference's soft surfaces and compact panels. */
body#authentication #content-wrapper, body#registration #content-wrapper, body#cart #content-wrapper { max-width: 1280px; margin: 0 auto; }
body#authentication #content, body#registration #content { background: transparent; border: 0; box-shadow: none; padding: 0; max-width: none; margin: 0; }
body#cms #content-wrapper, body#contact #content-wrapper { max-width: 1280px; margin: 0 auto; }
.dl-cms-main { background: #fff; border: 1px solid #eeeef3; border-radius: 20px; padding: 2rem; box-shadow: var(--dl-shadow-sm); }
.dl-cms-main p, .dl-cms-main li { font-size: 15px; line-height: 1.8; color: var(--dl-onsurf-var); }
.dl-cms-main h2 { font-size: 24px; line-height: 32px; margin-top: 2rem; }
.dl-cms-main table { width: 100%; border-collapse: collapse; }
.dl-cms-main td, .dl-cms-main th { border-bottom: 1px solid #eeeef3; padding: .7rem; text-align: left; }
.dl-cms-editorial { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #eeeef3; }
.dl-cms-editorial h1 { font-size: 40px; line-height: 48px; letter-spacing: -.025em; margin: .35rem 0 1.2rem; }
.dl-cms-editorial h2 { font-size: 24px; line-height: 32px; margin: 1.8rem 0 .65rem; }
.dl-cms-editorial p { color: var(--dl-onsurf-var); font-size: 15px; line-height: 1.8; }
.dl-editorial-section { padding-top: .25rem; }
.dl-editorial-callout { display: flex; align-items: flex-start; gap: 1rem; margin: 2rem 0; padding: 1.5rem; border-radius: 16px; background: var(--dl-sclow); }
.dl-editorial-callout h2 { margin: 0 0 .4rem; }
.dl-editorial-callout p { margin: 0; }

@media (max-width: 991px) {
  .dl-program-grid { grid-template-columns: repeat(3, 1fr); }
  .dl-register-layout { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .dl-program-grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .dl-program-label { font-size: .68rem; padding: .45rem .4rem; }
  .dl-register-layout { padding: 1rem 0 2rem; }
  .dl-register-main, .dl-register-side { padding: 1.25rem; border-radius: 18px; }
  .dl-cms-editorial h1 { font-size: 32px; line-height: 40px; }
}

/* ============ 31. CARD FIXES (clamp, price, wishlist, quickview) ============ */
.product-miniature .product-title a {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-miniature .product-title { min-height: 0; }
.dl-card-price { gap: .45rem; }
.dl-card-price .regular-price { font-size: .82rem; order: 2; }
.dl-card-price .price { order: 1; }
/* empty reviews collapse */
.dl-card .product-list-reviews { margin: 0; padding: 0; }
.dl-card .grade-stars:empty, .dl-card .comments-nb:empty { display: none; }
/* wishlist heart top-right */
.js-product-miniature { position: relative; }
.wishlist-button-add {
  position: absolute; top: .6rem; right: .6rem; z-index: 3;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: rgba(255, 255, 255, .95); border: none;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--dl-onsurf-var); box-shadow: var(--dl-shadow-sm); cursor: pointer;
}
.wishlist-button-add:hover { color: var(--dl-primary); transform: scale(1.08); }
.wishlist-button-add .material-icons { font-size: 1.15rem; margin: 0; }
/* quick view as centered pill */
.dl-hoverbar { display: flex; justify-content: center; padding: .5rem; }
.dl-quickview {
  background: var(--dl-onsurf); color: #fff !important; border-radius: 999px;
  font-size: .75rem; font-weight: 700; padding: .45rem 1rem;
  display: inline-flex; align-items: center; gap: .35rem;
}
.dl-quickview:hover { background: var(--dl-primary); }
.dl-quickview .material-icons { font-size: 1rem; }
/* flags stay top-left on image */
.product-flags { padding: .6rem 0 0 .6rem; }

/* ============ 34. CART V2 — pixel per ZIP koszyk.txt ============ */
.dl-cartv2 { max-width: 1280px; margin: 0 auto; padding: 0 1rem 3rem; }
@media (min-width: 768px) { .dl-cartv2 { padding: 1.5rem 1.5rem 4rem; } }

/* breadcrumb */
.dl-crumb { display: flex; align-items: center; gap: .5rem; padding: 1.2rem 0 .5rem; font-size: 13px; color: var(--dl-onsurf-var); }
.dl-crumb a { color: var(--dl-onsurf-var); }
.dl-crumb a:hover { color: var(--dl-primary); }
.dl-crumb > span:last-child { color: var(--dl-onsurf); font-weight: 600; }

/* header */
.dl-cart-head { display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem 0 1.7rem; }
@media (min-width: 768px) { .dl-cart-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.dl-stepbadge { display: inline-flex; align-items: center; gap: .5rem; background: var(--dl-schigh); color: var(--dl-onsurf-var); font-size: 11px; line-height: 14px; letter-spacing: .04em; font-weight: 700; text-transform: uppercase; padding: .35rem .8rem; border-radius: 999px; margin-bottom: .6rem; }
.dl-stepdot { width: 8px; height: 8px; border-radius: 50%; background: var(--dl-primary); }
.dl-cart-baseline { display: flex; align-items: baseline; gap: .8rem; }
.dl-cart-title { font-size: 40px; line-height: 48px; letter-spacing: -.025em; font-weight: 800; margin: 0; color: var(--dl-onsurf); }
.dl-cart-count { font-family: var(--dl-serif-d); font-style: italic; font-weight: 500; font-size: 22px; color: var(--dl-tert); }
.dl-instant { display: flex; align-items: center; gap: .8rem; background: var(--dl-sclow); border-radius: 12px; padding: .8rem 1rem; box-shadow: var(--dl-shadow-sm); max-width: 460px; }
.dl-instant-ic { width: 32px; height: 32px; border-radius: 50%; background: var(--dl-primary-fixed, #ffdad2); color: var(--dl-primary); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.dl-instant-ic .dl-ic svg { width: 18px; height: 18px; }
.dl-instant p { font-size: 13px; line-height: 18px; margin: 0; color: var(--dl-onsurf-var); }
.dl-instant strong { color: var(--dl-onsurf); font-weight: 600; }
.dl-instant em { color: var(--dl-primary); font-weight: 700; font-style: normal; }

/* grid */
.dl-cart-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
@media (min-width: 992px) { .dl-cart-grid { grid-template-columns: 2fr 1fr; } }

/* tracker */
.dl-tracker { background: var(--dl-sclowest); border-radius: 16px; box-shadow: var(--dl-shadow-sm); padding: 1rem 1.2rem; display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.dl-tracker-top { display: flex; align-items: center; justify-content: space-between; gap: .8rem; color: var(--dl-onsurf); flex-wrap: wrap; }
.dl-tracker-label { display: flex; align-items: center; gap: .5rem; font-size: 16px; font-weight: 600; }
.dl-tracker-label .dl-ic svg { width: 22px; height: 22px; color: var(--dl-primary); }
.dl-tracker-missing { font-size: 14px; font-weight: 700; color: var(--dl-primary); }
.dl-tracker-missing.dl-done { color: #1e9e5a; }
.dl-tracker-bar { height: 10px; border-radius: 999px; background: var(--dl-schighest); overflow: hidden; margin-top: .2rem; }
.dl-tracker-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--dl-primary), var(--dl-pcontainer)); transition: width .5s ease; }
.dl-tracker-foot { display: flex; justify-content: space-between; gap: .8rem; font-size: 13px; color: var(--dl-onsurf-var); margin: .2rem 0 0; flex-wrap: wrap; }
.dl-tracker-pct { color: var(--dl-tert); font-weight: 500; }

/* item cards */
.dl-cartv2 .cart-overview ul.cart-items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.dl-cartv2 .cart-overview li.cart-item { margin: 0; }
.dl-line { position: relative; display: flex; flex-direction: column; gap: .8rem; background: var(--dl-sclowest); border-radius: 16px; box-shadow: var(--dl-shadow-sm); padding: 1rem; transition: box-shadow .2s ease; }
@media (min-width: 576px) { .dl-line { flex-direction: row; align-items: stretch; } }
.dl-line:hover { box-shadow: var(--dl-shadow-md); }
.dl-line-img { width: 100%; height: 128px; border-radius: 12px; overflow: hidden; background: var(--dl-sc); flex: 0 0 auto; position: relative; }
@media (min-width: 576px) { .dl-line-img { width: 128px; } }
.dl-line-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dl-line-badge { position: absolute; top: 8px; left: 8px; padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; background: rgba(26,27,34,.8); color: #fbf8ff; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.dl-badge-digital { background: var(--dl-inverse-surface, #2f3038); }
.dl-line-body { flex: 1 1 auto; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.dl-line-toprow { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.dl-line-eyebrow { font-size: 11px; line-height: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--dl-primary); display: block; }
.dl-line-info h3 { font-size: 18px; line-height: 24px; font-weight: 600; margin: 2px 0 0; color: var(--dl-onsurf); }
.dl-line-info h3 a { color: var(--dl-onsurf); }
.dl-line-info h3 a:hover { color: var(--dl-primary); text-decoration: none; }
.dl-line-desc { font-size: 13px; line-height: 18px; color: var(--dl-onsurf-var); margin: .25rem 0 0; }
.dl-line-attrs { display: flex; flex-wrap: wrap; gap: .35rem 1rem; font-size: 13px; color: var(--dl-onsurf-var); margin-top: .3rem; }
.dl-line-attrs strong { color: var(--dl-onsurf); }
.dl-line-note { display: inline-flex; align-items: center; gap: .4rem; font-size: 13px; margin-top: .5rem; color: var(--dl-onsurf-var); }
.dl-line-note .dl-ic svg { width: 16px; height: 16px; }
.dl-note-digital { color: var(--dl-tert); }
.dl-note-digital .dl-ic svg { color: var(--dl-tert); }
.dl-line-remove { width: 2.2rem; height: 2.2rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--dl-onsurf-var); flex: 0 0 auto; }
.dl-line-remove:hover { background: #ffdad6; color: #ba1a1a; }
.dl-line-remove .dl-ic svg { width: 20px; height: 20px; }
.dl-line-ctrlrow { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1rem; padding: .5rem .8rem; background: rgba(244,242,253,.5); border-radius: 12px; flex-wrap: wrap; }
.dl-line-qtywrap { display: flex; align-items: center; gap: .6rem; }
.dl-qty-label { font-size: 11px; letter-spacing: .02em; text-transform: uppercase; color: var(--dl-onsurf-var); font-weight: 500; }
.dl-qtybox { display: inline-flex; align-items: center; background: var(--dl-sclowest); border-radius: 999px; box-shadow: var(--dl-shadow-sm); padding: 2px 4px; }
.dl-qty-btn { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; border: none; background: transparent; color: var(--dl-onsurf-var); font-size: 15px; font-weight: 700; cursor: pointer; border-radius: 50%; }
.dl-qty-btn:hover { color: var(--dl-onsurf); background: var(--dl-sclow); }
.dl-qty-input { width: 30px; border: none; text-align: center; font-size: 14px; font-weight: 700; color: var(--dl-onsurf); padding: 0; -moz-appearance: textfield; }
.dl-qty-input::-webkit-inner-spin-button, .dl-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.dl-line-pricewrap { display: flex; align-items: baseline; gap: .6rem; }
.dl-line-regular { font-size: 13px; color: #a0a0a8; text-decoration: line-through; }
.dl-line-price { font-size: 24px; line-height: 32px; letter-spacing: -.015em; font-weight: 700; color: var(--dl-onsurf); }

/* coupon box */
.dl-coupon { background: var(--dl-sclowest); border-radius: 16px; box-shadow: var(--dl-shadow-sm); padding: 1rem 1.2rem; margin-top: 1rem; display: flex; flex-direction: column; gap: .8rem; }
@media (min-width: 640px) { .dl-coupon { flex-direction: row; align-items: center; justify-content: space-between; } }
.dl-coupon-head { display: flex; align-items: center; gap: .7rem; }
.dl-coupon-ic { width: 36px; height: 36px; border-radius: 50%; background: var(--dl-sc); display: flex; align-items: center; justify-content: center; color: var(--dl-onsurf-var); flex: 0 0 auto; }
.dl-coupon-ic .dl-ic svg { width: 20px; height: 20px; }
.dl-coupon-title { font-size: 18px; font-weight: 600; color: var(--dl-onsurf); margin: 0; line-height: 24px; }
.dl-coupon-sub { font-size: 13px; color: var(--dl-onsurf-var); margin: 0; }
.dl-coupon-formwrap { width: 100%; }
@media (min-width: 640px) { .dl-coupon-formwrap { width: auto; } }
.dl-coupon-form { display: flex; gap: .5rem; }
.dl-coupon-input { flex: 1 1 auto; min-width: 200px; border-radius: 999px; border: 1px solid var(--dl-outlvar); background: var(--dl-sclow); padding: .65rem 1.1rem; font-size: 14px; color: var(--dl-onsurf); }
.dl-coupon-input:focus { background: #fff; outline: none; border-color: var(--dl-primary); box-shadow: 0 0 0 3px rgba(180,41,7,.25); }
.dl-coupon-btn { border-radius: 999px; background: var(--dl-onsurf); color: var(--dl-sclowest); font-size: 13px; font-weight: 600; padding: .65rem 1.3rem; border: none; cursor: pointer; }
.dl-coupon-btn:hover { background: var(--dl-inverse-surface, #2f3038); }
.dl-coupon-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .3rem; }
.dl-coupon-list li { display: flex; justify-content: space-between; font-size: 13px; background: var(--dl-sclow); border-radius: 10px; padding: .5rem .8rem; }
.dl-coupon-val { display: inline-flex; align-items: center; gap: .5rem; color: var(--dl-primary); font-weight: 700; }
.dl-coupon .promo-code-button, .dl-coupon .collapse-button { display: none; }
.dl-coupon .alert-danger { margin-top: .5rem; }

/* upsell */
.dl-upsell { margin-top: 1.2rem; }
.dl-upsell-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: .8rem; }
.dl-upsell-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--dl-primary); display: block; }
.dl-upsell-head h2 { font-size: 24px; line-height: 32px; letter-spacing: -.015em; font-weight: 700; color: var(--dl-onsurf); margin: 0; }
.dl-upsell-tag { display: none; align-items: center; gap: .3rem; font-size: 13px; color: var(--dl-tert); font-weight: 600; white-space: nowrap; }
@media (min-width: 576px) { .dl-upsell-tag { display: inline-flex; } }
.dl-upsell-tag .dl-ic svg { width: 16px; height: 16px; }
.dl-upsell .js-crossselling, .dl-upsell .crossselling, .dl-upsell [data-crossselling] { margin-top: .5rem; }
.dl-upsell .products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.dl-upsell .product-miniature .product-title { font-size: 16px; }

/* summary card */
.dl-cart-side { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 992px) { .dl-cart-side { position: sticky; top: 112px; } }
.dl-summary-inner { display: flex; flex-direction: column; gap: .8rem; border: none; border-radius: 16px; box-shadow: 0 6px 20px rgba(26,27,34,.08); padding: 1.2rem; background: var(--dl-sclowest); position: relative; overflow: hidden; }
.dl-summary-inner::before { content: ''; position: absolute; top: -48px; right: -48px; width: 128px; height: 128px; border-radius: 50%; background: rgba(180,41,7,.08); -webkit-filter: blur(40px); filter: blur(40px); pointer-events: none; }
.dl-totals-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: .3rem; position: relative; z-index: 1; }
.dl-totals-head h2 { font-size: 24px; line-height: 32px; font-weight: 700; color: var(--dl-onsurf); margin: 0; }
.dl-totals-head .dl-ic svg { width: 24px; height: 24px; color: var(--dl-tert); }
.dl-totals-lines { display: flex; flex-direction: column; gap: .6rem; position: relative; z-index: 1; }
.dl-totals-line { display: flex; justify-content: space-between; align-items: center; font-size: 15px; color: var(--dl-onsurf-var); }
.dl-totals-line .value { color: var(--dl-onsurf); font-weight: 600; }
.dl-totals-line .dl-line-discount { color: var(--dl-primary); }
.dl-summary-totals, .dl-summary-inner .cart-summary-totals { position: relative; z-index: 1; }
.dl-summary-inner .cart-total { border-top: 1px solid #f1f1f4; margin-top: .4rem; padding: .9rem 1rem; background: var(--dl-sclow); border-radius: 12px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.dl-summary-inner .cart-total .label { font-size: 18px; font-weight: 600; color: var(--dl-onsurf); display: block; }
.dl-summary-inner .cart-total .value { font-size: 32px; font-weight: 800; color: var(--dl-primary); letter-spacing: -.02em; }
.dl-summary-inner .cart-summary-line { display: flex; justify-content: space-between; }
.dl-checkout { position: relative; z-index: 1; padding: 0; }
.dl-ctabtn { display: flex; align-items: center; justify-content: center; gap: .5rem; width: 100%; padding: 1rem 1.5rem; border-radius: 999px; background: linear-gradient(90deg, var(--dl-primary), var(--dl-pcontainer)); color: #fff; font-size: 18px; line-height: 24px; font-weight: 700; letter-spacing: .01em; text-align: center; transition: box-shadow .2s ease, transform .1s ease; }
.dl-ctabtn:hover { color: #fff; text-decoration: none; box-shadow: 0 8px 20px -4px rgba(255,94,58,.45); }
.dl-ctabtn:active { transform: scale(.98); }
.dl-ctabtn.disabled { opacity: .55; pointer-events: none; }
.dl-ctabtn .dl-ic svg { width: 20px; height: 20px; }
.dl-payrow { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; padding-top: .3rem; position: relative; z-index: 1; }
.dl-payrow span { background: var(--dl-schigh); color: var(--dl-onsurf); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.dl-checkout .text-sm-center .btn { display: none; }

/* trust */
.dl-trustv2 { background: var(--dl-sclow); border-radius: 16px; padding: 1.2rem; display: flex; flex-direction: column; gap: 1rem; }
.dl-trustv2-row { display: flex; align-items: center; gap: .8rem; }
.dl-trustv2-ic { width: 32px; height: 32px; border-radius: 50%; background: var(--dl-sclowest); display: flex; align-items: center; justify-content: center; color: var(--dl-primary); box-shadow: var(--dl-shadow-sm); flex: 0 0 auto; }
.dl-trustv2-ic .dl-ic svg { width: 18px; height: 18px; }
.dl-trustv2-row strong { display: block; font-size: 15px; line-height: 20px; font-weight: 600; color: var(--dl-onsurf); }
.dl-trustv2-row span { font-size: 13px; line-height: 16px; color: var(--dl-onsurf-var); display: block; }

/* hide my old v1 cart widgets if any linger */
.dl-shipbar, .dl-trust { display: none; }

@media (max-width: 576px) {
  .dl-cart-title { font-size: 32px; line-height: 40px; }
  .dl-instant { order: 2; }
  .dl-line-ctrlrow { padding: .6rem; }
  .dl-upsell .products { grid-template-columns: 1fr; }
}

/* ============ 35. ICON CENTERING + UPSELL CARDS ============ */
.dl-ic { display: inline-flex; align-items: center; justify-content: center; line-height: 0; vertical-align: middle; flex: none; }
.dl-ic svg { display: block; margin: 0; }
/* guarantee flex parents for icon spots */
.dl-tracker-label, .dl-instant, .dl-line-note, .dl-line-remove, .dl-totals-head,
.dl-upsell-tag, .dl-crumb, .dl-newsletter-pill, .dl-coupon-head, .dl-trustv2-row,
.dl-ctabtn, .dl-stepbadge { display: flex; }
.dl-instant-ic, .dl-coupon-ic, .dl-trustv2-ic, .dl-instant-ic { display: flex; align-items: center; justify-content: center; }
.dl-crumb .dl-ic svg { width: 14px; height: 14px; }
.dl-upsell-head, .dl-totals-head { align-items: center; }

/* upsell cards (ZIP: image 80px, label, title, price, add btn) */
.dl-upgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.dl-upcard { display: flex; align-items: center; gap: .8rem; background: var(--dl-sclowest); border-radius: 16px; box-shadow: var(--dl-shadow-sm); padding: .8rem; transition: box-shadow .2s ease; }
.dl-upcard:hover { box-shadow: var(--dl-shadow-md); text-decoration: none; }
.dl-upimg { width: 80px; height: 80px; border-radius: 12px; overflow: hidden; background: var(--dl-sc); flex: 0 0 auto; }
.dl-upimg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.dl-upcard:hover .dl-upimg img { transform: scale(1.06); }
.dl-upbody { flex: 1 1 auto; min-width: 0; }
.dl-uplabel { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--dl-primary); display: block; }
.dl-uptitle { font-size: 15px; line-height: 20px; font-weight: 600; color: var(--dl-onsurf); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 2px 0 4px; }
.dl-upprice { display: flex; align-items: baseline; gap: .45rem; }
.dl-upprice strong { font-size: 16px; font-weight: 800; color: var(--dl-onsurf); }
.dl-upprice s { font-size: 12px; color: #a0a0a8; }
.dl-upadd { display: inline-flex; align-items: center; gap: .35rem; background: var(--dl-onsurf); color: var(--dl-sclowest) !important; border: none; border-radius: 999px; font-size: 12px; font-weight: 700; padding: .5rem .95rem; cursor: pointer; flex: 0 0 auto; text-decoration: none !important; }
.dl-upadd:hover { background: var(--dl-primary); color: #fff !important; }
.dl-upadd .dl-ic svg { width: 14px; height: 14px; }
@media (max-width: 640px) { .dl-upgrid { grid-template-columns: 1fr; } .dl-upimg { width: 64px; height: 64px; } }

/* ============ 36. LISTING V3 (per pozycje w menu.txt) ============ */
.dl-listing-wrap { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem 3rem; position: relative; }
.dl-listing { position: relative; }
/* decorative blurs */
.dl-listing::before, .dl-listing::after { content: ''; position: absolute; border-radius: 50%; -webkit-filter: blur(64px); filter: blur(64px); pointer-events: none; z-index: 0; }
.dl-listing::before { top: 96px; right: 40px; width: 384px; height: 384px; background: rgba(180,41,7,.05); }
.dl-listing::after { top: 384px; left: 24px; width: 320px; height: 320px; background: rgba(255,181,153,.15); }
.dl-listing-wrap { position: relative; z-index: 1; }
/* lead */
.dl-lead { padding: .5rem 0 1.5rem; max-width: 768px; }
.dl-lead-badge { display: inline-flex; align-items: center; gap: .45rem; background: rgba(255,218,210,.6); color: var(--dl-onsurf-var); padding: .25rem .75rem; border-radius: 999px; font-size: 11px; line-height: 14px; letter-spacing: .04em; font-weight: 700; text-transform: uppercase; margin-bottom: .6rem; }
.dl-lead-badge .dl-ic svg { width: 15px; height: 15px; color: var(--dl-primary); }
.dl-lead-title { font-size: 40px; line-height: 48px; letter-spacing: -.025em; font-weight: 800; color: var(--dl-onsurf); margin: 0 0 .5rem; }
.dl-lead-title em { font-family: var(--dl-serif-d); color: var(--dl-primary); font-style: italic; font-weight: 500; }
.dl-lead-text { font-size: 18px; line-height: 28px; color: var(--dl-onsurf-var); margin: 0; }
/* ribbon tabs under lead (subcategories restyled) */
#subcategories ul { display: flex; gap: .25rem; background: var(--dl-sclow); border-radius: 999px; padding: 4px; overflow-x: auto; scrollbar-width: none; }
#subcategories ul::-webkit-scrollbar { display: none; }
#subcategories .subcategory-image a { border: none; background: transparent; box-shadow: none; padding: .6rem 1.1rem; border-radius: 999px; font-size: 15px; font-weight: 600; color: var(--dl-onsurf-var); }
#subcategories .subcategory-image a:hover { background: rgba(255,255,255,.5); color: var(--dl-onsurf); }
#subcategories { margin: 0 0 1.5rem; }
/* facet panel */
.dl-facetpanel { background: var(--dl-sclow); border-radius: 16px; padding: 1rem 1.2rem; margin-bottom: 2rem; box-shadow: var(--dl-shadow-sm); }
.dl-facets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem 1.5rem; }
.dl-facets #search_filters, .dl-facets .facet, .dl-facets .block-categories {
  background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; margin: 0 !important; border-radius: 0 !important;
}
.dl-facets .facet-title { font-size: 11px !important; line-height: 14px; letter-spacing: .02em; text-transform: uppercase; color: var(--dl-onsurf-var) !important; font-weight: 500 !important; margin-bottom: .45rem !important; }
.dl-facets .facet ul { display: flex; flex-wrap: wrap; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.dl-facets .facet-label {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--dl-sclowest); border-radius: 999px; box-shadow: var(--dl-shadow-sm);
  padding: .35rem .8rem; font-size: 13px; color: var(--dl-onsurf); cursor: pointer;
  border: 1px solid transparent; transition: all .15s ease; margin: 0;
}
.dl-facets .facet-label:hover { background: var(--dl-primary); color: #fff; }
.dl-facets .facet-label:hover a { color: #fff; }
.dl-facets .facet-label.active { background: var(--dl-primary); color: #fff; }
.dl-facets .facet-label.active a { color: #fff; }
.dl-facets .facet-label .custom-checkbox, .dl-facets .facet-label .custom-radio { display: contents; }
.dl-facets .facet-label input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.dl-facets .facet-label a { color: inherit; font-size: 13px; }
.dl-facets .facet-label .magnitude { color: var(--dl-onsurf-var); font-size: 11px; }
.dl-facets .facet-label.active .magnitude { color: rgba(255,255,255,.8); }
.dl-facets .ps-shown-by-js { display: none; }
.dl-facets .collapse, .dl-facets .facet div.title { display: none; }
/* sort bar */
.dl-products .products-sort-order .select-title, .dl-products .sort-by-row .select-title { background: var(--dl-sclowest); }
.dl-products .products-sort-order { margin-left: auto; }
/* product cards */
.dl-listing .js-product { margin-bottom: 1.5rem; }
.dl-card-desc { font-size: 13px; line-height: 18px; color: var(--dl-onsurf-var); margin: 0 0 .3rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dl-catbadge { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--dl-primary); color: #fff; font-size: 11px; line-height: 14px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; box-shadow: 0 2px 6px rgba(0,0,0,.15); }
.dl-price-unit { font-size: 12px; color: var(--dl-onsurf-var); font-weight: 500; margin-left: .25rem; }
.dl-listing .product-miniature .product-title { font-size: 18px; line-height: 24px; font-weight: 600; }
.dl-listing .product-miniature .product-description { padding: 1rem 1rem 1.1rem; gap: 0; }
.dl-listing .product-price-and-shipping .price { font-size: 22px; }
/* micro spec zip look */
.dl-spec { background: var(--dl-sclow) !important; border-radius: 12px !important; padding: .5rem .3rem !important; margin: .6rem 0 .2rem !important; }
/* load more progress */
.dl-loadmore { display: flex; flex-direction: column; align-items: center; gap: .5rem; margin: 1rem 0 2.5rem; }
.dl-loadmore-bar { width: 256px; height: 6px; background: var(--dl-schigh); border-radius: 999px; overflow: hidden; }
.dl-loadmore-fill { height: 100%; background: var(--dl-primary); border-radius: 999px; }
.dl-loadmore p { font-size: 13px; color: var(--dl-onsurf-var); margin: 0; }
/* standard section */
.dl-standard { background: var(--dl-sclow); border-radius: 24px; padding: 2rem; margin-bottom: 3rem; }
.dl-standard-head { max-width: 640px; margin-bottom: 2rem; }
.dl-standard-head h2 { font-size: 32px; line-height: 40px; letter-spacing: -.02em; font-weight: 700; color: var(--dl-onsurf); margin: .3rem 0 .6rem; }
.dl-standard-head h2 em { font-family: var(--dl-serif-d); color: var(--dl-primary); }
.dl-standard-head p { font-size: 15px; line-height: 22px; color: var(--dl-onsurf-var); }
.dl-standard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.dl-standard-card { background: var(--dl-sclowest); border-radius: 16px; box-shadow: var(--dl-shadow-sm); padding: 1.2rem; display: flex; flex-direction: column; gap: .7rem; }
.dl-standard-ic { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.dl-ic-a { background: var(--dl-primary-fixed, #ffdad2); color: var(--dl-primary); }
.dl-ic-b { background: var(--dl-tertiary-fixed, #ffdbce); color: var(--dl-tert); }
.dl-standard-ic .dl-ic svg, .dl-standard-ic svg { width: 26px; height: 26px; }
.dl-standard-card h4 { font-size: 18px; line-height: 24px; font-weight: 600; color: var(--dl-onsurf); margin: 0 0 .3rem; }
.dl-standard-card p { font-size: 13px; line-height: 18px; color: var(--dl-onsurf-var); margin: 0; }
.dl-standard-tag { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--dl-primary); display: inline-flex; align-items: center; gap: .25rem; margin-top: auto; }
.dl-standard-callout { display: flex; align-items: center; gap: 1rem; background: var(--dl-sclowest); border-radius: 16px; padding: 1rem 1.2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.dl-standard-callout-ic { width: 56px; height: 56px; border-radius: 50%; background: rgba(180,41,7,.1); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.dl-standard-callout-ic .dl-ic svg { width: 26px; height: 26px; color: var(--dl-primary); }
.dl-standard-callout p { font-size: 15px; color: var(--dl-onsurf-var); margin: 0; flex: 1 1 300px; }
.dl-standard-callout p strong { color: var(--dl-onsurf); }
@media (max-width: 991px) {
  .dl-facets { grid-template-columns: repeat(2, 1fr); }
  .dl-standard-grid { grid-template-columns: repeat(2, 1fr); }
  .dl-lead-title { font-size: 32px; line-height: 40px; }
}
@media (max-width: 576px) {
  .dl-facets { grid-template-columns: 1fr; }
  .dl-standard-grid { grid-template-columns: 1fr; }
  .dl-standard { padding: 1.2rem; }
}
/* hide classic leftovers in full-width listing */
.dl-listing #left-column { display: none; }

/* ============ 37. PRODUCT PAGE V3 (per karta produktu.txt) ============ */
.dl-product-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 1.5rem; align-items: start; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.dl-product-grid .col-md-6 { width: auto; flex: none; max-width: none; }
.dl-product-page { padding: .5rem 0 3rem; }
/* breadcrumb with home icon */
.dl-product-page .breadcrumb { max-width: 1280px; margin: 0 auto; padding: 1rem 1.5rem .5rem; }
/* gallery */
.dl-gallery-card { background: transparent; border: none; box-shadow: none; padding: 0; display: flex; flex-direction: column; gap: .8rem; }
.dl-gallery-card .product-cover, .dl-gallery-card .product-cover img { border-radius: 24px; }
.dl-gallery-card .product-cover { position: relative; background: var(--dl-sc); }
.dl-gallery-card .product-cover::after { content: ''; position: absolute; inset: 0; border-radius: 24px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.04); pointer-events: none; }
.dl-gallery-col .scroll-box-arrows { display: none; }
/* thumbs */
.js-thumb-container, .thumb-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.js-thumb { border-radius: 16px; overflow: hidden; border: 2px solid transparent; background: var(--dl-sc); }
.js-thumb.selected, .js-thumb.js-thumb-selected { border-color: var(--dl-primary); }
.js-thumb img { border-radius: 14px; display: block; }
/* summary */
.dl-summary-card { border-radius: 24px; padding: 1.6rem; }
.dl-eyebrow-pro { font-size: 11px; line-height: 14px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--dl-primary); display: block; margin-bottom: .4rem; }
.dl-summary-card .product-prices.dl-pricecard { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: var(--dl-sclow); border-radius: 16px; padding: 1rem 1.2rem; margin: 1.2rem 0 .5rem; }
.dl-summary-card .current-price-value { font-size: 28px; font-weight: 800; }
.dl-buybox .dl-qtyrow { margin-bottom: .7rem; }
.dl-addbtn { min-height: 3.5rem; background: var(--dl-onsurf) !important; border-color: var(--dl-onsurf) !important; }
.dl-addbtn:hover { background: var(--dl-inverse-surface, #2f3038) !important; border-color: var(--dl-inverse-surface) !important; }
.dl-buybox .dl-quickbuy { width: 100%; min-height: 3.25rem; border-radius: 999px; background: var(--dl-primary); color: #fff; border: none; font-weight: 700; font-size: .9rem; display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: .6rem; box-shadow: var(--dl-shadow-sm); }
.dl-buybox .dl-quickbuy:hover { opacity: .95; color: #fff; }
.dl-buybox .dl-quickbuy .dl-ic svg { width: 18px; height: 18px; }
/* accessories */
.product-accessories { max-width: 1280px; margin: 2rem auto; padding: 0 1.5rem; }
.product-accessories .products-section-title { font-size: 24px; font-weight: 700; color: var(--dl-onsurf); }
@media (max-width: 991px) { .dl-product-grid { grid-template-columns: 1fr; } }

/* ============ 38. CMS EDITORIAL V3 ============ */
.dl-cmsv2 { max-width: 1280px; margin: 0 auto; padding: 1rem 1.5rem 3rem; }
.dl-cms-hero { padding: 1.5rem 0 1.2rem; }
.dl-cms-hero h1 { font-size: 40px; line-height: 48px; letter-spacing: -.025em; font-weight: 800; color: var(--dl-onsurf); margin: .5rem 0 .6rem; }
.dl-cms-hero h1 em { font-family: var(--dl-serif-d); color: var(--dl-primary); font-style: italic; font-weight: 500; }
.dl-cms-hero > p { font-size: 18px; line-height: 28px; color: var(--dl-onsurf-var); max-width: 720px; margin: 0; }
.dl-cms-badges { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.dl-chip { display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .8rem; border-radius: 999px; font-size: 11px; line-height: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.dl-chip-primary { background: rgba(180,41,7,.1); color: var(--dl-primary); }
.dl-chip-white { background: rgba(255,255,255,.2); color: #fff; }
.dl-cms-meta, .dl-cms-meta2 { display: inline-flex; align-items: center; gap: 1rem; font-size: 13px; color: var(--dl-onsurf-var); }
.dl-cms-meta2 { display: flex; margin-top: .5rem; flex-wrap: wrap; gap: 1rem; }
.dl-cms-meta .dl-ic svg, .dl-cms-meta2 .dl-ic svg { width: 15px; height: 15px; color: var(--dl-primary); }
.dl-cms-actions { margin-top: 1rem; display: flex; gap: .6rem; }
.dl-ghostbtn { display: inline-flex; align-items: center; gap: .45rem; background: var(--dl-schigh); color: var(--dl-onsurf); border: none; border-radius: 999px; padding: .8rem 1.4rem; font-weight: 700; font-size: 15px; cursor: pointer; }
.dl-ghostbtn:hover { background: var(--dl-schighest); }
.dl-ghostbtn .dl-ic svg { width: 16px; height: 16px; }
.dl-hero-grad { background: linear-gradient(135deg, var(--dl-primary) 0%, var(--dl-pcontainer) 100%); border-radius: 24px; padding: 2rem !important; color: #fff; }
.dl-hero-grad h1 { color: #fff !important; }
.dl-hero-grad h1 em { color: #ffdbce !important; }
.dl-hero-grad > p { color: rgba(255,255,255,.9) !important; }
.dl-hero-grad .dl-cms-meta2 { color: rgba(255,255,255,.85); }
.dl-hero-grad .dl-ic svg { color: #fff !important; }
.dl-cms-doc { background: var(--dl-sclowest); border: 1px solid #eeeef3; border-radius: 20px; box-shadow: var(--dl-shadow-sm); padding: 2rem; }
.dl-cms-doc h2 { font-size: 24px; line-height: 32px; font-weight: 700; color: var(--dl-onsurf); margin: 1.8rem 0 .6rem; }
.dl-cms-doc h2:first-child { margin-top: 0; }
.dl-cms-doc p { font-size: 15px; line-height: 1.8; color: var(--dl-onsurf-var); margin: 0 0 .8rem; }
.dl-calloutv2 { display: flex; gap: 1rem; align-items: center; background: var(--dl-sclow); border-radius: 16px; padding: 1.2rem; margin: 1.5rem 0; }
.dl-calloutv2-ic { width: 52px; height: 52px; border-radius: 50%; background: rgba(180,41,7,.1); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.dl-calloutv2-ic .dl-ic svg { width: 24px; height: 24px; color: var(--dl-primary); }
.dl-calloutv2 h3 { font-size: 18px; font-weight: 700; color: var(--dl-onsurf); margin: 0 0 .2rem; }
.dl-calloutv2 p { margin: 0; font-size: 14px; color: var(--dl-onsurf-var); }
.dl-cms-sidev2 { top: 96px; }
.dl-cms-side-nav a { justify-content: flex-start; }
.dl-cms-side-nav a > span:nth-of-type(1) { flex: 1 1 auto; }
.dl-cms-side-nav a .dl-ic:last-child svg { width: 14px; height: 14px; color: #c9c9d2; }
.dl-side-mail { font-weight: 800; color: var(--dl-primary) !important; font-size: 14px; }
@media (max-width: 991px) {
  .dl-cms-layout { grid-template-columns: 1fr; }
  .dl-cms-hero h1 { font-size: 32px; line-height: 40px; }
  .dl-cms-doc { padding: 1.2rem; }
}

/* ============ 39. CONTACT V3 ============ */
.dl-contactv2-wrap { max-width: 1280px; margin: 0 auto; padding: 1rem 1.5rem 3rem; }
.dl-contactv2-grid { display: grid; grid-template-columns: 300px 1fr; gap: 1.5rem; align-items: start; }
.dl-contact-main { display: flex; flex-direction: column; gap: 1.3rem; }
.dl-contact-hero h1 { font-size: 40px; line-height: 48px; letter-spacing: -.025em; font-weight: 800; color: var(--dl-onsurf); margin: .5rem 0 .5rem; }
.dl-contact-hero h1 em { font-family: var(--dl-serif-d); color: var(--dl-primary); font-style: italic; font-weight: 500; }
.dl-contact-hero > p { font-size: 18px; line-height: 28px; color: var(--dl-onsurf-var); max-width: 640px; margin: 0; }
.dl-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.dl-contact-card { background: var(--dl-sclowest); border: 1px solid #eeeef3; border-radius: 16px; box-shadow: var(--dl-shadow-sm); padding: 1.1rem; display: flex; flex-direction: column; gap: .15rem; }
.dl-contact-card:hover { text-decoration: none; box-shadow: var(--dl-shadow-md); border-color: var(--dl-primary); }
.dl-contact-card .dl-ic svg { width: 26px; height: 26px; color: var(--dl-primary); margin-bottom: .3rem; }
.dl-contact-card-title { font-weight: 700; color: var(--dl-onsurf); font-size: 15px; }
.dl-contact-card-sub { font-size: 13px; color: var(--dl-onsurf-var); }
.dl-contact-formwrap { background: var(--dl-sclowest); border: 1px solid #eeeef3; border-radius: 20px; box-shadow: var(--dl-shadow-sm); padding: 1.6rem; }
.dl-contact-formtitle { font-size: 24px; line-height: 32px; font-weight: 700; color: var(--dl-onsurf); margin: 0 0 .2rem; }
.dl-contact-formnote { font-size: 13px; color: var(--dl-onsurf-var); margin: 0 0 1rem; }
.dl-livedot { display: flex; align-items: center; gap: .5rem; margin-top: .8rem; }
.dl-livedot-ping { position: relative; display: inline-flex; width: 10px; height: 10px; }
.dl-livedot-ping::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--dl-primary); opacity: .6; animation: dlping 1.6s cubic-bezier(0,0,.2,1) infinite; }
.dl-livedot-core { width: 10px; height: 10px; border-radius: 50%; background: var(--dl-primary); flex: 0 0 auto; }
@keyframes dlping { 0% { transform: scale(1); opacity: .7; } 75%, 100% { transform: scale(2.2); opacity: 0; } }
.dl-livedot-label { font-size: 11px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: var(--dl-onsurf); }
.dl-contactv2-wrap .contact-form, .dl-contactv2-wrap #contact { background: transparent; border: none; box-shadow: none; padding: 0; border-radius: 0; }
.dl-contactv2-wrap .form-control, .dl-contactv2-wrap select { background: var(--dl-sclow); border-radius: 12px; border: 1px solid var(--dl-outlvar); }
.dl-contactv2-wrap .form-footer .btn, .dl-contactv2-wrap button[type="submit"] { background: var(--dl-onsurf); border-color: var(--dl-onsurf); border-radius: 999px; padding: .8rem 1.6rem; font-weight: 700; }
.dl-contactv2-wrap .form-footer .btn:hover, .dl-contactv2-wrap button[type="submit"]:hover { background: var(--dl-primary); border-color: var(--dl-primary); color: #fff; }
@media (max-width: 991px) { .dl-contactv2-grid { grid-template-columns: 1fr; } .dl-contact-cards { grid-template-columns: 1fr; } .dl-contact-hero h1 { font-size: 32px; line-height: 40px; } }

/* ============ 40. HOME FINISH (NOWOŚĆ pills, views badge, phone mockup) ============ */
.dl-program-new { position: absolute; z-index: 2; top: 10px; left: 10px; right: 10px; display: flex; justify-content: center; background: var(--dl-primary); color: #fff; font-size: 9px; line-height: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 2px 6px; border-radius: 999px; box-shadow: var(--dl-shadow-sm); }
.dl-story-views {
  position: absolute; top: 10px; left: 10px; display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(0,0,0,.45); color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.dl-story-views::before { content: ''; width: 14px; height: 14px; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center/contain no-repeat; }
.dl-story { position: relative; }
.dl-appcard-app .dl-phonemock { margin: 1rem auto 0; width: 168px; background: #17171b; border: 4px solid #23232a; border-bottom: 0; border-radius: 24px 24px 0 0; padding: 8px; box-shadow: 0 20px 40px rgba(0,0,0,.35); }
.dl-phonemock-screen { background: #fff; border-radius: 16px 16px 0 0; padding: 12px 10px; text-align: center; }
.dl-phonemock-label { display: block; font-size: 9px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #a0a0a8; }
.dl-phonemock-num { display: block; font-size: 22px; font-weight: 800; color: var(--dl-onsurf); margin: 2px 0; }
.dl-phonemock-cap { display: block; font-size: 8px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #a0a0a8; }

/* ============ 41. CARD EXACT (ZIP: motyw tertiary, spec 3col, foot price + round add) ============ */
.dl-card-motyw { font-size: 11px; line-height: 14px; letter-spacing: .02em; text-transform: uppercase; color: var(--dl-tert); font-weight: 600; margin-bottom: 3px; }
.dl-listing .dl-card-motyw, #index .dl-card-motyw { font-weight: 600; }
.dl-spec { gap: 4px; text-align: center; }
.dl-spec span { font-size: 11px; line-height: 14px; letter-spacing: .02em; text-transform: uppercase; color: var(--dl-onsurf-var); font-weight: 500; }
.dl-spec strong { font-size: 15px; line-height: 18px; font-weight: 700; color: var(--dl-onsurf); margin-top: 2px; }
.dl-spec .dl-spec-hot { color: var(--dl-primary); }
.dl-cardfoot { display: flex; align-items: center; justify-content: space-between; gap: .6rem; padding-top: .5rem; margin-top: auto; }
.dl-cardfoot-val { font-size: 24px; line-height: 32px; letter-spacing: -.015em; font-weight: 800; color: var(--dl-onsurf); }
.dl-cardfoot-note { display: flex; align-items: center; gap: .3rem; font-size: 11px; line-height: 14px; color: var(--dl-onsurf-var); margin-top: 2px; }
.dl-cardfoot-note .dl-ic svg { width: 13px; height: 13px; color: #1e9e5a; }
.dl-cardadd { width: 44px; height: 44px; border-radius: 50%; background: var(--dl-primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(180,41,7,.3); transition: transform .15s ease, background .15s ease; flex: 0 0 auto; }
.dl-cardadd:hover { background: var(--dl-pcontainer); transform: scale(1.06); color: #fff; }
.dl-cardadd .dl-ic svg { width: 20px; height: 20px; }
/* index dish cards: keep minimal, motyw visible */
#index .dl-cardfoot { display: none; }

/* ============ 42. HOMEPAGE per glowna.html (sticky, ikony, dish-card) ============ */
/* sticky zamiast fixed */
#header .header-top.dl-header { position: sticky; height: auto; min-height: 0; padding: .85rem 0; background: rgba(255,255,255,.95); border-bottom: 1px solid #f1f1f4; }
body#index #wrapper, body #wrapper { padding-top: 0; }
.dl-header-container { max-width: 1440px; padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 1024px) { .dl-header-container { padding-left: 3rem; padding-right: 3rem; } }
.dl-header-row { height: auto; }
/* mniejsze logo */
.dl-header-brand img.logo { max-height: 28px; width: auto; max-width: 150px; }
/* nav 14px semibold */
#header .dl-header-nav .top-menu a[data-depth="0"] { font-size: 14px; font-weight: 600; color: #3f3f46; padding: .6rem .75rem; }
#header .dl-header-nav .top-menu a[data-depth="0"]:hover { color: var(--dl-coral, #FF6B57); background: transparent; }
/* wyszukiwarka jako ikona */
.dl-header-nav #search_widget { flex: 0 0 auto; min-width: 0; width: 40px; height: 40px; margin-left: .25rem; background: transparent; border: none; border-radius: 50%; overflow: hidden; transition: width .25s ease, background .2s ease, box-shadow .2s ease; cursor: pointer; }
.dl-header-nav #search_widget:hover { background: #f4f4f5; }
.dl-header-nav #search_widget form { display: flex; align-items: center; height: 40px; padding: 0; }
.dl-header-nav #search_widget i.material-icons.search { position: static; margin: 0 auto; font-size: 20px; color: #3f3f46; flex: 0 0 auto; }
.dl-header-nav #search_widget i.material-icons.clear { display: none; }
.dl-header-nav #search_widget input[type="text"] { width: 0; opacity: 0; padding: 0; border: none; background: transparent; box-shadow: none; font-size: 14px; transition: width .25s ease, opacity .2s ease, padding .2s ease; }
.dl-header-nav #search_widget.dl-search-open { width: 220px; background: var(--dl-sclow); border: 1px solid var(--dl-border); border-radius: 999px; overflow: visible; cursor: text; }
.dl-header-nav #search_widget.dl-search-open form { padding: 0 .5rem 0 0; }
.dl-header-nav #search_widget.dl-search-open i.material-icons.search { margin: 0 .3rem 0 .7rem; }
.dl-header-nav #search_widget.dl-search-open input[type="text"] { width: 100%; opacity: 1; padding: .5rem 0; }
/* koszyk: sama ikona + badge */
#header .dl-header-actions .blockcart .header { width: 40px; height: 40px; border-radius: 50%; }
#header .dl-header-actions .blockcart .header:hover { background: #f4f4f5; }
.dl-cartbtn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: #3f3f46; }
.dl-cartbtn:hover { color: var(--dl-coral, #FF6B57); background: #f4f4f5; }
.dl-cartbtn svg { width: 20px; height: 20px; }
.dl-cartbtn .cart-products-count { position: absolute; top: -2px; right: -2px; background: var(--dl-coral, #FF6B57); min-width: 16px; height: 16px; line-height: 16px; font-size: 10px; padding: 0 2px; }
#header .dl-header-actions .blockcart .shopping-cart, #header .dl-header-actions .blockcart .header > span.hidden-sm-down { display: none; }
/* login: sam tekst */
#header .dl-header-actions .user-info .material-icons { display: none !important; }
#header .dl-header-actions .user-info a { font-size: 14px; font-weight: 600; color: #3f3f46; }
#header .dl-header-actions .user-info a::before { display: none; }
#header .dl-header-actions .user-info a:hover { color: var(--dl-coral, #FF6B57); }
/* newsletter pill jak w glowna */
.dl-header-actions .dl-newsletter-pill { background: #000; font-size: 14px; font-weight: 500; padding: .55rem 1.25rem; box-shadow: var(--dl-shadow-sm); }
.dl-header-actions .dl-newsletter-pill:hover { background: #27272a; transform: none; }
.dl-header-actions .dl-newsletter-pill .dl-ic { display: none; }
@media (max-width: 1250px) { .dl-header-actions .dl-newsletter-pill { display: none; } }
/* hero: radius 36 + wysokosc */
.dl-hero-carousel { border-radius: 28px; }
@media (min-width: 576px) { .dl-hero-carousel { border-radius: 36px; } }
.dl-hero-img { height: clamp(320px, 38vw, 460px); }
/* dish card 1:1 */
#index .product-miniature .thumbnail-container { border: 1px solid #f1f1f4; border-radius: 16px; }
#index .product-miniature .product-description { padding: 20px; }
.dl-idx-eye { font-size: 11px; font-weight: 500; color: #a1a1aa; display: block; margin-bottom: 4px; }
#index .product-miniature .product-title { font-size: 14px; line-height: 1.4; font-weight: 700; color: #18181b; }
#index .wishlist-button-add, #index .highlighted-informations { display: none !important; }
#index .dl-thumb-img { aspect-ratio: 4/3; }

/* ============ 43. HEADER LOGO FIX + HERO CLEAN ============ */
#header .dl-header-brand img.logo, #_desktop_logo img.logo { max-height: 28px; width: auto; max-width: 150px; }
.dl-header-brand .dl-logo-title { margin: 0; line-height: 0; font-size: 0; }
/* banery mają wtopiony tekst — ukrywamy nakładkę caption */
.dl-hero-caption { display: none !important; }
#header .dl-header-brand img.logo, #_desktop_logo img.logo { max-width: 190px; }

/* ============ 44. FIXES: cena, stepper, facetki, pojedynczy nagłówek ============ */
/* cyjan classic */
.dl-pricecard .product-price, .dl-summary-card .current-price-value,
.dl-cardfoot-val, .dl-card-price .price { color: var(--dl-onsurf); }
/* stepper: ukryj natywne strzałki + ramkę */
.dl-stepper-input, .dl-stepper-input.qty, input.dl-stepper-input {
  border: none !important; background: transparent !important; box-shadow: none !important;
  -moz-appearance: textfield; appearance: textfield; -webkit-appearance: none;
}
.dl-stepper-input::-webkit-inner-spin-button, .dl-stepper-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
/* facetki: ukryj drzewo kategorii, marki inline */
.dl-facets .block-categories { display: none !important; }
.dl-facets #search_filters_brands, .dl-facets #search_filters_brands section.facet {
  background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; margin: 0 !important;
}
.dl-facets #search_filters_brands ul { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: .4rem 0 0; padding: 0; }
.dl-facets #search_filters_brands .facet-title, .dl-facets #search_filters_brands .facet-label.h6 {
  font-size: 11px !important; text-transform: uppercase; letter-spacing: .02em; color: var(--dl-onsurf-var) !important; font-weight: 500 !important; margin: 0 !important; padding: 0 !important; background: none !important; border: none !important; box-shadow: none !important;
}
.dl-facets #search_filters_brands li.facet-label { background: var(--dl-sclowest); border-radius: 999px; box-shadow: var(--dl-shadow-sm); padding: .35rem .8rem; margin: 0; }
.dl-facets #search_filters_brands li.facet-label a { font-size: 13px; color: var(--dl-onsurf); }
.dl-facets #search_filters_brands li.facet-label:hover { background: var(--dl-primary); }
.dl-facets #search_filters_brands li.facet-label:hover a { color: #fff; }
/* panel zwarty */
.dl-facetpanel { padding: .9rem 1.1rem; }

/* ============ 45. TouchSpin off w stepperze + zwarty panel marek ============ */
.dl-stepper .bootstrap-touchspin-up, .dl-stepper .bootstrap-touchspin-down,
.dl-stepper .input-group-btn, .dl-stepper .input-group-btn-vertical { display: none !important; }
.dl-stepper { display: inline-flex; align-items: center; border: 1px solid var(--dl-border); border-radius: 999px; overflow: hidden; background: #fff; }
.dl-stepper .dl-qty-btn { border: none; background: transparent; width: 2.4rem; min-height: 2.9rem; font-size: 1.15rem; cursor: pointer; color: var(--dl-onsurf); }
.dl-stepper .dl-qty-btn:hover { color: var(--dl-primary); }
.dl-facets #search_filters_brands { margin-top: .2rem; }
.dl-summary-card .dl-pricecard { flex-wrap: wrap; }
.dl-summary-card .dl-pricecard .tax-shipping-delivery-label { flex-basis: 100%; font-size: 11px; color: var(--dl-onsurf-var); margin-top: .15rem; }

/* ============ 46. Facet panel: marki pełna szerokość ============ */
.dl-facets { display: block; }
.dl-facets #search_filters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem 1.5rem; }
.dl-facets #search_filters:empty { display: none; }
.dl-facets #search_filters_brands { margin-top: .7rem; }
.dl-facets #search_filters_brands section.facet { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.dl-facets #search_filters_brands .facet-title { margin: 0 !important; }
.dl-facets #search_filters_brands ul { margin: 0; }
@media (max-width: 991px) { .dl-facets #search_filters { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .dl-facets #search_filters { grid-template-columns: 1fr; } }
.dl-listing .product-miniature, .dl-listing .product-miniature .product-description,
.dl-listing .product-miniature .product-title { text-align: left; }

/* ============ 47. PRODUCT TABS FULL-WIDTH + GALERIA ============ */
.dl-product-page .breadcrumb li:first-child a, .dl-product-page nav.breadcrumb ol li:first-child a { display: inline-flex; align-items: center; gap: .3rem; }
.dl-product-page .breadcrumb li:first-child a::before, .dl-product-page nav.breadcrumb ol li:first-child a::before {
  content: ''; width: 16px; height: 16px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M3 11l9-8 9 8M5 10v10h5v-6h4v6h5V10'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M3 11l9-8 9 8M5 10v10h5v-6h4v6h5V10'/%3E%3C/svg%3E") center/contain no-repeat;
}
/* badge + share na zdjęciu */
.dl-gallery-card .product-cover { position: relative; }
.dl-galbadge { position: absolute; top: 16px; left: 16px; z-index: 3; background: var(--dl-primary); color: #fff; font-size: 11px; line-height: 14px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; box-shadow: var(--dl-shadow-sm); }
.dl-galshare { position: absolute; top: 14px; right: 14px; z-index: 3; width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(255,255,255,.92); color: var(--dl-onsurf); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--dl-shadow-sm); cursor: pointer; }
.dl-galshare:hover { color: var(--dl-primary); transform: scale(1.06); }
.dl-galshare .dl-ic svg { width: 20px; height: 20px; }
/* taby */
.dl-ptabs { max-width: 1280px; margin: 0 auto; padding: 1rem 1.5rem; }
.dl-ptabs-card { background: var(--dl-sclowest); border-radius: 24px; box-shadow: var(--dl-shadow-sm); padding: 1.4rem; }
.dl-ptabs-nav { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: 1rem; scrollbar-width: none; }
.dl-ptabs-nav::-webkit-scrollbar { display: none; }
.dl-ptab { border: 1px solid var(--dl-outlvar); background: #fff; border-radius: 999px; font-weight: 700; font-size: 15px; padding: .65rem 1.3rem; white-space: nowrap; cursor: pointer; color: var(--dl-onsurf); }
.dl-ptab:hover { border-color: var(--dl-onsurf); }
.dl-ptab.active { background: var(--dl-onsurf); border-color: var(--dl-onsurf); color: #fff; }
.dl-ptab-panel { display: none; padding-top: 1rem; }
.dl-ptab-panel.active { display: block; }
.dl-ptab-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.dl-ptab-main h3 { font-size: 24px; line-height: 32px; font-weight: 700; color: var(--dl-onsurf); margin: 0 0 .7rem; }
.dl-ptab-main p { font-size: 15px; line-height: 1.75; color: var(--dl-onsurf-var); margin: 0 0 .7rem; }
.dl-ptab-main p strong { color: var(--dl-onsurf); }
.dl-ptab-side { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; align-content: start; }
.dl-feat { background: var(--dl-sclow); border-radius: 14px; padding: .9rem; display: flex; gap: .6rem; align-items: center; }
.dl-feat .dl-ic svg { width: 24px; height: 24px; color: var(--dl-primary); }
.dl-feat strong { display: block; font-size: 14px; color: var(--dl-onsurf); }
.dl-feat span { font-size: 12px; color: var(--dl-onsurf-var); }
.dl-attach { margin-top: 1.2rem; display: flex; flex-direction: column; gap: .4rem; }
.dl-attach h4 { font-size: 16px; color: var(--dl-onsurf); }
.dl-attach a { color: var(--dl-primary); font-weight: 600; }
.dl-acc-title { font-size: 24px; line-height: 32px; font-weight: 700; color: var(--dl-onsurf); margin: .1rem 0 1rem; }
@media (max-width: 991px) { .dl-ptab-grid { grid-template-columns: 1fr; } .dl-ptabs-card { padding: 1rem; } }
.dl-relprods { max-width: 1280px; margin: 0 auto; padding: 1rem 1.5rem 3rem; }

/* ============ 48. SEARCH W AKCJACH + PILL COLOR ============ */
.dl-header-actions .dl-newsletter-pill, .dl-header-actions .dl-newsletter-pill span { color: #fff !important; }
#header #search_widget { flex: 0 0 auto; min-width: 0; width: 40px; height: 40px; margin-left: 0; background: transparent; border: none; border-radius: 50%; overflow: hidden; transition: width .25s ease, background .2s ease, box-shadow .2s ease; cursor: pointer; }
#header #search_widget:hover { background: #f4f4f5; }
#header #search_widget form { display: flex; align-items: center; height: 40px; padding: 0; }
#header #search_widget i.material-icons.search { position: static; margin: 0 auto; font-size: 20px; color: #3f3f46; flex: 0 0 auto; }
#header #search_widget i.material-icons.clear { display: none; }
#header #search_widget input[type="text"] { width: 0; opacity: 0; padding: 0; border: none; background: transparent; box-shadow: none; font-size: 14px; transition: width .25s ease, opacity .2s ease, padding .2s ease; }
#header #search_widget.dl-search-open { width: 220px; background: var(--dl-sclow); border: 1px solid var(--dl-border); border-radius: 999px; overflow: visible; cursor: text; }
#header #search_widget.dl-search-open form { padding: 0 .5rem 0 0; }
#header #search_widget.dl-search-open i.material-icons.search { margin: 0 .3rem 0 .7rem; }
#header #search_widget.dl-search-open input[type="text"] { width: 100%; opacity: 1; padding: .5rem 0; }

/* ============ 49. FOOTER SOCIALS (kanały w stopce) ============ */
.dl-footer-brandrow { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.dl-socials { display: flex; align-items: center; gap: .6rem; }
.dl-socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--dl-outlvar); background: #fff; display: inline-flex; align-items: center; justify-content: center; color: var(--dl-onsurf); transition: border-color .15s ease, color .15s ease, transform .15s ease; }
.dl-socials a:hover { border-color: var(--dl-primary); color: var(--dl-primary); transform: translateY(-2px); }
.dl-socials .dl-ic svg { width: 20px; height: 20px; }
.dl-socials-bottom { justify-content: flex-start; margin-bottom: .9rem; }

/* ============ 50. HERO FULL-BLEED ============ */
#index #content-wrapper { padding-left: 8px; padding-right: 8px; }
#index .dl-home { padding-top: 0; }
.dl-hero { max-width: none; margin: 0; padding: 0; }
.dl-hero-carousel { border-radius: 22px; }
.dl-hero-img { height: clamp(380px, 50vw, 640px); }
@media (max-width: 767px) {
  #index #content-wrapper { padding-left: 6px; padding-right: 6px; }
  .dl-hero-carousel { border-radius: 16px; }
  .dl-hero-img { height: 340px; }
}
#index #main > section > .container { max-width: none; }

/* ============ 51. HERO: wyższa specyficzność + full-bleed ============ */
#index .dl-hero { max-width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); padding: 0 8px; }
#carousel .dl-hero-img, .dl-hero-carousel .carousel-item img.dl-hero-img { width: 100%; height: clamp(380px, 50vw, 640px); object-fit: cover; display: block; }
@media (max-width: 767px) {
  #carousel .dl-hero-img, .dl-hero-carousel .carousel-item img.dl-hero-img { height: 340px; }
}
#carousel .dl-hero-slide.carousel-item { height: auto; }
#carousel .dl-hero-slides.carousel-inner { height: auto; }

/* ============ 52. HERO per glowna.html (gradient + copy + foto) ============ */
.dl-hero { max-width: 1440px; margin: 0 auto; padding: 1rem 1rem 3rem; }
.dl-hero-carousel { position: relative; border-radius: 28px; overflow: hidden; background: radial-gradient(circle at 75% 35%, #F8A99C 0%, #F57C69 45%, #E85B46 95%); box-shadow: var(--dl-shadow-sm); color: #fff; }
@media (min-width: 576px) { .dl-hero-carousel { border-radius: 36px; } }
.dl-hero-slides { margin: 0; }
#carousel .dl-hero-slide.carousel-item { height: auto; }
.dl-hero-grid { display: grid; grid-template-columns: 1fr; align-items: center; min-height: 500px; }
@media (min-width: 992px) { .dl-hero-grid { grid-template-columns: repeat(12, 1fr); min-height: 520px; } }
.dl-hero-copy { padding: 2rem; z-index: 2; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 576px) { .dl-hero-copy { padding: 3rem; } }
@media (min-width: 992px) { .dl-hero-copy { grid-column: span 6; padding: 4rem; } }
.dl-hero-title { font-size: 2.25rem; line-height: 1.15; font-weight: 800; letter-spacing: -.02em; color: #fff; margin: 0 0 1.2rem; }
@media (min-width: 576px) { .dl-hero-title { font-size: 3rem; } }
@media (min-width: 992px) { .dl-hero-title { font-size: 54px; } }
.dl-hero-desc, .dl-hero-desc p { color: rgba(255,255,255,.9); font-size: .9rem; line-height: 1.65; max-width: 32rem; margin: 0 0 2rem; }
@media (min-width: 576px) { .dl-hero-desc, .dl-hero-desc p { font-size: 1rem; } }
.dl-hero-btn { display: inline-flex; align-items: center; gap: .65rem; align-self: flex-start; background: #161616; color: #fff !important; font-weight: 500; font-size: .85rem; padding: .8rem 1.75rem; border-radius: 999px; box-shadow: 0 4px 14px rgba(0,0,0,.25); transition: transform .2s ease, background .2s ease; }
.dl-hero-btn:hover { background: #000; transform: scale(1.05); color: #fff !important; text-decoration: none; }
.dl-hero-btn svg { width: 16px; height: 16px; }
.dl-hero-media { position: relative; height: 288px; overflow: hidden; }
@media (min-width: 992px) { .dl-hero-media { grid-column: span 6; height: 100%; min-height: 520px; } }
#carousel .dl-hero-img, .dl-hero-carousel .carousel-item img.dl-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
@media (min-width: 992px) { #carousel .dl-hero-img, .dl-hero-carousel .carousel-item img.dl-hero-img { object-position: left center; } }
.dl-hero-fade { position: absolute; inset: 0; background: linear-gradient(0deg, #E85B46 0%, transparent 40%, transparent 100%); pointer-events: none; }
@media (min-width: 992px) { .dl-hero-fade { background: linear-gradient(90deg, #E85B46 0%, transparent 192px); width: 192px; } }
.dl-hero-dots { bottom: 1rem; margin: 0; }
.dl-hero-dots li { width: .6rem; height: .6rem; border-radius: 999px; background: rgba(255,255,255,.5); border: none; margin: 0 .3rem; }
.dl-hero-dots li.active { background: #fff; width: 1.6rem; }

/* ============ 53. SHORTS FILL (zero czarnych ramek) ============ */
.dl-short .dl-story-thumb { position: relative; display: block; aspect-ratio: 9/14; overflow: hidden; background: #1a1b22; border-radius: 20px; padding: 0; }
.dl-short .dl-story-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dl-short-play { position: absolute; inset: 0; z-index: 2; }
.dl-short-badge { z-index: 3; }

/* ============ 54. KIT per GardenProjectKitSection ============ */
.dl-kit { max-width: 1440px; margin: 0 auto; padding: 4rem 1rem; }
@media (min-width: 576px) { .dl-kit { padding-left: 1.5rem; padding-right: 1.5rem; } }
.dl-kit-card { background: #FBF8FF; border: 1px solid rgba(229,231,235,.8); border-radius: 32px; padding: 1.5rem; box-shadow: var(--dl-shadow-sm); position: relative; overflow: hidden; }
@media (min-width: 576px) { .dl-kit-card { border-radius: 40px; padding: 3rem; } }
.dl-kit-blob { position: absolute; width: 24rem; height: 24rem; border-radius: 50%; -webkit-filter: blur(72px); filter: blur(72px); pointer-events: none; }
.dl-kit-blob-a { top: -6rem; right: -6rem; background: rgba(255,107,87,.1); }
.dl-kit-blob-b { bottom: -6rem; left: -6rem; background: rgba(255,107,87,.05); }
.dl-kit-head { position: relative; z-index: 1; max-width: 48rem; margin-bottom: 3rem; }
.dl-kit-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,107,87,.1); color: var(--dl-coral, #FF6B57); padding: .375rem .875rem; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.dl-kit-badge svg { width: 16px; height: 16px; }
.dl-kit-head h2 { font-size: 1.9rem; line-height: 1.2; letter-spacing: -.02em; font-weight: 800; color: #18181b; margin: 0 0 1rem; }
@media (min-width: 992px) { .dl-kit-head h2 { font-size: 42px; } }
.dl-kit-head h2 span { color: var(--dl-coral, #FF6B57); }
.dl-kit-head p { color: #52525b; font-size: .9rem; line-height: 1.65; margin: 0; }
.dl-kit-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .dl-kit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .dl-kit-grid { grid-template-columns: repeat(3, 1fr); } }
.dl-kit-item { background: #fff; border-radius: 16px; padding: 1.5rem; border: 1px solid #f1f1f4; box-shadow: var(--dl-shadow-sm); display: flex; flex-direction: column; transition: box-shadow .2s ease, border-color .2s ease; position: relative; overflow: hidden; }
.dl-kit-item:hover { box-shadow: var(--dl-shadow-md); border-color: rgba(255,107,87,.3); }
.dl-kit-ic { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,107,87,.1); color: var(--dl-coral, #FF6B57); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.dl-kit-ic svg { width: 20px; height: 20px; }
.dl-kit-item h3 { font-weight: 700; color: #18181b; font-size: 1rem; margin: 0 0 .4rem; }
.dl-kit-item p { font-size: .8rem; color: #71717a; line-height: 1.6; margin: 0; }
.dl-kit-bonus { background: linear-gradient(135deg, #fff, #FFF4F1); border-color: rgba(255,107,87,.3); }
.dl-kit-ic-solid { background: var(--dl-coral, #FF6B57); color: #fff; box-shadow: var(--dl-shadow-sm); }
.dl-kit-flag { position: absolute; top: 12px; right: 12px; background: var(--dl-coral, #FF6B57); color: #fff; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; padding: 2px 8px; border-radius: 4px; box-shadow: var(--dl-shadow-sm); }
.dl-kit-wide { grid-column: auto; }
@media (min-width: 992px) { .dl-kit-wide { grid-column: span 3; flex-direction: row; align-items: center; gap: 1rem; } .dl-kit-wide .dl-kit-ic { margin-bottom: 0; flex-shrink: 0; } }
.dl-kit-callout { position: relative; z-index: 1; background: #18181b; color: #fff; border-radius: 16px; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--dl-shadow-md); }
@media (min-width: 768px) { .dl-kit-callout { flex-direction: row; align-items: center; justify-content: space-between; } }
.dl-kit-callout-l { display: flex; align-items: center; gap: .9rem; }
.dl-kit-callout-ic { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,107,87,.2); color: var(--dl-coral, #FF6B57); display: none; align-items: center; justify-content: center; flex-shrink: 0; }
@media (min-width: 576px) { .dl-kit-callout-ic { display: inline-flex; } }
.dl-kit-callout-ic svg { width: 20px; height: 20px; }
.dl-kit-callout h4 { font-size: .9rem; font-weight: 800; letter-spacing: -.01em; color: #fff; margin: 0; }
.dl-kit-callout p { font-size: 12px; color: #a1a1aa; margin: 2px 0 0; }
.dl-kit-live { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.1); color: #fff; padding: .4rem .8rem; border-radius: 999px; font-size: 12px; font-weight: 600; border: 1px solid rgba(255,255,255,.1); white-space: nowrap; flex-shrink: 0; }
.dl-kit-live .dl-livedot-core { width: 8px; height: 8px; }

/* ============ 55. HERO: przestrzenie boczne jak glowna.html ============ */
#index .dl-hero { max-width: 1440px; margin: 0 auto; padding: 1rem 1rem 3rem; }
@media (min-width: 576px) { #index .dl-hero { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 992px) { #index .dl-hero { padding-left: 2rem; padding-right: 2rem; } }
#index #wrapper > .container { max-width: 1408px; }

/* ============ 56. HERO: full-bleed + 32px gutters (glowna) ============ */
#index .dl-hero { max-width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); padding: 1rem 16px 3rem; }
@media (min-width: 992px) { #index .dl-hero { padding-left: 32px; padding-right: 32px; } }

/* ============ 57. KARTA: jedna cena + spec wierszami ============ */
.product-miniature .product-price-and-shipping.dl-card-price { display: contents; }
.dl-cardfoot-old { font-size: 13px; line-height: 1; color: #a0a0a8; text-decoration: line-through; font-weight: 500; }
.dl-spec { display: flex; flex-direction: column; gap: 4px; background: transparent; padding: 0; margin: .7rem 0 .3rem; }
.dl-spec > div { display: flex; align-items: baseline; justify-content: space-between; gap: .8rem; background: var(--dl-sclow); border-radius: 10px; padding: .5rem .8rem; }
.dl-spec > div > span { font-size: 11px; line-height: 14px; letter-spacing: .02em; text-transform: uppercase; color: var(--dl-onsurf-var); font-weight: 500; flex: 0 0 auto; }
.dl-spec > div > strong { font-size: 14px; line-height: 18px; font-weight: 700; color: var(--dl-onsurf); text-align: right; }
.dl-spec > div > strong.dl-spec-hot { color: var(--dl-primary); }
