/* CroPuff storefront — spacing + widgets (Elementor keeps header/hero/footer) */

:root {
  --cp-bg: #ffffff;
  --cp-surface: #f4f6f8;
  --cp-snow: #f7fbff;
  --cp-snow-90: rgba(247, 251, 255, 0.9);
  --cp-snow-80: rgba(247, 251, 255, 0.8);
  --cp-ink: #0a0a0a;
  --cp-muted: #5c6670;
  --cp-brand: #008cba;
  --cp-brand-dark: #006994;
  --cp-brand-light: #00a8d6;
  --cp-footer-start: #8fccde;
  --cp-footer-end: #4295ad;
  --cp-footer-bg: linear-gradient(160deg, var(--cp-footer-start) 0%, var(--cp-footer-end) 100%);
  --cp-footer-text: #ffffff;
  --cp-footer-text-muted: #ffffff;
  --cp-footer-border: rgba(255, 255, 255, 0.28);
  --cp-cta-bg: var(--cp-brand);
  --cp-cta-text: #ffffff;
  --cp-border: rgba(10, 10, 10, 0.1);
  --cp-radius: 12px;
  --cp-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --cp-brutal: 3px 3px 0 var(--cp-brand);
  --cp-nav-bg: transparent;
  --cp-nav-bg-scrolled: rgba(255, 255, 255, 0.92);
  --cp-nav-h: 64px;
  --cp-max: 1180px;
  --cp-section-y: clamp(48px, 8vw, 72px);
  --cp-gutter: clamp(16px, 4vw, 24px);
  --cp-font-display: 'Space Grotesk', system-ui, sans-serif;
  --cp-font-body: 'DM Sans', system-ui, sans-serif;
  --cp-space-1: 4px;
  --cp-space-2: 8px;
  --cp-space-3: 12px;
  --cp-space-4: 16px;
  --cp-space-5: 24px;
  --cp-space-6: 32px;
  --cp-space-7: 48px;
  --cp-space-8: 64px;
  --cp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body.cropuff-storefront {
  background: var(--cp-bg) !important;
  color: var(--cp-ink);
  font-family: var(--cp-font-body);
  font-size: 16px;
  overflow-x: clip;
  line-height: 1.5;
}

body.cropuff-storefront h1,
body.cropuff-storefront h2,
body.cropuff-storefront h3,
body.cropuff-storefront h4,
body.cropuff-storefront h5,
body.cropuff-storefront h6,
body.cropuff-storefront .cp-btn {
  font-family: var(--cp-font-display);
}

/* Hide Extendable / block-theme / classic default header & footer (replaced by PuffShop chrome) */
body.cropuff-storefront .wp-site-blocks > header.wp-block-template-part,
body.cropuff-storefront .wp-site-blocks > footer.wp-block-template-part,
body.cropuff-storefront .wp-block-site-title,
body.cropuff-storefront .wp-block-site-tagline,
body.cropuff-storefront #header,
body.cropuff-storefront #headerimg,
body.cropuff-storefront #header .description,
body.cropuff-storefront #footer,
body.cropuff-storefront #page > hr,
body.cropuff-vip-page #header,
body.cropuff-vip-page #headerimg,
body.cropuff-vip-page #footer,
body.cropuff-vip-page #page > hr {
  display: none !important;
}

/*
 * Block theme (Extendable) puts body in display:flex + row.
 * Navbar/content/footer are body siblings → they render as side columns.
 * Force a vertical page stack on all storefront + VIP pages.
 */
body.cropuff-storefront,
body.cropuff-vip-page {
  display: block !important;
  flex-direction: column !important;
}

body.cropuff-storefront > .wp-site-blocks,
body.cropuff-storefront > .cropuff-chrome-navbar-wrap,
body.cropuff-storefront > .cp-storefront-footer,
body.cropuff-storefront > footer.cp-storefront-footer,
body.cropuff-vip-page > .cropuff-chrome-navbar-wrap,
body.cropuff-vip-page > #cropuff-vip-product,
body.cropuff-vip-page > .cp-storefront-footer,
body.cropuff-vip-page > footer.cp-storefront-footer {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  box-sizing: border-box;
}

/* VIP PDP: keep PuffShop footer visible at end of page */
body.cropuff-vip-page .cp-storefront-footer {
  display: block !important;
  visibility: visible !important;
  position: relative;
  z-index: 1;
  margin-top: 48px;
  clear: both;
}
body.cropuff-vip-page #cropuff-vip-product {
  padding-bottom: 24px;
}
@media (max-width: 960px) {
  body.cropuff-vip-page #cropuff-vip-product {
    padding-bottom: 88px; /* room above fixed mobile ATC */
  }
}

body.cropuff-content-page .wp-block-post-title {
  display: none !important;
}

body.cropuff-storefront .cropuff-chrome-navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cp-nav-bg);
  transition:
    background 0.25s var(--cp-ease),
    border-color 0.25s var(--cp-ease),
    box-shadow 0.25s var(--cp-ease),
    backdrop-filter 0.25s var(--cp-ease);
}

body.cropuff-storefront.is-scrolled .cropuff-chrome-navbar-wrap {
  background: var(--cp-nav-bg-scrolled) !important;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

/* Canonical PuffShop footer — teal gradient from original Elementor design */
.cp-storefront-footer {
  margin-top: var(--cp-section-y);
  padding: clamp(56px, 8vw, 70px) var(--cp-gutter) clamp(24px, 4vw, 32px);
  background: var(--cp-footer-bg);
  color: var(--cp-footer-text);
}

/* Beat body --cp-ink + theme link colors inside footer */
body.cropuff-storefront .cp-storefront-footer,
body.cropuff-storefront .cp-storefront-footer :is(
  p, li, h3, h4, span, strong, small, nav, a, .cp-footer-plain
) {
  color: #fff;
}

body.cropuff-storefront .cp-storefront-footer .cp-footer-legal,
body.cropuff-storefront .cp-storefront-footer .cp-footer-legal :is(p, a, strong) {
  color: #fff;
}

/* Legacy Elementor footer clones — canonical footer is .cp-storefront-footer */
body.cropuff-storefront .elementor-element-792544cb,
body.cropuff-storefront .elementor-element-cab0c95,
body.cropuff-storefront .elementor-location-footer,
body.cropuff-storefront [data-elementor-type="footer"]:not(.cp-storefront-footer) {
  display: none !important;
}

.cp-storefront-footer__inner {
  max-width: var(--cp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(200px, 1.35fr) repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 24px);
}

.cp-storefront-footer__brand p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--cp-footer-text-muted);
  max-width: 36ch;
  text-wrap: pretty;
}

.cp-storefront-footer__logo img {
  display: block;
  width: min(210px, 72%);
  height: auto;
  filter: brightness(0) invert(1);
}

.cp-storefront-footer__col h5,
.cp-storefront-footer__col h6 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--cp-footer-text);
}

.cp-storefront-footer__subhead {
  margin-top: 18px !important;
}

.cp-storefront-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cp-storefront-footer__col li {
  margin: 0 0 9px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--cp-footer-text-muted);
}

.cp-storefront-footer__col a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--cp-ease);
}

.cp-storefront-footer__col a:hover {
  color: #fff;
  opacity: 0.85;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cp-storefront-footer__col a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 2px;
}

.cp-footer-plain {
  color: inherit;
  cursor: default;
  text-decoration: none;
  pointer-events: none;
}

.cp-storefront-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.cp-storefront-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--cp-footer-text);
  background: rgba(255, 255, 255, 0.14);
  transition: background 0.2s var(--cp-ease), transform 0.2s var(--cp-ease);
}

.cp-storefront-footer__social a:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}

.cp-storefront-footer__social a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.cp-storefront-footer__bottom {
  max-width: var(--cp-max);
  margin: clamp(24px, 4vw, 32px) auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--cp-footer-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  font-size: 13px;
  color: var(--cp-footer-text-muted);
}

.cp-storefront-footer__copyright {
  margin: 0;
}

.cp-storefront-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.cp-storefront-footer__legal-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.cp-storefront-footer__legal-links a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cp-storefront-footer__legal-links a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 2px;
}

.cp-storefront-footer .cp-footer-legal {
  max-width: var(--cp-max);
  margin: 16px auto 0;
}

@media (max-width: 1100px) {
  .cp-storefront-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .cp-storefront-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .cp-storefront-footer__inner {
    grid-template-columns: 1fr;
  }

  .cp-storefront-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

body.cropuff-storefront .cropuff-chrome-navbar-wrap .navbar,
body.cropuff-storefront .elementor-element-23ccc90 .navbar,
body.cropuff-storefront .navbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px clamp(12px, 3vw, 24px) !important;
  border-bottom: 2px solid #1a1c1c;
  background: #f9f9f9 !important;
  min-height: 64px;
  max-width: 100%;
  overflow: visible;
}

body.cropuff-storefront .navbar-logo {
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(220px, 55vw);
}

body.cropuff-storefront .navbar-logo a {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}

body.cropuff-storefront .cropuff-chrome-navbar-wrap .navbar-logo img,
body.cropuff-storefront .elementor-element-23ccc90 .navbar-logo img,
body.cropuff-storefront .navbar-logo img {
  display: block;
  height: 52px !important;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
  transition: height 0.2s ease;
}

body.cropuff-storefront.is-scrolled .cropuff-chrome-navbar-wrap .navbar-logo img,
body.cropuff-storefront.is-scrolled .elementor-element-23ccc90 .navbar-logo img,
body.cropuff-storefront.is-scrolled .navbar-logo img {
  height: 44px !important;
}

/* Desktop actions / mobile right cluster — base state */
body.cropuff-storefront .navbar-actions {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

body.cropuff-storefront .navbar-right,
body.cropuff-storefront .menu-toggle {
  display: none !important;
}

body.cropuff-storefront .menu-toggle,
body.cropuff-storefront button.menu-toggle {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

body.cropuff-storefront .menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cp-ink, #0a0a0a);
  border-radius: 2px;
  transition: transform 0.25s var(--cp-ease), opacity 0.2s ease;
}

body.cropuff-storefront .menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.cropuff-storefront .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

body.cropuff-storefront .menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.cropuff-storefront .mobile-menu-overlay {
  position: fixed !important;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  display: flex !important;
  align-items: stretch;
  justify-content: flex-end;
  z-index: 2000;
  transition: opacity 0.3s ease;
}

body.cropuff-storefront .mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

body.cropuff-storefront .mobile-menu-panel {
  background: #fff;
  height: 100%;
  width: min(86vw, 360px);
  max-width: 360px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  padding: max(24px, env(safe-area-inset-top)) 28px max(28px, env(safe-area-inset-bottom));
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.18);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body.cropuff-storefront .mobile-menu-panel.open {
  transform: translateX(0);
}

body.cropuff-storefront.cropuff-nav-open {
  overflow: hidden !important;
}

body.cropuff-storefront .navbar-actions a.cropuff-nav-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 4px 6px;
  border-bottom: 2px solid transparent;
}

body.cropuff-storefront .navbar-actions a.cropuff-nav-text.is-active,
body.cropuff-storefront .navbar-actions a.cropuff-nav-text:hover {
  border-bottom-color: var(--cp-brand);
  color: var(--cp-ink);
}

/* Transparent sticky navbar — frosted white on scroll */
body.cropuff-storefront .elementor-location-header,
body.cropuff-storefront header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cp-nav-bg) !important;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s var(--cp-ease),
    border-color 0.25s var(--cp-ease),
    box-shadow 0.25s var(--cp-ease),
    backdrop-filter 0.25s var(--cp-ease);
}

body.cropuff-storefront .elementor-location-header .elementor-section,
body.cropuff-storefront .elementor-location-header .elementor-container,
body.cropuff-storefront .elementor-location-header .elementor-column,
body.cropuff-storefront .elementor-location-header .elementor-widget-wrap,
body.cropuff-storefront .elementor-location-header .elementor-element {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

body.cropuff-storefront.is-scrolled .elementor-location-header,
body.cropuff-storefront.is-scrolled .elementor-location-header .elementor-section,
body.cropuff-storefront.is-scrolled .elementor-location-header .elementor-container,
body.cropuff-storefront.is-scrolled .elementor-location-header .elementor-column,
body.cropuff-storefront.is-scrolled .elementor-location-header .elementor-widget-wrap,
body.cropuff-storefront.is-scrolled .elementor-location-header .elementor-element {
  background: var(--cp-nav-bg-scrolled) !important;
  background-color: var(--cp-nav-bg-scrolled) !important;
}

body.cropuff-storefront.is-scrolled .elementor-location-header {
  border-bottom-color: rgba(10, 10, 10, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.admin-bar body.cropuff-storefront .elementor-location-header,
body.admin-bar.cropuff-storefront .elementor-location-header {
  top: 32px;
}

body.cropuff-storefront.is-scrolled .elementor-location-header {
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

/* Elementor HTML navbar embed — widget 23ccc90 inside container f7b9818 (page content, not theme header) */
body.cropuff-storefront .elementor-element-f7b9818 {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
  background-color: transparent !important;
}

body.cropuff-storefront .elementor-element-f7b9818 > .e-con-inner {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

body.cropuff-storefront .elementor-element-23ccc90,
body.cropuff-storefront .elementor-element-23ccc90 .elementor-widget-container {
  width: 100% !important;
  max-width: 100% !important;
}

body.cropuff-storefront .elementor-element-f7b9818 > .e-con-inner,
body.cropuff-storefront .elementor-element-23ccc90,
body.cropuff-storefront .elementor-element-23ccc90 .elementor-widget-container,
body.cropuff-storefront .elementor-element-23ccc90 .navbar,
body.cropuff-storefront .navbar {
  background: transparent !important;
  background-color: transparent !important;
}

body.cropuff-storefront.is-scrolled .elementor-element-f7b9818 {
  background: var(--cp-nav-bg-scrolled) !important;
  background-color: var(--cp-nav-bg-scrolled) !important;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

body.cropuff-storefront.is-scrolled .elementor-element-23ccc90 .navbar,
body.cropuff-storefront.is-scrolled .navbar {
  background: transparent !important;
  background-color: transparent !important;
}

body.cropuff-storefront.is-scrolled {
  --cp-nav-h: 56px;
}

body.cropuff-storefront .elementor-nav-menu a {
  font-family: var(--cp-font-display);
  font-size: 14px;
  font-weight: 500;
}

body.cropuff-storefront :focus-visible {
  outline: 3px solid var(--cp-brand);
  outline-offset: 2px;
}

/* Elementor shell — rhythm without killing sections */
body.cropuff-storefront #page,
body.cropuff-storefront #content,
body.cropuff-storefront .site-content,
body.cropuff-storefront main.site-main {
  max-width: none !important;
  width: 100% !important;
}

body.cropuff-storefront .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: var(--cp-max) !important;
}

body.cropuff-storefront .elementor-widget-html .elementor-widget-container {
  padding: 0 !important;
}

/* Hide Karakteristike (5d4038d6) only — do not touch USP or other sections */
body.cropuff-home .elementor-element-5d4038d6 {
  display: none !important;
}

/*
 * USP row (54f87c31) — "Najbolja Cijena / Provjerena Kvaliteta / Brza Dostava"
 * Elementor used align-items:center + fixed unequal widths, so Brza Dostava dropped.
 */
body.cropuff-home .elementor-element-43b9d9d6 > .elementor-widget-wrap {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  align-content: flex-start !important;
  justify-content: flex-start !important;
  gap: 20px;
}

body.cropuff-home .elementor-element-43b9d9d6 > .elementor-widget-wrap > .elementor-widget {
  flex: 1 1 0 !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  transform: none !important;
}

body.cropuff-home .elementor-element-36b5eaac {
  --e-transform-translateX: 0px;
  --e-transform-translateY: 0px;
  transform: none !important;
}

@media (max-width: 767px) {
  body.cropuff-home .elementor-element-43b9d9d6 > .elementor-widget-wrap {
    flex-wrap: wrap !important;
  }

  body.cropuff-home .elementor-element-43b9d9d6 > .elementor-widget-wrap > .elementor-widget {
    flex: 1 1 100% !important;
  }
}

/* VIP PDP — no breadcrumb trail on legacy or unified shell */
body.cropuff-vip-page .breadcrumb,
body.single-product .product-container .breadcrumb {
  display: none !important;
}

/* Logo — full PuffShop wordmark (Elementor header) */
body.cropuff-storefront .custom-logo-link img,
body.cropuff-storefront .site-logo img,
body.cropuff-storefront .elementor-widget-theme-site-logo img,
body.cropuff-storefront .elementor-widget-image img[src*="puffshop"] {
  max-height: clamp(44px, 7vw, 72px) !important;
  width: auto !important;
  height: auto !important;
  max-width: min(280px, 52vw) !important;
  object-fit: contain;
}

body.cropuff-storefront .elementor-widget-theme-site-logo .elementor-widget-container,
body.cropuff-storefront .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}

/* Elementor nav — košarica as cart icon (hide text label) */
body.cropuff-storefront .elementor-widget-woocommerce-menu-cart .elementor-button-text,
body.cropuff-storefront .elementor-menu-cart__toggle .elementor-button-text,
body.cropuff-storefront .elementor-widget-woocommerce-menu-cart .elementor-screen-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.cropuff-storefront .elementor-menu-cart__toggle,
body.cropuff-storefront .elementor-widget-woocommerce-menu-cart .elementor-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 44px;
  min-height: 44px;
  padding: 10px !important;
  border-radius: 999px;
  border: 2px solid var(--cp-border) !important;
  background: #fff !important;
  color: var(--cp-ink) !important;
  transition: border-color 0.2s, background 0.2s;
}

body.cropuff-storefront .elementor-menu-cart__toggle:hover,
body.cropuff-storefront .elementor-widget-woocommerce-menu-cart .elementor-button:hover {
  border-color: var(--cp-brand) !important;
  background: rgba(0, 140, 186, 0.06) !important;
}

body.cropuff-storefront .elementor-menu-cart__toggle .e-font-icon-svg,
body.cropuff-storefront .elementor-menu-cart__toggle .elementor-button-icon svg {
  width: 22px !important;
  height: 22px !important;
}

body.cropuff-storefront .cropuff-nav-cart-icon {
  display: block;
  width: 22px;
  height: 22px;
}

/* —— Icon list (trust / USP rows in Elementor) —— */
.cropuff-icon-list {
  list-style: none;
  margin: 0 auto 32px;
  padding: 0 var(--cp-gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px 28px;
  max-width: var(--cp-max);
  justify-items: center;
}

.cropuff-icon-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--cp-muted);
  line-height: 1.45;
  text-align: center;
  max-width: 220px;
}

.cropuff-ic {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 140, 186, 0.12);
  color: var(--cp-brand);
}

.cropuff-ic svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* —— Promo banner —— */
.cropuff-promo-banner {
  border-bottom: 1px solid var(--cp-border);
  background: var(--cp-ink) !important;
  color: #fff;
}

.cropuff-promo-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 140, 186, 0.2);
  color: #fff;
}

.cropuff-promo-banner__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* —— Product grid —— */
.cropuff-pg-root .products-section,
.cropuff-pg-section {
  padding: var(--cp-section-y) var(--cp-gutter) !important;
  background: var(--cp-bg) !important;
  scroll-margin-top: calc(var(--cp-nav-h) + 12px);
}

.cropuff-pg-root .cropuff-pg-heading,
.cropuff-pg-root .products-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 8px !important;
  color: var(--cp-ink) !important;
  text-align: center;
}

.cropuff-pg-root .cropuff-pg-intro {
  margin: 0 auto 32px;
  color: var(--cp-muted);
  font-size: 15px;
  max-width: 52ch;
  text-align: center;
}

.cropuff-pg-root .cropuff-pg-noscript {
  margin: 0 auto 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  max-width: 720px;
}
.cropuff-pg-root .cropuff-pg-noscript a {
  color: var(--cp-brand);
  font-weight: 600;
  text-decoration: none;
}
.cropuff-pg-root .cropuff-pg-noscript a:hover {
  text-decoration: underline;
}

/* —— Low stock strip (above main grid) —— */
.cropuff-pg-low-stock {
  max-width: var(--cp-max);
  margin: 0 auto 32px;
  padding: 0;
  background: transparent !important;
  border: none;
  box-shadow: none;
}

.cropuff-pg-low-stock__eyebrow {
  display: none !important;
}

.cropuff-pg-low-stock__heading {
  margin: 0 0 20px;
  font-family: var(--cp-font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--cp-ink);
}

.cropuff-pg-low-stock__intro {
  display: none !important;
}

.cropuff-pg-low-stock__grid {
  margin-top: 0;
}

.cropuff-pg-low-stock[hidden] {
  display: none !important;
}

/* Beat legacy Elementor HTML widget <style> (fixed 260px cards + 480px min-height) */
.cropuff-pg-root.products-section,
.cropuff-pg-root .products-section {
  padding: var(--cp-section-y) var(--cp-gutter) !important;
  background: var(--cp-bg) !important;
  text-align: initial !important;
}

.cropuff-pg-root .product-card {
  width: 100% !important;
  max-width: none !important;
}

@media (max-width: 768px) {
  .cropuff-pg-low-stock {
    margin-bottom: 20px;
  }

  .cropuff-pg-low-stock__heading {
    margin-bottom: 12px;
  }

  .cropuff-pg-low-stock__grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--cp-gutter);
    max-width: none !important;
    margin: 0 calc(-1 * var(--cp-gutter)) !important;
    padding: 0 var(--cp-gutter) 4px !important;
  }

  .cropuff-pg-low-stock__grid .product-card {
    flex: 0 0 min(74vw, 240px) !important;
    width: min(74vw, 240px) !important;
    scroll-snap-align: start;
    padding: 12px 12px 14px !important;
  }

  .cropuff-pg-low-stock__grid .product-card img {
    height: 110px !important;
    margin-bottom: 8px !important;
  }

  .cropuff-pg-low-stock__grid .product-card .cropuff-pg-card-title {
    min-height: 0 !important;
    font-size: 13px !important;
    margin-bottom: 4px !important;
  }

  .cropuff-pg-low-stock__grid .product-card .price {
    font-size: 15px !important;
    margin-bottom: 10px !important;
  }

  .cropuff-pg-low-stock__grid .product-card .btn {
    padding: 8px 10px !important;
    font-size: 12px !important;
  }
}

.cropuff-pg-root .products-grid,
.cropuff-pg-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
  max-width: var(--cp-max) !important;
  margin: 0 auto !important;
  align-items: start;
}

.cropuff-pg-root .product-card {
  position: relative;
  min-height: 0 !important;
  height: auto;
  display: flex !important;
  flex-direction: column !important;
  background: #fff !important;
  border: 1px solid var(--cp-border) !important;
  border-radius: var(--cp-radius) !important;
  padding: 18px 16px 20px !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s var(--cp-ease), box-shadow 0.2s var(--cp-ease), border-color 0.2s;
  overflow: visible;
}

.cropuff-pg-root .product-card--hero {
  background: var(--cp-snow) !important;
  border-color: rgba(0, 140, 186, 0.2) !important;
}

.cropuff-pg-root .product-card--phone-case {
  padding: 14px 14px 16px !important;
  /* Keep badges paintable above stacked hover media (overflow must not clip badge layer). */
  overflow: visible;
}

.cropuff-pg-root .product-card--phone-case .product-card__media--phone-case {
  overflow: hidden;
  border-radius: calc(var(--cp-radius) - 4px);
}

.cropuff-pg-root .product-card__media--phone-case {
  position: relative;
  min-height: 220px;
  margin: 0 0 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cropuff-pg-root .product-card__stack {
  position: absolute;
  inset: 18px 8px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  pointer-events: none;
  z-index: 1;
}

.cropuff-pg-root .product-card__stack-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin-top: -28px;
}

.cropuff-pg-root .product-card__stack-row:first-child {
  margin-top: 0;
}

.cropuff-pg-root .product-card__stack-img {
  width: 52px;
  height: 78px;
  object-fit: contain;
  margin: 0 -10px;
  filter: drop-shadow(0 6px 10px rgba(15, 23, 42, 0.12));
  transform: rotate(calc((var(--stack-i, 0) - 0.5) * 8deg));
}

.cropuff-pg-root .product-card__phone-hero {
  position: relative;
  z-index: 3;
  width: min(72%, 190px);
  height: auto;
  max-height: 250px;
  object-fit: contain;
  margin: 0 auto 0;
  filter: drop-shadow(0 14px 22px rgba(15, 23, 42, 0.16));
}

.cropuff-pg-root .product-card__body--compact {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  text-align: left;
}

.cropuff-pg-root .product-card__body--compact .cropuff-pg-card-title {
  font-size: 14px;
  min-height: 0;
  margin-bottom: 4px;
  -webkit-line-clamp: 2;
}

.cropuff-pg-root .product-card__body--compact .nic-badge {
  margin-bottom: 6px;
  font-size: 10px;
}

.cropuff-pg-root .product-card__body--compact .price {
  font-size: 16px;
  margin-bottom: 10px;
}

.cropuff-pg-root .product-card__body--compact .btn {
  margin-top: 0;
  padding: 9px 12px;
  font-size: 12px;
}

.cropuff-pg-root .product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  pointer-events: none;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--cp-brand);
  color: #fff;
  border-radius: 999px;
}

.cropuff-pg-root .product-card__badge--urgency {
  background: #c62828;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.02em;
}

.cropuff-pg-root .product-card__badge--nova {
  background: #c62828;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cropuff-pg-root .product-card--urgency {
  border-color: rgba(198, 40, 40, 0.18) !important;
}

.cropuff-pg-root .product-card--urgency:hover {
  border-color: rgba(198, 40, 40, 0.35) !important;
}

@media (max-width: 960px) {
  .cropuff-pg-root .products-grid,
  .cropuff-pg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}

@media (max-width: 768px) {
  .cropuff-pg-root .products-grid,
  .cropuff-pg-grid {
    grid-template-columns: 1fr !important;
  }

  .cropuff-pg-root .product-card__stack-img {
    width: 44px;
    height: 66px;
    margin: 0 -8px;
  }

  .cropuff-pg-root .product-card__stack-row {
    margin-top: -22px;
  }
}

.cropuff-pg-root .product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--cp-shadow) !important;
  border-color: rgba(0, 140, 186, 0.35) !important;
}

.cropuff-pg-root .product-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  margin-bottom: 14px;
}

.cropuff-pg-root .product-card .cropuff-pg-card-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.cropuff-pg-root .nic-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--cp-muted);
}

.cropuff-pg-root .product-card .price {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
}

.cropuff-pg-root .product-card .btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--cp-font-display);
  text-decoration: none;
  text-align: center;
  color: var(--cp-cta-text);
  border-radius: var(--cp-radius);
  border: 1px solid var(--cp-brand-dark);
  background: var(--cp-cta-bg) !important;
  box-shadow: 0 1px 2px rgba(0, 90, 120, 0.12);
  white-space: normal;
  line-height: 1.3;
  cursor: pointer;
  transition:
    background 0.18s var(--cp-ease),
    border-color 0.18s var(--cp-ease),
    transform 0.18s var(--cp-ease),
    box-shadow 0.18s var(--cp-ease);
}

.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--cp-font-display);
  text-decoration: none;
  color: var(--cp-cta-text);
  border-radius: var(--cp-radius);
  border: 1px solid var(--cp-brand-dark);
  background: var(--cp-cta-bg) !important;
  box-shadow: 0 1px 2px rgba(0, 90, 120, 0.12);
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.18s var(--cp-ease),
    border-color 0.18s var(--cp-ease),
    transform 0.18s var(--cp-ease),
    box-shadow 0.18s var(--cp-ease);
}

.cropuff-pg-root .product-card .btn:hover,
.cp-btn:hover {
  background: var(--cp-brand-dark) !important;
  border-color: var(--cp-brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 90, 120, 0.2);
}

.cropuff-pg-root .product-card .btn:active,
.cp-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 90, 120, 0.12);
}

.cp-btn--ghost {
  background: transparent !important;
  color: var(--cp-brand) !important;
  border-color: var(--cp-border) !important;
  box-shadow: none !important;
}

.cp-btn--ghost:hover {
  border-color: var(--cp-brand) !important;
  background: rgba(0, 140, 186, 0.06) !important;
}

.cropuff-pg-status { margin: 0 0 24px; color: var(--cp-muted); font-size: 15px; text-align: center; }

.cropuff-pg-skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  max-width: var(--cp-max);
  margin: 0 auto;
}

.cropuff-pg-skeleton__card {
  height: 380px;
  border-radius: var(--cp-radius);
  background: linear-gradient(90deg, var(--cp-surface) 25%, #eceff3 50%, var(--cp-surface) 75%);
  background-size: 200% 100%;
  animation: cp-shimmer 1.2s ease-in-out infinite;
}

@keyframes cp-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cropuff-pg-skeleton__card { animation: none; background: var(--cp-surface); }
}

.cp-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 20px;
  min-height: 200px;
}

.cp-loader__mark {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(0, 140, 186, 0.2);
  border-top-color: var(--cp-brand);
  border-radius: 50%;
  animation: cp-spin 0.8s linear infinite;
}

@keyframes cp-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .cp-loader__mark { animation: none; border-top-color: var(--cp-brand); }
}

.cp-loader__text {
  font-size: 15px;
  color: var(--cp-muted);
}
.cropuff-pg-grid[hidden] { display: none !important; }

/* —— Often bought —— */
.cropuff-sfo-root .cropuff-sfo-section {
  padding: var(--cp-section-y) var(--cp-gutter);
  background: var(--cp-bg);
  border-top: 1px solid var(--cp-border);
}

.cropuff-sfo-root .cropuff-sfo-title {
  font-family: var(--cp-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  text-align: center;
}

.cropuff-sfo-root .cropuff-sfo-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: var(--cp-max);
  margin: 0 auto;
}

.cropuff-sfo-root .cropuff-sfo-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid var(--cp-border);
  border-radius: var(--cp-radius);
  padding: 18px 16px 20px;
}

.cropuff-sfo-root .cropuff-sfo-image {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.cropuff-sfo-root .cropuff-sfo-image img {
  max-height: 160px;
  object-fit: contain;
}

.cropuff-sfo-root .cropuff-sfo-name { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.cropuff-sfo-root .cropuff-sfo-price { font-size: 17px; font-weight: 800; color: var(--cp-brand); margin-bottom: 14px; }

.cropuff-sfo-root .cropuff-sfo-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--cp-font-display);
  text-decoration: none;
  color: var(--cp-cta-text);
  background: var(--cp-cta-bg);
  border: 2px solid var(--cp-brand-dark);
  border-radius: var(--cp-radius);
  box-shadow: var(--cp-brutal);
}

.cropuff-sfo-root .cropuff-sfo-btn:hover {
  background: var(--cp-brand-dark);
}

.cropuff-sfo-products[hidden] { display: none !important; }
.cropuff-sfo-status { margin: 0; color: var(--cp-muted); text-align: center; }

/* Woo archive + VIP spacing */
body.cropuff-storefront.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: var(--cp-max);
  margin: 40px auto !important;
  padding: 0 var(--cp-gutter) 64px !important;
}

/* Shop archive (/shop) — brand the default Woo blocks so Proizvodi is not bare theme purple */
body.woocommerce-shop .wp-site-blocks > .wp-block-group {
  max-width: var(--cp-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--cp-gutter);
  padding-right: var(--cp-gutter);
}

body.woocommerce-shop .wp-block-query-title {
  font-family: var(--cp-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cp-ink);
}

body.woocommerce-shop .wc-block-product-template,
body.woocommerce-shop ul.wc-block-product-template {
  gap: 20px !important;
}

body.woocommerce-shop .wc-block-product {
  background: var(--cp-snow);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  padding: 16px;
  box-sizing: border-box;
}

body.woocommerce-shop .wc-block-product .wc-block-components-product-title a,
body.woocommerce-shop .wc-block-product .wp-block-post-title a {
  font-family: var(--cp-font-display);
  font-weight: 650;
  color: var(--cp-ink);
  text-decoration: none;
}

body.woocommerce-shop .wc-block-product .wc-block-components-product-price,
body.woocommerce-shop .wc-block-product .price {
  color: var(--cp-ink);
  font-weight: 700;
}

body.woocommerce-shop .wc-block-product .wp-block-button__link,
body.woocommerce-shop .wc-block-product .add_to_cart_button,
body.woocommerce-shop .wc-block-components-product-button .wp-block-button__link {
  background: var(--cp-cta-bg) !important;
  color: var(--cp-cta-text) !important;
  border: 2px solid var(--cp-brand-dark) !important;
  border-radius: var(--cp-radius) !important;
  box-shadow: var(--cp-brutal);
  font-family: var(--cp-font-display);
  font-weight: 700;
}

body.woocommerce-shop .wc-block-product .wp-block-button__link:hover,
body.woocommerce-shop .wc-block-product .add_to_cart_button:hover,
body.woocommerce-shop .wc-block-components-product-button .wp-block-button__link:hover {
  background: var(--cp-brand-dark) !important;
}

body.cropuff-vip-page .product-container { padding-top: 16px; }

.cropuff-vip-reviews-wrap {
  max-width: 1280px;
  margin: 56px auto;
  padding: 0;
  border-top: none;
}

.cropuff-vip-reviews-wrap .cr-reviews-root,
.cropuff-vip-reviews-wrap .cropuff-reviews,
.cropuff-vip-reviews-wrap .cr-wrap {
  max-width: 100%;
}

@media (max-width: 768px) {
  body.cropuff-storefront .custom-logo-link img,
  body.cropuff-storefront .site-logo img,
  body.cropuff-storefront .elementor-widget-theme-site-logo img {
    max-height: clamp(48px, 14vw, 64px) !important;
    max-width: min(220px, 68vw) !important;
  }

  .cp-feature-grid {
    grid-template-columns: 1fr;
    gap: var(--cp-space-4);
    padding: var(--cp-space-6) var(--cp-gutter);
  }

  .cropuff-icon-list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .cropuff-icon-list li {
    font-size: 13px;
    max-width: none;
  }

  .cropuff-ic {
    width: 40px;
    height: 40px;
  }

  .cropuff-ic svg {
    width: 22px;
    height: 22px;
  }
}

/* —— Feature grid (homepage embed Task 3) —— */
.cp-features-block {
  max-width: var(--cp-max);
  margin: 0 auto;
  padding: var(--cp-section-y) var(--cp-gutter) 0;
}

.cp-features-block__heading {
  font-family: var(--cp-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: var(--cp-ink);
  text-align: center;
}

.cp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--cp-space-5);
  align-items: stretch;
  max-width: none;
  margin: 0;
  padding: 0;
}

.cp-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--cp-space-5);
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
}

.cp-feature-card--accent {
  background: var(--cp-snow-80);
}

.cp-feature-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--cp-space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 140, 186, 0.12);
  color: var(--cp-brand);
}

.cp-feature-card__title {
  font-family: var(--cp-font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 var(--cp-space-2);
}

.cp-feature-card__body {
  font-size: 15px;
  color: var(--cp-muted);
  line-height: 1.55;
  flex: 1;
  margin: 0 0 var(--cp-space-4);
}

/* —— Split features (Task 6) —— */
.cp-split-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--cp-space-6);
  max-width: var(--cp-max);
  margin: 0 auto;
  padding: var(--cp-section-y) var(--cp-gutter);
}

.cp-split-features .cp-feature-card {
  min-height: 280px;
}

.cp-split-features .cp-btn {
  margin-top: auto;
}

@media (max-width: 768px) {
  .cp-split-features { grid-template-columns: 1fr; gap: var(--cp-space-6); }
}

/* —— Scroll reveal (Task 17.0) —— */
.cp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s var(--cp-ease), transform 0.45s var(--cp-ease);
}

.cp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .cp-reveal { opacity: 1; transform: none; transition: none; }
}

/* Injected service links inside Elementor Kontakti column */
.elementor-element-792544cb .cp-storefront-footer__subhead,
.elementor-location-footer .cp-storefront-footer__subhead {
  margin: 18px 0 10px;
  font-size: 15px;
  color: #fff;
}

.elementor-element-792544cb .cp-footer-services,
.elementor-location-footer .cp-footer-services {
  list-style: none;
  margin: 0;
  padding: 0;
}

.elementor-element-792544cb .cp-footer-services li,
.elementor-location-footer .cp-footer-services li {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.45;
}

.elementor-element-792544cb .cp-footer-services a,
.elementor-location-footer .cp-footer-services a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.elementor-element-792544cb .cp-footer-services a:hover,
.elementor-location-footer .cp-footer-services a:hover {
  color: #fff;
  text-decoration: underline;
}

/* —— Footer legal strip (inside blue Elementor / PuffShop footer only) —— */
.cp-footer-legal {
  width: 100%;
  box-sizing: border-box;
  margin-top: 8px;
  padding: 18px var(--cp-gutter) 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

.cp-footer-legal__warning {
  margin: 0 auto 12px;
  max-width: 56ch;
}

.cp-footer-legal__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 0;
}

.cp-footer-legal__links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cp-footer-legal__links a:hover {
  color: #fff;
}

body.cropuff-storefront .elementor-element-792544cb .cp-footer-legal {
  color: rgba(255, 255, 255, 0.88);
}

/* Kill legacy white second footer if an old deploy / cache still prints it */
body.cropuff-storefront footer.cp-footer-compliance,
body.cropuff-storefront .cp-footer-compliance {
  display: none !important;
}

/* —— Cart enhance (Task 19a) —— */
.cp-cart-shipping-bar {
  padding: 12px 16px;
  border-bottom: 1px solid var(--cp-border);
  background: var(--cp-snow);
  font-size: 13px;
}

.cp-cart-shipping-bar__track {
  height: 6px;
  background: var(--cp-surface);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}

.cp-cart-shipping-bar__fill {
  height: 100%;
  background: var(--cp-brand);
  border-radius: 999px;
  transition: width 0.3s var(--cp-ease);
}

.cp-cart-flavour-meta {
  display: block;
  font-size: 12px;
  color: var(--cp-muted);
  margin-top: 2px;
}

.cp-faq {
  max-width: var(--cp-max);
  margin: 0 auto;
  padding: var(--cp-section-y) var(--cp-gutter);
}

.cp-faq h2 {
  font-family: var(--cp-font-display);
  text-align: center;
  margin: 0 0 24px;
}

.cp-faq__item {
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  padding: 12px 16px;
  margin-bottom: 10px;
  background: #fff;
}

.cp-faq__item summary {
  font-weight: 600;
  cursor: pointer;
  font-family: var(--cp-font-display);
}

.cp-faq__item p {
  margin: 12px 0 0;
  color: var(--cp-muted);
  line-height: 1.55;
}

/* Nav patch — account icon + expanded link set */
body.cropuff-storefront .navbar-actions {
  gap: clamp(10px, 1.6vw, 18px);
}

body.cropuff-storefront .navbar-actions a.cropuff-nav-text {
  font-family: var(--cp-font-display);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 500;
  white-space: nowrap;
}

body.cropuff-storefront .navbar-actions a.cropuff-nav-text.is-active {
  color: var(--cp-brand);
}

body.cropuff-storefront .cropuff-nav-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--cp-ink);
  transition: background 0.2s var(--cp-ease);
  flex-shrink: 0;
}

body.cropuff-storefront .cropuff-nav-account:hover {
  background: rgba(10, 10, 10, 0.06);
}

body.cropuff-storefront .cropuff-nav-account-icon {
  width: 22px;
  height: 22px;
}

body.cropuff-storefront .navbar-actions .account-btn {
  display: none !important;
}

body.cropuff-storefront .navbar-actions .cart-link,
body.cropuff-storefront .navbar-right .cart-link {
  flex-shrink: 0;
}

body.cropuff-storefront .mobile-menu-panel a.cropuff-nav-mobile-link.is-active {
  color: var(--cp-brand);
}

body.cropuff-storefront .mobile-menu-panel a.cropuff-nav-mobile-account {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--cp-border);
  font-weight: 600;
}

body.cropuff-storefront .cropuff-nav-account-mobile {
  display: none !important;
}

body.cropuff-storefront .mobile-menu-panel a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-family: var(--cp-font-display);
  font-weight: 500;
  border-bottom: 1px solid var(--cp-border);
  text-decoration: none;
  color: var(--cp-ink);
}

body.cropuff-storefront .mobile-menu-panel a:last-child {
  border-bottom: none;
}

/*
 * Collapse desktop link row for tablet + phone.
 * Critical: lives in enqueued CSS (not Elementor HTML <style>) so inject/clone paths stay responsive.
 */
@media (max-width: 1024px) {
  body.cropuff-storefront .navbar {
    padding: 8px 14px !important;
    min-height: 56px;
  }

  body.cropuff-storefront .navbar-logo {
    flex: 1 1 auto;
    max-width: min(180px, 52vw);
  }

  body.cropuff-storefront .navbar-logo img,
  body.cropuff-storefront .cropuff-chrome-navbar-wrap .navbar-logo img,
  body.cropuff-storefront .elementor-element-23ccc90 .navbar-logo img {
    height: 44px !important;
  }

  body.cropuff-storefront .navbar-actions {
    display: none !important;
  }

  body.cropuff-storefront .navbar-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    flex: 0 0 auto;
  }

  body.cropuff-storefront .menu-toggle {
    display: inline-flex !important;
    z-index: 2001;
  }

  body.cropuff-storefront .cropuff-nav-account-mobile {
    display: inline-flex !important;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  body.cropuff-storefront .navbar {
    padding: 6px 12px !important;
  }

  body.cropuff-storefront .navbar-logo {
    max-width: min(150px, 48vw);
  }

  body.cropuff-storefront .navbar-logo img,
  body.cropuff-storefront .cropuff-chrome-navbar-wrap .navbar-logo img,
  body.cropuff-storefront .elementor-element-23ccc90 .navbar-logo img {
    height: 40px !important;
  }

  body.cropuff-storefront .navbar-right {
    gap: 4px !important;
  }

  body.cropuff-storefront .mobile-menu-panel {
    width: min(92vw, 360px);
    padding-left: 22px;
    padding-right: 22px;
  }

  body.cropuff-storefront .mobile-menu-panel a {
    font-size: 17px;
    padding: 13px 0;
  }
}

/* Managed content pages */
body.cropuff-content-page .site-main,
body.cropuff-content-page .elementor-section-wrap {
  max-width: none;
}

/* Strip Extendable / block-theme chrome (tertiary title band, preset spacing) */
body.cropuff-content-page .wp-block-post-title,
body.cropuff-content-page .has-tertiary-background-color,
body.cropuff-content-page .has-secondary-background-color,
body.cropuff-content-page .has-primary-background-color,
body.cropuff-content-page .has-foreground-background-color {
  display: none !important;
}

body.cropuff-content-page .wp-site-blocks > main,
body.cropuff-content-page main.wp-block-group,
body.cropuff-content-page .wp-block-post-content,
body.cropuff-content-page .entry-content {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  max-width: none !important;
}

body.cropuff-content-page .wp-site-blocks > :where(:not(header):not(footer)) {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

body.cropuff-content-page :where(.is-layout-flow, .is-layout-constrained) > * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

/* Only the empty theme title band — never hide .entry-content / post body */
body.cropuff-content-page .wp-container-core-group-is-layout-99d6da22 > .has-tertiary-background-color,
body.cropuff-content-page [class*="wp-container-core-group-is-layout-"] > .has-tertiary-background-color,
body.cropuff-content-page [class*="wp-container-core-group-is-layout-"] > .has-secondary-background-color {
  display: none !important;
}

body.cropuff-content-page .entry-content,
body.cropuff-content-page .wp-block-post-content,
body.cropuff-content-page .cp-content-page__root {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.cp-content-page__root {
  max-width: var(--cp-max);
  margin: 0 auto;
  padding: var(--cp-section-y) var(--cp-gutter);
}

.cp-content-page__hero {
  margin-bottom: var(--cp-space-7);
}

.cp-content-page__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cp-brand);
  margin: 0 0 var(--cp-space-3);
}

.cp-content-page__eyebrow a {
  color: inherit;
  text-decoration: none;
}

.cp-content-page__hero h1 {
  font-family: var(--cp-font-display);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin: 0 0 var(--cp-space-4);
}

.cp-content-page__lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--cp-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 62ch;
}

.cp-content-page__section {
  margin-bottom: var(--cp-space-6);
}

.cp-content-page__section h2 {
  font-family: var(--cp-font-display);
  font-size: clamp(20px, 2.5vw, 24px);
  margin: 0 0 var(--cp-space-3);
}

.cp-content-page__section p,
.cp-content-page__body {
  color: var(--cp-ink);
  line-height: 1.65;
}

.cp-content-page__list {
  margin: var(--cp-space-3) 0 0;
  padding-left: 1.25rem;
}

.cp-content-page__list li {
  margin-bottom: var(--cp-space-2);
}

.cp-content-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--cp-space-4);
  margin-bottom: var(--cp-space-7);
}

.cp-content-page__card {
  background: var(--cp-surface);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  padding: var(--cp-space-5);
}

.cp-content-page__card h2 {
  font-family: var(--cp-font-display);
  font-size: 18px;
  margin: 0 0 var(--cp-space-2);
}

.cp-content-page__link {
  font-weight: 600;
  color: var(--cp-brand);
}

.cp-content-page__cta {
  margin-top: var(--cp-space-7);
  padding: var(--cp-space-6);
  background: var(--cp-snow);
  border-radius: var(--cp-radius);
  border: 1px solid var(--cp-border);
}

.cp-content-page__faq .cp-faq-item {
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  padding: var(--cp-space-4) var(--cp-space-5);
  margin-bottom: var(--cp-space-3);
  background: #fff;
}

.cp-content-page__faq .cp-faq-item summary {
  font-family: var(--cp-font-display);
  font-weight: 600;
  cursor: pointer;
}

.cp-content-page__faq .cp-faq-item p {
  margin: var(--cp-space-3) 0 0;
  color: var(--cp-muted);
}

.cp-content-page__posts {
  display: grid;
  gap: var(--cp-space-5);
}

.cp-content-page__post {
  padding: var(--cp-space-5);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  background: #fff;
}

.cp-content-page__post time {
  font-size: 13px;
  color: var(--cp-muted);
}

.cp-content-page__post h2 {
  font-family: var(--cp-font-display);
  font-size: 22px;
  margin: var(--cp-space-2) 0;
}

.cp-content-page__post h2 a {
  color: inherit;
  text-decoration: none;
}

.cp-content-page__post h2 a:hover {
  color: var(--cp-brand);
}

.cp-content-page__read-more {
  font-weight: 600;
  color: var(--cp-brand);
  text-decoration: none;
}

.cp-content-page__read-more:hover {
  text-decoration: underline;
}

.cp-content-page__footer-nav {
  margin-top: var(--cp-space-8);
  padding-top: var(--cp-space-6);
  border-top: 1px solid var(--cp-border);
}

.cp-content-page__footer-nav-title {
  font-family: var(--cp-font-display);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 var(--cp-space-3);
  color: var(--cp-muted);
}

.cp-content-page__footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cp-space-2) var(--cp-space-5);
  list-style: none;
  margin: 0;
  padding: 0;
}

.cp-content-page__footer-nav-list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cp-brand);
  text-decoration: none;
}

.cp-content-page__footer-nav-list a:hover {
  text-decoration: underline;
}

/* —— O nama page —— */
.cp-about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--cp-space-6);
  align-items: center;
  margin-bottom: var(--cp-space-8);
}

.cp-about-hero__media {
  position: relative;
  border-radius: calc(var(--cp-radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--cp-border);
  box-shadow: var(--cp-shadow);
}

.cp-about-hero__media img {
  display: block;
  width: 100%;
  height: clamp(260px, 38vw, 420px);
  object-fit: cover;
}

.cp-about-hero__credit {
  position: absolute;
  right: 12px;
  bottom: 10px;
  margin: 0;
  padding: 4px 10px;
  font-size: 11px;
  color: #fff;
  background: rgba(10, 10, 10, 0.55);
  border-radius: 999px;
}

.cp-about-hero__credit a {
  color: #fff;
  text-decoration: underline;
}

.cp-about-hero__copy h1 {
  font-family: var(--cp-font-display);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin: 0 0 var(--cp-space-4);
}

.cp-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cp-space-3);
  margin: var(--cp-space-5) 0 0;
}

.cp-about-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--cp-space-6);
  margin-bottom: var(--cp-space-8);
}

.cp-about-split__block h2 {
  font-family: var(--cp-font-display);
  font-size: clamp(20px, 2.5vw, 24px);
  margin: 0 0 var(--cp-space-3);
}

.cp-about-split__block p {
  margin: 0 0 var(--cp-space-3);
  color: var(--cp-ink);
  line-height: 1.65;
}

.cp-about-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--cp-space-4);
  margin-bottom: var(--cp-space-8);
}

.cp-about-facts__card {
  background: var(--cp-surface);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  padding: var(--cp-space-5);
}

.cp-about-facts__card h5 {
  font-family: var(--cp-font-display);
  font-size: 18px;
  margin: 0 0 var(--cp-space-2);
}

.cp-about-facts__card p {
  margin: 0 0 var(--cp-space-2);
  font-size: 15px;
  line-height: 1.55;
  color: var(--cp-muted);
}

.cp-about-facts__card p:last-child {
  margin-bottom: 0;
}

.cp-about-facts__card a {
  font-weight: 600;
  color: var(--cp-brand);
}

.cp-about-products {
  margin-bottom: var(--cp-space-8);
}

.cropuff-sfo-root--inline .cropuff-sfo-section {
  padding: 0;
  background: transparent;
  border: 0;
}

.cp-about-products__sub {
  margin: -20px 0 28px;
  text-align: center;
  color: var(--cp-muted);
}

.cp-about-blog,
.cp-about-vijesti {
  margin-bottom: var(--cp-space-8);
}

.cp-about-blog__head,
.cp-about-vijesti__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--cp-space-2) var(--cp-space-4);
  margin-bottom: var(--cp-space-5);
}

.cp-about-blog__head h2,
.cp-about-vijesti__head h2 {
  font-family: var(--cp-font-display);
  font-size: clamp(22px, 3vw, 28px);
  margin: 0;
  flex: 1 1 auto;
}

.cp-about-blog__head p,
.cp-about-vijesti__head p {
  flex: 1 1 100%;
  margin: 0;
  color: var(--cp-muted);
}

.cp-about-blog__all,
.cp-about-vijesti__all {
  margin-left: auto;
  font-weight: 600;
  color: var(--cp-brand);
  text-decoration: none;
}

.cp-about-blog__all:hover,
.cp-about-vijesti__all:hover {
  text-decoration: underline;
}

.cp-about-blog .cp-content-page__posts,
.cp-about-vijesti .cp-content-page__posts {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cp-about-blog .cp-content-page__post h5,
.cp-about-vijesti .cp-content-page__post h5 {
  font-family: var(--cp-font-display);
  font-size: 20px;
  margin: var(--cp-space-2) 0;
}

.cp-about-blog .cp-content-page__post h5 a,
.cp-about-vijesti .cp-content-page__post h5 a {
  color: inherit;
  text-decoration: none;
}

.cp-about-blog .cp-content-page__post h5 a:hover,
.cp-about-vijesti .cp-content-page__post h5 a:hover {
  color: var(--cp-brand);
}

.cp-about-cta h2 {
  font-family: var(--cp-font-display);
  font-size: clamp(20px, 2.5vw, 24px);
  margin: 0 0 var(--cp-space-3);
}

.cp-about-cta p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cp-space-3);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .cp-about-hero {
    grid-template-columns: 1fr;
  }

  .cp-about-split {
    grid-template-columns: 1fr;
  }
}

/* —— Blog / content page media —— */
.cp-content-page__figure {
  margin: 0 0 var(--cp-space-7);
  border-radius: calc(var(--cp-radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--cp-border);
  background: var(--cp-snow);
}

.cp-content-page__figure img {
  display: block;
  width: 100%;
  height: clamp(200px, 36vw, 420px);
  object-fit: cover;
}

.cp-content-page__figure figcaption {
  margin: 0;
  padding: var(--cp-space-3) var(--cp-space-4);
  font-size: 13px;
  color: var(--cp-muted);
  line-height: 1.45;
}

.cp-content-page__figure figcaption a {
  color: var(--cp-brand);
}

.cp-content-page__table-wrap {
  overflow-x: auto;
  margin: var(--cp-space-4) 0;
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
}

.cp-content-page__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.cp-content-page__table th,
.cp-content-page__table td {
  text-align: left;
  padding: var(--cp-space-3) var(--cp-space-4);
  border-bottom: 1px solid var(--cp-border);
  vertical-align: top;
}

.cp-content-page__table th {
  font-family: var(--cp-font-display);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cp-muted);
  background: var(--cp-snow);
}

.cp-content-page__table tr:last-child td {
  border-bottom: 0;
}

.cp-content-page__table a {
  font-weight: 600;
  color: var(--cp-brand);
  text-decoration: none;
}

.cp-content-page__table a:hover {
  text-decoration: underline;
}

.cp-content-page__products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--cp-space-4);
  margin: var(--cp-space-5) 0 0;
}

.cp-content-page__product {
  display: flex;
  flex-direction: column;
  gap: var(--cp-space-2);
  padding: var(--cp-space-4);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cp-content-page__product:hover {
  border-color: var(--cp-brand);
  box-shadow: var(--cp-shadow);
}

.cp-content-page__product img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: contain;
  background: var(--cp-snow);
  border-radius: calc(var(--cp-radius) - 2px);
}

.cp-content-page__product-name {
  font-family: var(--cp-font-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
}

.cp-content-page__product-meta {
  font-size: 13px;
  color: var(--cp-muted);
}

.cp-content-page__posts--grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cp-content-page__post-media {
  display: block;
  margin: calc(var(--cp-space-5) * -1) calc(var(--cp-space-5) * -1) var(--cp-space-4);
  border-radius: var(--cp-radius) var(--cp-radius) 0 0;
  overflow: hidden;
  background: var(--cp-snow);
}

.cp-content-page__post-media img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.cp-content-page__cta h2 {
  font-family: var(--cp-font-display);
  font-size: clamp(20px, 2.5vw, 24px);
  margin: 0 0 var(--cp-space-3);
}

.cp-content-page__cta p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cp-space-3);
  margin-bottom: 0;
}

.cp-content-page__section h2 {
  scroll-margin-top: 88px;
}

/* —— Additive trust + partners (after products; Elementor untouched) —— */
.cp-home-trust-block {
  max-width: var(--cp-max);
  margin: 0 auto;
  padding: var(--cp-space-6) var(--cp-gutter) var(--cp-space-7);
  display: grid;
  gap: var(--cp-space-5);
}

.cp-home-trust__title {
  font-family: var(--cp-font-display);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  margin: 0 0 var(--cp-space-4);
  text-align: center;
}

.cp-home-trust__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--cp-space-3);
}

.cp-home-trust__stats li {
  text-align: center;
  padding: var(--cp-space-4) var(--cp-space-3);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  background: linear-gradient(180deg, var(--cp-snow) 0%, #fff 100%);
  color: var(--cp-muted);
  font-size: 13px;
}

.cp-home-trust__stats strong {
  display: block;
  font-family: var(--cp-font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--cp-ink);
  margin-bottom: 4px;
}

.cp-home-partners {
  text-align: center;
  padding: var(--cp-space-4);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  background: #fff;
}

.cp-home-partners__label {
  margin: 0 0 var(--cp-space-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cp-muted);
}

.cp-home-partners__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
}

.cp-home-partners__link {
  font-family: var(--cp-font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--cp-brand-dark);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.cp-home-partners__link:hover,
.cp-home-partners__link:focus-visible {
  border-bottom-color: var(--cp-brand);
  color: var(--cp-brand);
}

@media (max-width: 700px) {
  .cp-home-trust__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* —— Premium shop page (ADR-0006) —— */
body.cropuff-shop-page {
  display: block !important;
  flex-direction: column !important;
  background: var(--cp-bg);
}

body.cropuff-shop-page > .cropuff-chrome-navbar-wrap,
body.cropuff-shop-page > #cropuff-shop,
body.cropuff-shop-page > .cp-storefront-footer,
body.cropuff-shop-page > footer.cp-storefront-footer {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  box-sizing: border-box;
}

.cp-shop {
  max-width: none;
  margin: 0;
  padding: 0 0 48px;
}

.cp-shop-hero {
  max-width: var(--cp-max);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 56px) var(--cp-gutter) clamp(20px, 4vw, 28px);
}

.cp-shop-hero__eyebrow {
  margin: 0 0 8px;
  font-family: var(--cp-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cp-brand);
}

.cp-shop-hero__title {
  margin: 0 0 12px;
  font-family: var(--cp-font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--cp-ink);
}

.cp-shop-hero__lead {
  margin: 0 0 20px;
  max-width: 42rem;
  font-size: 1.05rem;
  color: var(--cp-muted);
  line-height: 1.55;
}

.cp-shop-hero__jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.cp-shop-hero__jump a {
  font-family: var(--cp-font-display);
  font-size: 14px;
  font-weight: 650;
  color: var(--cp-brand-dark);
  text-decoration: none;
  border-bottom: 2px solid rgba(0, 140, 186, 0.25);
}

.cp-shop-hero__jump a:hover,
.cp-shop-hero__jump a:focus-visible {
  border-bottom-color: var(--cp-brand);
  color: var(--cp-brand);
}

body.cropuff-shop-page .cropuff-pg-root .products-section {
  padding-top: 8px;
}

body.cropuff-shop-page .cropuff-pg-heading {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.cp-shop-benefits,
.cp-shop-compare,
.cp-shop-guides,
.cp-shop-faq,
.cp-shop-trust {
  max-width: var(--cp-max);
  margin: 0 auto;
  padding: var(--cp-section-y) var(--cp-gutter) 0;
}

.cp-shop-benefits h2,
.cp-shop-compare h2,
.cp-shop-guides h2,
.cp-shop-faq h2 {
  margin: 0 0 10px;
  font-family: var(--cp-font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  letter-spacing: -0.02em;
  color: var(--cp-ink);
}

.cp-shop-benefits__grid {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.cp-shop-benefits__grid li {
  background: var(--cp-snow);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cp-shop-benefits__grid strong {
  font-family: var(--cp-font-display);
  font-size: 1rem;
  color: var(--cp-ink);
}

.cp-shop-benefits__grid span {
  font-size: 0.92rem;
  color: var(--cp-muted);
  line-height: 1.5;
}

.cp-shop-compare__lead,
.cp-shop-guides__lead {
  margin: 0 0 20px;
  color: var(--cp-muted);
  max-width: 40rem;
}

.cp-shop-compare__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  background: #fff;
}

.cp-shop-compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.cp-shop-compare__table th,
.cp-shop-compare__table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--cp-border);
  font-size: 0.95rem;
}

.cp-shop-compare__table thead th {
  font-family: var(--cp-font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cp-muted);
  background: var(--cp-snow);
}

.cp-shop-compare__table tbody th {
  font-family: var(--cp-font-display);
  font-weight: 700;
  color: var(--cp-ink);
}

.cp-shop-compare__table a {
  font-weight: 650;
  color: var(--cp-brand-dark);
  text-decoration: none;
}

.cp-shop-compare__table a:hover {
  color: var(--cp-brand);
  text-decoration: underline;
}

.cp-shop-compare__more {
  margin: 16px 0 0;
}

.cp-shop-compare__more a,
.cp-shop-guides__title {
  margin: 0;
  font-family: var(--cp-font-display);
  font-weight: 700;
  color: var(--cp-brand-dark);
}

.cp-shop-guides__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cp-shop-guides__grid a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: 20px 18px;
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  background: #fff;
  text-decoration: none;
  transition: border-color 0.2s var(--cp-ease), transform 0.2s var(--cp-ease), box-shadow 0.2s var(--cp-ease);
}

.cp-shop-guides__grid a:hover,
.cp-shop-guides__grid a:focus-visible {
  border-color: rgba(0, 140, 186, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--cp-shadow);
}

.cp-shop-guides__desc {
  font-size: 0.92rem;
  color: var(--cp-muted);
  line-height: 1.45;
}

.cp-shop-compliance {
  max-width: var(--cp-max);
  margin: 40px auto 0;
  padding: 0 var(--cp-gutter);
  font-size: 0.85rem;
  color: var(--cp-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 960px) {
  .cp-shop-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cp-shop-guides__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .cp-shop-benefits__grid,
  .cp-shop-guides__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Storefront quality pass (2026-07) --- */
html,
body.cropuff-storefront {
  overflow-x: clip;
  max-width: 100%;
}

.cp-compare {
  padding: clamp(2rem, 4vw, 3rem) var(--cp-gutter);
  max-width: var(--cp-max);
  margin: 0 auto;
}

.cp-compare__lead {
  color: var(--cp-muted);
  max-width: 52ch;
  margin-bottom: 1.25rem;
}

.cp-compare__pickers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cp-compare__pickers select {
  border: 1px solid var(--cp-border, #e2e8f0);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  background: #fff;
  font: inherit;
}

.cp-compare__vs {
  font-weight: 600;
  color: var(--cp-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
}

.cp-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--cp-border, #e2e8f0);
  border: 1px solid var(--cp-border, #e2e8f0);
  border-radius: 12px;
  overflow: hidden;
}

.cp-compare__col {
  background: #fff;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cp-compare__index {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--cp-muted);
  margin: 0;
}

.cp-compare__media {
  display: block;
  width: 120px;
  margin: 0 auto;
  aspect-ratio: 1;
  background: var(--cp-snow, #f7fbff);
  border-radius: 8px;
  overflow: hidden;
}

.cp-compare__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.cp-compare__col--winner {
  box-shadow: inset 0 0 0 2px var(--cp-brand, #008cba);
  position: relative;
}

.cp-compare__badge {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cp-brand, #008cba);
}

.cp-compare__specs {
  margin-top: 1.5rem;
  overflow-x: auto;
}

.cp-compare__spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.cp-compare__spec-table th,
.cp-compare__spec-table td {
  border: 1px solid var(--cp-border, #e2e8f0);
  padding: 0.55rem 0.75rem;
  text-align: left;
}

.cp-compare__spec-table thead th {
  background: var(--cp-snow, #f7fbff);
  font-weight: 600;
}

.cp-compare__spec-winner,
.cp-compare__spec-table td.cp-compare__spec-winner {
  background: rgba(0, 140, 186, 0.08);
  font-weight: 600;
}

.cp-produkti-cta {
  max-width: var(--cp-max);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--cp-gutter);
  border-top: 1px solid var(--cp-border, #e2e8f0);
  background: linear-gradient(180deg, var(--cp-snow, #f7fbff) 0%, #fff 100%);
  text-align: center;
}

.cp-produkti-cta h2 {
  font-family: var(--cp-font-display);
  margin: 0 0 0.75rem;
}

.cp-produkti-cta p {
  max-width: 52ch;
  margin: 0 auto 1rem;
  color: var(--cp-muted);
}

.cp-contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--cp-space-7);
  align-items: start;
}

.cp-contact__form label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.cp-contact__form input,
.cp-contact__form textarea {
  border: 1px solid var(--cp-border);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.cp-contact__channel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.cp-contact__channel-list a {
  color: var(--cp-brand);
  text-decoration: none;
}

.cp-contact__map-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--cp-border);
  min-height: 220px;
}

.cp-contact__map-frame iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.cp-contact__map-outline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.cp-contact__hr-outline {
  fill: none;
  stroke: var(--cp-brand, #008cba);
  stroke-width: 2;
  stroke-dasharray: 6 4;
}

.cp-support__intro {
  margin-bottom: var(--cp-space-6);
  padding: var(--cp-space-4);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  background: var(--cp-snow);
}

.cp-support__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--cp-space-4);
  margin-bottom: var(--cp-space-7);
}

.cp-support__panel {
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  padding: var(--cp-space-5);
  background: #fff;
}

.cp-support__channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--cp-space-4);
  margin: 0 0 var(--cp-space-5);
}

.cp-support__channels dt {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cp-support__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

body.cropuff-content-page .cp-lab-section,
body.cropuff-content-page .cp-about-hero,
body.cropuff-content-page .cp-support-hero {
  min-height: 1px;
  visibility: visible;
}

.cp-compare__name {
  margin: 0;
  font-size: 1.05rem;
}

.cp-compare__line,
.cp-compare__price {
  margin: 0;
  color: var(--cp-muted);
  font-size: 0.92rem;
}

.cp-shop-guides__card {
  display: grid;
  gap: 0.5rem;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--cp-border, #e2e8f0);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s ease;
}

.cp-shop-guides__card:hover {
  border-color: var(--cp-brand, #008cba);
}

.cp-shop-guides__media {
  display: block;
  aspect-ratio: 16/10;
  background: var(--cp-surface, #f4f6f8);
  overflow: hidden;
}

.cp-shop-guides__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-shop-guides__card .cp-shop-guides__title,
.cp-shop-guides__card .cp-shop-guides__desc {
  padding: 0 0.85rem;
}

.cp-shop-guides__card .cp-shop-guides__desc {
  padding-bottom: 0.85rem;
}

.cp-home-partners__logo img,
.cp-footer-partners img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.cp-footer-partners a {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cp-footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cp-orders-tick {
  color: var(--cp-brand, #008cba);
  transition: color 0.2s ease;
}

.cp-cart-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  z-index: 100000;
  opacity: 0;
  transition: opacity 0.28s ease;
}

body.cp-cart-drawer-open .cp-cart-drawer__overlay {
  opacity: 1;
}

.cp-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100dvh;
  max-height: 100dvh;
  background: var(--cp-bg);
  color: var(--cp-ink);
  font-family: var(--cp-font-body);
  z-index: 100001;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.28s var(--cp-ease);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

body.cp-cart-drawer-open .cp-cart-drawer {
  transform: translateX(0);
}

.cp-cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  padding-top: calc(1rem + env(safe-area-inset-top, 0));
  border-bottom: 1px solid var(--cp-border, #e2e8f0);
  flex-shrink: 0;
}

.cp-cart-drawer__head h2 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--cp-font-display);
}

.cp-cart-drawer__close {
  border: 0;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
}

/* Isolate drawer controls from WooCommerce / theme button styles */
.cp-cart-drawer .cp-cart-drawer__qty-btn,
.cp-cart-drawer .cp-cart-drawer__remove,
.cp-cart-drawer .cp-cart-drawer__close,
.cp-cart-drawer .cp-pay-btn {
  font-family: var(--cp-font-body) !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  box-shadow: none !important;
  min-height: 0;
}

.cp-cart-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}

.cp-cart-drawer__body .cp-cart-shipping-bar {
  margin: 0;
}

.cp-cart-drawer__foot {
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0));
  border-top: 1px solid var(--cp-border);
  display: grid;
  gap: var(--cp-space-3);
  flex-shrink: 0;
  background: var(--cp-bg);
  overflow: hidden;
}

.cp-cart-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.cp-cart-drawer__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  grid-template-areas:
    'thumb main price'
    'thumb actions actions';
  gap: var(--cp-space-2) var(--cp-space-3);
  align-items: start;
  padding: var(--cp-space-4) var(--cp-gutter);
  border-bottom: 1px solid var(--cp-border);
}

.cp-cart-drawer__item:last-child {
  border-bottom: 0;
}

.cp-cart-drawer__thumb {
  display: block;
  border-radius: var(--cp-radius);
  overflow: hidden;
  background: var(--cp-snow);
  border: 1px solid var(--cp-border);
  grid-area: thumb;
  width: 64px;
  height: 64px;
}

.cp-cart-drawer__thumb--empty {
  background: var(--cp-surface);
}

.cp-cart-drawer__thumb img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.cp-cart-drawer__item-main {
  min-width: 0;
  grid-area: main;
}

.cp-cart-drawer__name {
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  font-family: var(--cp-font-display);
  color: var(--cp-ink);
  text-decoration: none;
}

.cp-cart-drawer__name:hover {
  color: var(--cp-brand);
}

.cp-cart-drawer__flavour {
  display: inline-block;
  margin-top: var(--cp-space-1);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--cp-muted);
  background: var(--cp-surface);
  border-radius: 6px;
}

.cp-cart-drawer__actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--cp-space-2);
  margin-top: var(--cp-space-1);
}

.cp-cart-drawer__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  overflow: hidden;
  background: var(--cp-bg);
}

.cp-cart-drawer__qty-btn {
  width: 32px;
  height: 32px;
  border: 0;
  background: var(--cp-bg);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--cp-ink);
  cursor: pointer;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.cp-cart-drawer__qty-btn:hover {
  background: var(--cp-surface);
}

.cp-cart-drawer__qty-val {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--cp-font-display);
}

.cp-cart-drawer__remove {
  border: 0;
  background: transparent;
  color: var(--cp-muted);
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 4px 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.cp-cart-drawer__remove:hover {
  color: var(--cp-ink);
}

.cp-cart-drawer__price {
  font-weight: 700;
  font-size: 14px;
  font-family: var(--cp-font-display);
  white-space: nowrap;
  grid-area: price;
  align-self: start;
  padding-top: 2px;
}

.cp-cart-drawer__empty {
  margin: 2rem 1.25rem 0.5rem;
  font-weight: 600;
}

.cp-cart-drawer__empty-hint {
  margin: 0 1.25rem 2rem;
  color: var(--cp-muted, #64748b);
  font-size: 0.875rem;
}

.cp-cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
  font-size: 0.9375rem;
}

.cp-cart-drawer__total strong {
  font-size: 1.125rem;
}

.cp-cart-drawer__checkout[aria-disabled='true'] {
  opacity: 0.45;
  pointer-events: none;
}

.cp-cart-drawer__full {
  text-align: center;
  font-size: 0.875rem;
  color: var(--cp-muted, #64748b);
}

.cp-cart-drawer__express-label {
  margin: 0 0 var(--cp-space-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cp-muted);
  text-align: center;
}

.cp-cart-drawer__wallet-btns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--cp-space-2);
  width: 100%;
}

.cp-pay-btn {
  display: block;
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.18s var(--cp-ease);
}

.cp-pay-btn:hover {
  opacity: 0.92;
}

.cp-pay-btn:active {
  opacity: 0.85;
}

.cp-pay-btn--apple {
  -webkit-appearance: -apple-pay-button;
  -apple-pay-button-type: plain;
  -apple-pay-button-style: black;
  background-color: #000;
  background-image: url('payment/apple-pay-plain.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 22px;
}

@supports (-webkit-appearance: -apple-pay-button) {
  .cp-pay-btn--apple {
    background-image: none;
  }
}

.cp-pay-btn--google {
  background: #000 url('payment/google-pay-plain.svg') center / contain no-repeat;
  background-size: 100% 100%;
}

@media (max-width: 480px) {
  .cp-cart-drawer {
    width: 100vw;
  }

  .cp-cart-drawer__item {
    grid-template-columns: 56px minmax(0, 1fr) auto;
  }

  .cp-cart-drawer__thumb,
  .cp-cart-drawer__thumb img {
    width: 56px;
    height: 56px;
  }
}

body.cp-cart-drawer-open {
  overflow: hidden;
}

.cp-account {
  max-width: var(--cp-max);
  margin: 0 auto;
  padding: 2rem var(--cp-gutter) 4rem;
}

.cp-account__tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.cp-account__tab {
  border: 1px solid var(--cp-border, #e2e8f0);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font: inherit;
}

.cp-account__tab.is-active {
  background: var(--cp-brand, #008cba);
  border-color: var(--cp-brand, #008cba);
  color: #fff;
}

.cp-account__panel {
  max-width: 28rem;
  border: 1px solid var(--cp-border, #e2e8f0);
  border-radius: 12px;
  padding: 1.25rem;
  background: #fff;
}

.cp-account__panel .form-row {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.cp-404 {
  max-width: var(--cp-max);
  margin: 0 auto;
  padding: 4rem var(--cp-gutter);
  text-align: center;
}

.cp-404__code {
  font-size: 4rem;
  font-weight: 700;
  color: var(--cp-brand, #008cba);
  margin: 0 0 0.5rem;
}

.cp-lab-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.cp-lab-media img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--cp-border, #e2e8f0);
}

.cp-usluge__card {
  border: 1px solid var(--cp-border, #e2e8f0);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: #fff;
}

/* Neutralize Elementor global .woocommerce padding (40px 20px) */
body.woocommerce-shop .woocommerce,
body.woocommerce-cart .woocommerce,
body.woocommerce-account .woocommerce {
  max-width: var(--cp-max);
  margin: 0 auto;
  padding: 0 !important;
}

body.woocommerce-cart .woocommerce table.shop_table,
body.woocommerce-account .woocommerce form {
  border-radius: var(--cp-radius);
  border: 1px solid var(--cp-border);
  font-family: var(--cp-font-body);
}

body.woocommerce-cart .woocommerce .button,
body.woocommerce-cart .woocommerce button,
body.woocommerce-cart .woocommerce input[type='submit'],
body.woocommerce-checkout .woocommerce .button,
body.woocommerce-checkout .woocommerce button {
  font-family: var(--cp-font-display) !important;
  border-radius: var(--cp-radius) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 11px 18px !important;
}

body.woocommerce-cart .woocommerce .quantity .qty {
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  font-family: var(--cp-font-display);
  font-weight: 700;
}

.cp-produkti-models {
  max-width: var(--cp-max);
  margin: 0 auto;
  padding: 2rem var(--cp-gutter);
}

.cp-produkti-models__grid {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.cp-produkti-models__card {
  display: grid;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--cp-border, #e2e8f0);
  border-radius: 12px;
  padding: 0.75rem;
  background: #fff;
}

.cp-produkti-models__card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--cp-snow, #f7fbff);
  border-radius: 8px;
}

.cp-produkti-models__name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.cp-produkti-faq {
  max-width: var(--cp-max);
  margin: 0 auto;
  padding: 2rem var(--cp-gutter) 3rem;
}

@media (max-width: 768px) {
  .cp-compare__grid,
  .cp-lab-split,
  .cp-contact__layout,
  .cp-support__grid,
  .cp-support__channels {
    grid-template-columns: 1fr;
  }
}
