/* ═══════════════════════════════════
   1. DESIGN TOKENS
═══════════════════════════════════ */
:root {
  /* Brand */
  --color-accent:          #FEB50E;
  --color-accent-dark:     #d99200;
  --color-accent-rgb:      254, 181, 14;

  /* Dark palette */
  --color-bg:              #0d0d0d;
  --color-bg-elevated:     #161616;
  --color-surface:         #272727;
  --color-surface-bright:  #bfbfbf;
  --color-surface-alt:     #222222;
  --color-surface-raised:  #2a2a2a;
  --color-border:          rgba(255,255,255,0.08);
  --color-border-subtle:   rgba(255,255,255,0.04);

  /* Text */
  --color-text-title:      #ffffff;
  --color-text-primary:    #aaaaaa;
  --color-text-secondary:  #a0a0a0;
  --color-text-muted:      #606060;
  --color-text-inverse:    #0d0d0d;

  /* Navigation */
  --color-nav-bg:          #111111;
  --color-nav-text:        #e0e0e0;
  --color-nav-hover:       #FEB50E;
  --color-nav-border:      rgba(255,255,255,0.06);

  /* Top bar */
  --color-topbar-bg:       #080808;
  --color-topbar-text:     #888888;

  /* Feedback */
  --color-success:         #2d8a4e;
  --color-error:           #c0392b;
  --color-star:            #FEB50E;

  /* Typography */
  --font-primary:  'Manrope', system-ui, -apple-system, sans-serif;

  --text-xs:    0.75rem;    /* 12px - meta */
  --text-sm:    0.8125rem;  /* 13px - meta */
  --text-base:  1rem;       /* 16px - body */
  --text-lead:  1.125rem;   /* 18px - lead */
  --text-lg:    1.25rem;    /* 20px */
  --text-xl:    1.5rem;     /* 24px */
  --text-2xl:   2rem;       /* 32px */
  --text-3xl:   2.5rem;     /* 40px */
  --text-hero:  clamp(3rem, 6vw, 4.5rem);  /* 48–72px */

  /* Spacing */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  48px;
  --sp-6:  64px;
  --sp-7:  80px;
  --sp-8:  96px;

  /* Containers */
  --container-max:     1440px;
  --container-product: 1520px;
  --container-text:    960px;
  --container-pad:     24px;

  /* Grid */
  --grid-gap:          32px;
  --grid-gap-md:       24px;
  --grid-gap-sm:       16px;

  /* Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.6);

  /* Transitions */
  --ease:      0.2s ease;
  --ease-slow: 0.35s ease;
}

/* ═══════════════════════════════════
   2. GOOGLE FONTS
═══════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════
   3. BASE RESET
═══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text-primary);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--ease);
}
a:hover { color: var(--color-accent); }

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

/* ═══════════════════════════════════
   4. LAYOUT & CONTAINERS
═══════════════════════════════════ */
.layout-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.site-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container-product {
  max-width: var(--container-product);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container-text {
  max-width: var(--container-text);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Main content area — full width, no white box */
main {
  width: 100%;
  background: var(--color-bg);
  min-height: 60vh;
}

/* ═══════════════════════════════════
   5. TOP BAR
═══════════════════════════════════ */
.site-top-bar {
  background: var(--color-topbar-bg);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: 8px 0;
  font-size: var(--text-sm);
  color: var(--color-topbar-text);
}

.site-top-bar__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-top-bar__left,
.site-top-bar__right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.site-top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-topbar-text);
  font-size: var(--text-sm);
}

.site-top-bar__item svg,
.site-top-bar__item .icon {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
  fill: currentColor;
}

.region-top-bar-right a {
  color: var(--color-topbar-text);
  font-size: var(--text-sm);
  transition: color var(--ease);
}
.region-top-bar-right a:hover { color: var(--color-accent); }

/* Language switcher — inline EN/EL pill style */
#block-stickers-belgrade3-languageswitcher {
  display: inline-flex;
  align-items: center;
}
#block-stickers-belgrade3-languageswitcher ul.links {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#block-stickers-belgrade3-languageswitcher ul.links li {
  margin: 0;
  padding: 0;
}
#block-stickers-belgrade3-languageswitcher ul.links a.language-link {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
#block-stickers-belgrade3-languageswitcher ul.links a.language-link[hreflang="en"]::after {
  content: "EN";
  font-size: 0.75rem;
}
#block-stickers-belgrade3-languageswitcher ul.links a.language-link[hreflang="el"]::after {
  content: "EL";
  font-size: 0.75rem;
}
#block-stickers-belgrade3-languageswitcher ul.links a.language-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
#block-stickers-belgrade3-languageswitcher ul.links a.language-link.is-active {
  color: var(--color-bg);
  background: var(--color-accent);
  border-color: var(--color-accent);
}
#block-stickers-belgrade3-languageswitcher ul.links a.language-link.is-active::after {
  color: var(--color-bg);
}

/* Make top bar right section flex so language switcher sits inline with account menu */
.site-top-bar__right .region-top-bar-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

/* ═══════════════════════════════════
   6. HEADER
═══════════════════════════════════ */
.site-header {
  background: var(--color-bg-elevated);
  border-bottom: 1px solid var(--color-border);
  padding: var(--sp-2) 0;
  position: sticky;
  top: 0;
  z-index: 500;
  transition: box-shadow var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.site-header__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: 1fr minmax(0, 480px) 1fr;
  align-items: center;
  gap: var(--sp-4);
  height: 72px;
}

/* Logo */
.site-header__logo {
  flex-shrink: 0;
}

.site-header__logo img,
.block-system-branding-block img,
#block-stickers-belgrade3-branding img {
  height: 52px;
  width: auto;
  display: block;
}

/* Search — takes remaining space */
.site-header__search {
  width: 100%;
}

.site-search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.site-search-form input[type="search"],
.site-search-form input[type="text"] {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  padding: 10px 44px 10px 16px;
  outline: none;
  transition: border-color var(--ease);
}

.site-search-form input:focus {
  border-color: var(--color-accent);
}

.site-search-form input::placeholder {
  color: var(--color-text-muted);
}

.site-search-form button {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

/* Header actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  justify-self: end;
}

/* Header actions region: blocks side by side (account icon + cart) */
.region-header-actions { display: flex; align-items: center; gap: var(--sp-3); }

.header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  text-decoration: none;
  transition: color var(--ease);
  cursor: pointer;
  position: relative;
}

.header-action:hover { color: var(--color-accent); }

.header-action svg { width: 22px; height: 22px; }

.header-action__badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--color-accent);
  color: var(--color-text-inverse);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Commerce cart block in header */
.cart-block { position: relative; }
.cart-block a { color: var(--color-text-secondary); }
.cart-block a:hover { color: var(--color-accent); }
.cart-block .cart-block__contents { color: var(--color-text-secondary); font-size: var(--text-xs); }

/* ═══════════════════════════════════
   7. NAVIGATION
═══════════════════════════════════ */
.site-nav {
  background: var(--color-nav-bg);
  border-bottom: 1px solid var(--color-nav-border);
}

/* TB Mega Menu centering */
.region-primary-menu {
  flex: 1;
}
.block-tb-megamenu {
  width: 100%;
}
.region-primary-menu .tb-megamenu {
  display: flex;
  justify-content: center;
}
ul.tb-megamenu-nav.nav.level-0 {
  display: flex !important;
  justify-content: center;
  width: 100%;
}

@media (max-width: 979px) {
  ul.tb-megamenu-nav.nav.level-0 {
    display: block !important;
    width: 100%;
  }
  .region-primary-menu .tb-megamenu {
    display: block;
  }
}

@media (max-width: 979px) {
  .site-nav__inner {
    height: auto !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
  }
  .tb-megamenu .nav-collapse {
    position: static !important;
    width: 100%;
  }
  .tb-megamenu .nav-collapse.collapse {
    display: block !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  /* Center the button */
  .tb-megamenu.tb-megamenu-main {
    display: flex !important;
    justify-content: center !important;
  }

  /* Style the button — high specificity to override contrib */
  .tb-megamenu.tb-megamenu-main button.tb-megamenu-button,
  .tb-megamenu button.btn-navbar.tb-megamenu-button {
    background-color: #111111 !important;
    border: 2px solid #FEB50E !important;
    border-radius: 4px !important;
    color: #FEB50E !important;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 8px 24px !important;
    cursor: pointer !important;
    box-shadow: none !important;
    background-image: none !important;
  }

  .tb-megamenu button.btn-navbar.tb-megamenu-button:hover {
    background-color: #FEB50E !important;
    color: #111111 !important;
  }

  .tb-megamenu-button .fa-reorder,
  .tb-megamenu-button .fa {
    display: none !important;
  }

  .tb-megamenu-button::after {
    content: 'Menu';
  }

  /* Hide level 3+ submenus on mobile — level 2 items navigate directly */
  .tb-megamenu .nav-collapse .dropdown-menu,
  .tb-megamenu .nav-collapse .mega-dropdown-menu,
  .tb-megamenu .nav-collapse li.dropdown-submenu > .dropdown-menu {
    display: none !important;
  }

  /* Remove the expand arrow indicator from level 2 items on mobile */
  .tb-megamenu .nav-collapse .tb-megamenu-item .caret {
    display: none !important;
  }

  /* Hide dropdown arrows on level 1 items — they navigate directly */
  .tb-megamenu .nav-collapse .nav > li.dropdown > a .caret,
  .tb-megamenu .nav-collapse .nav > li.mega > a .caret {
    display: none !important;
  }
}

.site-nav__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  height: 48px;
}

/* Belgrade main-nav overrides */
#block-stickers-belgrade3-main-menu,
.block-menu.navigation.menu--main {
  width: 100%;
}

.main-nav,
nav ul.menu,
ul.menu--main {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.main-nav__item,
nav ul.menu li,
ul.menu--main > li {
  position: relative;
}

.main-nav__link--top-level,
nav ul.menu > li > a,
ul.menu--main > li > a {
  display: flex;
  align-items: center;
  height: 48px;
  padding-inline: 14px;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-nav-text);
  white-space: nowrap;
  transition: color var(--ease);
  position: relative;
}

.main-nav__link--top-level::after,
nav ul.menu > li > a::after,
ul.menu--main > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--ease);
}

.main-nav__link--top-level:hover,
nav ul.menu > li > a:hover,
ul.menu--main > li > a:hover,
.main-nav__item--active-trail > a,
nav ul.menu li.is-active > a {
  color: var(--color-accent);
}

.main-nav__link--top-level:hover::after,
nav ul.menu > li > a:hover::after,
.main-nav__item--active-trail > a::after {
  transform: scaleX(1);
}

/* ═══════════════════════════════════
   8. BREADCRUMBS
═══════════════════════════════════ */
.breadcrumb,
nav.breadcrumb {
  padding: var(--sp-2) 0;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.breadcrumb ol,
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb li + li::before {
  content: '›';
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════
   9. HERO SECTION
═══════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}

.hero-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13,13,13,0.92) 0%,
    rgba(13,13,13,0.75) 40%,
    rgba(13,13,13,0.2) 70%,
    transparent 100%
  );
}

.hero-section__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--sp-7) var(--container-pad);
  max-width: 620px;
  padding-left: var(--container-pad);
}

.hero-section__pretitle {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.hero-section__title {
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 1.05;
  color: var(--color-text-primary);
  margin-bottom: var(--sp-2);
}

.hero-section__title span,
.hero-section__title em {
  color: var(--color-accent);
  font-style: normal;
}

.hero-section__subtitle {
  font-size: var(--text-lead);
  color: var(--color-text-secondary);
  font-weight: 500;
  margin-bottom: var(--sp-4);
}

.hero-section__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  flex-wrap: wrap;
}

.hero-section__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.hero-section__trust-item svg { color: var(--color-accent); width: 16px; height: 16px; }

.hero-section__ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

/* Dots / pagination for hero slideshow */
.hero-dots {
  position: absolute;
  bottom: var(--sp-3);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background var(--ease);
  cursor: pointer;
}

.hero-dot.active { background: var(--color-accent); }

/* ═══════════════════════════════════
   10. BUTTONS
═══════════════════════════════════ */
.btn,
.button,
input[type="submit"],
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  padding: 12px 24px;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary,
.button--primary,
.btn-add-to-cart,
input[type="submit"].button--primary {
  background: var(--color-accent);
  color: var(--color-text-inverse);
  border-color: var(--color-accent);
  height: 52px;
  padding-inline: 32px;
}

.btn-primary:hover,
.button--primary:hover,
.btn-add-to-cart:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-text-inverse);
  transform: translateY(-1px);
}

.btn-secondary,
.button--secondary {
  background: transparent;
  color: var(--color-text-primary);
  border-color: rgba(255,255,255,0.25);
  height: 52px;
  padding-inline: 32px;
}

.btn-secondary:hover {
  border-color: var(--color-text-primary);
  color: var(--color-text-primary);
}

/* Full width button */
.btn-block { width: 100%; }

/* ═══════════════════════════════════
   11. CATEGORY SHOWCASE SECTION
═══════════════════════════════════ */
.section-category-showcase {
  padding: var(--sp-7) 0;
  background: var(--color-bg);
}

.section-title {
  text-align: center;
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: var(--sp-2);
}

.section-title-accent {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-accent);
  margin: var(--sp-2) auto var(--sp-5);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--grid-gap);
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  cursor: pointer;
  transition: transform var(--ease);
  aspect-ratio: 3/4;
}

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

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}

.category-card:hover .category-card__image {
  transform: scale(1.04);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.2) 50%,
    transparent 100%
  );
}

.category-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-3);
}

.category-card__title {
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.category-card__arrow {
  color: var(--color-accent);
  font-size: var(--text-lg);
  line-height: 1;
  display: block;
  transition: transform var(--ease);
}

.category-card:hover .category-card__arrow { transform: translateX(4px); }

/* ═══════════════════════════════════
   12. CUSTOMER GALLERY / SOCIAL PROOF
═══════════════════════════════════ */
.section-gallery {
  padding: var(--sp-7) 0;
  background: var(--color-bg-elevated);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}

.gallery-item:hover img { transform: scale(1.06); }

/* ═══════════════════════════════════
   13. FOOTER FEATURES STRIP
═══════════════════════════════════ */
.site-footer-features {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--sp-5) 0;
}

.footer-features-grid {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.footer-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
}

.footer-feature__icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.footer-feature__title {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.footer-feature__text {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
}

/* ═══════════════════════════════════
   14. MAIN FOOTER
═══════════════════════════════════ */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: var(--sp-7) 0 var(--sp-4);
}

.site-footer__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.site-footer a { color: var(--color-text-secondary); font-size: var(--text-sm); }
.site-footer a:hover { color: var(--color-accent); }

.site-footer__bottom {
  border-top: 1px solid var(--color-border);
  margin-top: var(--sp-5);
  padding-top: var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════
   15. PRODUCT PAGE — FULL DISPLAY
═══════════════════════════════════ */
.product-page-wrapper {
  max-width: var(--container-product);
  margin-inline: auto;
  padding: var(--sp-4) var(--container-pad) var(--sp-7);
}

.product-page-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-6);
  align-items: start;
}

/* Gallery column */
.product-gallery-col {
  position: sticky;
  top: calc(72px + 48px + var(--sp-3));
}

.product-gallery-main {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--sp-2);
  aspect-ratio: 4/3;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--sp-3);
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
}

.product-gallery-nav:hover { background: var(--color-accent); color: var(--color-text-inverse); }
.product-gallery-nav--prev { left: var(--sp-2); }
.product-gallery-nav--next { right: var(--sp-2); }

.product-gallery-badge {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  background: var(--color-accent);
  color: var(--color-text-inverse);
  font-size: var(--text-xs);
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.product-gallery-zoom {
  position: absolute;
  top: var(--sp-2);
  right: var(--sp-2);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery-thumbs {
  display: flex;
  gap: var(--sp-1);
  overflow-x: auto;
  scrollbar-width: none;
}

.product-gallery-thumbs::-webkit-scrollbar { display: none; }

.product-gallery-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--color-surface);
  transition: border-color var(--ease);
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
  border-color: var(--color-accent);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* Buy box — right column */
.product-purchase-panel {
  position: sticky;
  top: calc(72px + 48px + var(--sp-3));
}

.product-tags {
  display: flex;
  gap: var(--sp-1);
  margin-bottom: var(--sp-2);
}

.product-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 3px 10px;
}

.product-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text-title);
  margin-bottom: var(--sp-2);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.product-stars { color: var(--color-star); }

.product-price-block {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--color-border);
}

.product-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-accent);
}

.product-price--original {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-weight: 400;
}

/* Remove Belgrade default "Price" label */
.field--name-price .field__label,
.product-purchase-panel .field--name-price > .field__label,
label[for*="price"],
.field--name-price .field__label { display: none !important; }

/* Options section */
.product-options {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.product-option-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: var(--sp-1);
  display: block;
}

.product-option-label .required { color: var(--color-accent); margin-left: 2px; }

/* Variations form — size selector */
.product-purchase-panel select,
.product-purchase-panel .form-select {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  padding: 12px 16px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color var(--ease);
  outline: none;
}

.product-purchase-panel select:focus,
.product-purchase-panel .form-select:focus {
  border-color: var(--color-accent);
}

/* Color chips from stickers_tran */
.stickers-color-picker-wrapper,
.color-chips-wrapper {
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

.color-tab-button.active,
.stickers-color-tab.active {
  background: var(--color-accent) !important;
  color: var(--color-text-inverse) !important;
  border-color: var(--color-accent) !important;
}

/* ADD TO CART area */
.product-cta-area {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.product-cta-area .btn-add-to-cart,
.product-cta-area input[type="submit"],
.product-purchase-panel .form-actions input[type="submit"],
.product-purchase-panel input.button--primary {
  width: 100%;
  height: 56px;
  background: var(--color-accent);
  color: var(--color-text-inverse);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-purchase-panel .form-actions input[type="submit"]:hover,
.product-purchase-panel input.button--primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
}

/* Trust row below CTA */
.product-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: var(--sp-2) 0;
  border-top: 1px solid var(--color-border);
  margin-top: var(--sp-2);
}

.product-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
}

.product-trust-item svg { width: 14px; height: 14px; color: var(--color-accent); }

/* Product tabs */
.product-tabs-section {
  max-width: var(--container-product);
  margin-inline: auto;
  padding: var(--sp-5) var(--container-pad);
  border-top: 1px solid var(--color-border);
}

.product-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--sp-4);
}

.product-tab-btn {
  padding: var(--sp-2) var(--sp-3);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  margin-bottom: -1px;
}

.product-tab-btn.active,
.product-tab-btn:hover { color: var(--color-accent); border-bottom-color: var(--color-accent); }

/* ═══════════════════════════════════
   16. PRODUCT CATALOG PAGE
═══════════════════════════════════ */
.catalog-page-wrapper {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--sp-4) var(--container-pad) var(--sp-7);
}

/* Category page header */
.catalog-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--color-border);
}

.catalog-page-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--sp-1);
}

.catalog-page-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  max-width: 480px;
  line-height: 1.6;
}

.catalog-trust-strip {
  display: flex;
  gap: var(--sp-4);
  flex-shrink: 0;
}

.catalog-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-trust-item svg { color: var(--color-accent); width: 32px; height: 32px; }

.catalog-trust-item__text { font-size: var(--text-xs); }
.catalog-trust-item__label { font-weight: 700; color: var(--color-text-primary); }
.catalog-trust-item__sub { color: var(--color-text-secondary); }

/* Catalog layout — 3 columns: sidebar | grid | aside */
.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  gap: var(--sp-5);
  align-items: start;
}

/* Filters sidebar */
.catalog-filters {
  position: sticky;
  top: calc(72px + 48px + var(--sp-3));
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--sp-3);
}

.catalog-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--color-border);
}

.catalog-filters__title {
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.catalog-filters__clear {
  font-size: var(--text-xs);
  color: var(--color-accent);
  font-weight: 600;
  cursor: pointer;
}

.filter-group {
  border-bottom: 1px solid var(--color-border);
  padding: var(--sp-2) 0;
}

.filter-group__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: var(--sp-1) 0;
}

.filter-group__body { padding-top: var(--sp-1); }

.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  cursor: pointer;
}

.filter-option input[type="checkbox"] { accent-color: var(--color-accent); }
.filter-option:hover { color: var(--color-text-primary); }
.filter-option__count { color: var(--color-text-muted); font-size: var(--text-xs); }

/* Product grid */
.catalog-grid-area {}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap-md);
}

/* Product card */
.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--color-surface-raised);
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--sp-2);
  transition: transform var(--ease-slow);
}

.product-card:hover .product-card__image { transform: scale(1.04); }

.product-card__badge {
  position: absolute;
  top: var(--sp-1);
  left: var(--sp-1);
  background: var(--color-accent);
  color: var(--color-text-inverse);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.product-card__badge--new {
  background: #2d8a4e;
  color: white;
}

.product-card__wishlist {
  position: absolute;
  top: var(--sp-1);
  right: var(--sp-1);
  background: rgba(0,0,0,0.4);
  border: none;
  color: var(--color-text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease);
  opacity: 0;
}

.product-card:hover .product-card__wishlist { opacity: 1; }
.product-card__wishlist:hover { background: var(--color-accent); color: var(--color-text-inverse); }

.product-card__body {
  padding: var(--sp-2) var(--sp-2) var(--sp-3);
}

.product-card__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.product-card__stars { color: var(--color-star); font-size: 11px; }

.product-card__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card__price {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-accent);
}

.product-card__price--original {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: line-through;
}

/* Catalog aside */
.catalog-aside {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.catalog-aside-block {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--sp-3);
}

.catalog-aside-block--accent {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
}

.catalog-aside__title {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}

/* Trustpilot block */
.trustpilot-block {
  text-align: center;
}

.trustpilot-score {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

/* ═══════════════════════════════════
   17. FORMS — GLOBAL
═══════════════════════════════════ */
input[type="text"],
input[type="email"],
input[type="search"],
input[type="number"],
textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  padding: 10px 14px;
  width: 100%;
  outline: none;
  transition: border-color var(--ease);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.15);
}

label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  display: block;
  margin-bottom: 6px;
}

/* ═══════════════════════════════════
   18. DRUPAL ADMIN UI OVERRIDES
═══════════════════════════════════ */
/* Tab links (View / Edit / Variations) */
.tabs--primary .tabs__tab a,
.tabs--primary li a {
  color: var(--color-text-secondary);
  border-color: var(--color-border);
  background: var(--color-surface);
  font-size: var(--text-sm);
}

.tabs--primary .tabs__tab.is-active a,
.tabs--primary li.is-active a {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  background: var(--color-surface-raised);
}

/* Messages */
.messages { border-radius: var(--radius-sm); }

/* ═══════════════════════════════════
   19. ANIMATIONS
═══════════════════════════════════ */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════
   20. RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --container-pad: 20px; --grid-gap: 24px; }

  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-page-layout { grid-template-columns: 1fr 380px; }
  .catalog-layout { grid-template-columns: 200px 1fr; }
  .catalog-aside { display: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════
   21. RESPONSIVE — MOBILE (≤768px)
═══════════════════════════════════ */
@media (max-width: 768px) {
  :root { --container-pad: 16px; --grid-gap: 16px; }

  .site-top-bar { display: block; padding: 5px 0; }
  .site-top-bar__inner { gap: 8px; }
  .site-top-bar__left { font-size: 11px; gap: 8px; }
  .site-top-bar__left .field--name-body p { margin: 0; font-size: 11px; }
  .site-top-bar #block-stickers-belgrade3-account-menu { display: none; }

  .site-header__inner { height: 60px; gap: var(--sp-2); grid-template-columns: auto 1fr auto; }
  #block-stickers-belgrade3-branding img { height: 40px; }
  .site-header__search { display: none; }

  /* MENU row: menu left, search right */
  .site-nav .region-primary-menu { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
  /* Let MENU button take content width so search can expand (desktop gives it 100%) */
  .site-nav .block-tb-megamenu { width: auto; }
  #block-mobilesearchbar { flex: 1; display: flex; justify-content: flex-end; }

  /* ── Mobile search: collapsed icon → expanding input ── */
  #block-mobilesearchbar .site-search-form { justify-content: flex-end; width: auto; }
  #block-mobilesearchbar .site-search-form:not(.is-open) .stickers-search-input { display: none; }
  #block-mobilesearchbar .site-search-form:not(.is-open) .stickers-search-btn {
    position: static; border: 1px solid var(--color-accent); border-radius: var(--radius-sm);
    color: var(--color-accent); padding: 9px; background: none;
  }
  #block-mobilesearchbar .site-search-form.is-open { width: 100%; flex: 1; }
  #block-mobilesearchbar .site-search-form.is-open .stickers-search-input { display: block; }

  .site-nav__inner { overflow-x: auto; scrollbar-width: none; }
  .main-nav__link--top-level,
  nav ul.menu > li > a { padding-inline: 10px; font-size: 11px; }

  .hero-section { min-height: 60vh; }
  .hero-section__title { font-size: clamp(2rem, 8vw, 3rem); }

  .category-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-2); }

  .product-page-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  .product-gallery-col { position: static; width: 100%; min-width: 0; }
  .product-purchase-panel { position: static; }

  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-filters { position: fixed; left: -100%; top: 0; height: 100vh; z-index: 900; width: 280px; border-radius: 0; overflow-y: auto; transition: left var(--ease); }
  .catalog-filters.is-open { left: 0; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-2); }

  .footer-features-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  /* Mobile sticky add to cart */
  .mobile-sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: var(--sp-2) var(--container-pad);
    display: none;
  }

  .mobile-sticky-cart.is-visible { display: flex; gap: var(--sp-2); align-items: center; }

  .mobile-sticky-cart__title {
    flex: 1;
    font-size: var(--text-sm);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-text-primary);
  }

  .mobile-sticky-cart__btn {
    background: var(--color-accent);
    color: var(--color-text-inverse);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: var(--text-sm);
    padding: 12px 20px;
    cursor: pointer;
    white-space: nowrap;
  }

  .tab-photos .card-body .field--name-field-photos .field__item {
    width: 80px !important;
    height: 64px !important;
  }

  .tab-photos .card-body .field--name-field-photos {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
  }
}

@media (max-width: 480px) {
  .hero-section__trust { gap: var(--sp-2); }
  .hero-section__ctas { flex-direction: column; align-items: stretch; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   SHOP BY CATEGORY — homepage showcase
   ===================================================== */
.category-showcase-section {
  padding: var(--sp-8) 0;
  background: var(--color-bg);
}

.category-showcase-heading {
  text-align: center;
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--sp-2);
}

.category-showcase-heading::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  margin: var(--sp-2) auto 0;
}

/* Grid — 5 cols desktop, 3 tablet, 2 mobile */
.view-category-showcase .view-content,
.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-3);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Individual card */
.category-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  background: #111;
}

.category-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.75);
}

/* Dark gradient overlay */
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,0.75) 100%
  );
  transition: opacity 0.3s ease;
}

/* Text overlay */
.category-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--sp-3);
}

.category-card__name {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.category-card__arrow {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-top: var(--sp-1);
  transition: transform 0.2s ease;
}

/* Hover */
.category-card:hover .category-card__image img {
  transform: scale(1.06);
  filter: brightness(0.6);
}

.category-card:hover .category-card__name {
  color: var(--color-accent);
}

.category-card:hover .category-card__arrow {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .view-category-showcase .view-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .view-category-showcase .view-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-2);
  }
}

/* --- Category showcase: show-more collapse --- */
.view-category-showcase .view-content {
  overflow: hidden;
  /* height is set by JS based on one row height */
}
.view-category-showcase .view-content.is-expanded {
  max-height: none !important;
}

/* Hide rows beyond the first by default — JS overrides with pixel height */
.view-category-showcase .views-row:nth-child(n+6) {
  display: none;
}
.view-category-showcase .view-content.is-expanded .views-row:nth-child(n+6) {
  display: block;
}

/* Show more button */
.category-showcase-toggle {
  display: block;
  margin: var(--sp-4) auto 0;
  padding: 10px 32px;
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}
.category-showcase-toggle:hover {
  background: var(--color-accent);
  color: #000;
}

/* =====================================================
   HERO SLIDESHOW — overlay & dots
   ===================================================== */

/* Contain each slide to image height */
.hero-slide {
  position: relative;
  overflow: hidden;
  line-height: 0; /* collapse whitespace around the image */
}

/* Image fills the slide */
.hero-slide .media,
.hero-slide .media__element,
.hero-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 820;
  object-fit: cover;
  line-height: 0;
}

/* Gradient overlay — bottom-heavy for text legibility */
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0.05) 100%
  );
  display: flex;
  align-items: center;
}

/* Content block — left-aligned matching mockup */
.hero-slide__content {
  max-width: var(--container-max);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  padding-block: var(--sp-8);
}

/* Headline — two-line style from mockup */
.hero-slide__headline {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 var(--sp-3);
  max-width: 600px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* Subheadline */
.hero-slide__sub {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin: 0 0 var(--sp-5);
  max-width: 480px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* CTA button row */
.hero-slide__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

/* Shared CTA styles — the <a> inside each span */
.hero-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Primary CTA — filled gold */
.hero-cta--primary a {
  background: var(--color-accent);
  color: #000000;
  border: 2px solid var(--color-accent);
}
.hero-cta--primary a:hover {
  background: #e6a300;
  border-color: #e6a300;
}

/* Secondary CTA — outlined white */
.hero-cta--secondary a {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.7);
}
.hero-cta--secondary a:hover {
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
}

/* Slick dots — inside the hero, above the image */
.region-hero .slick-dots {
  position: absolute;
  bottom: 24px !important;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex !important;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.region-hero .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}
.region-hero .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.region-hero .slick-dots li button::before {
  display: none; /* hide default Slick pseudo-element */
}
.region-hero .slick-dots li.slick-active button {
  background: var(--color-accent);
  transform: scale(1.3);
}

/* Prev/next arrows — keep them on top of overlay */
.region-hero .slick-prev,
.region-hero .slick-next {
  z-index: 10;
}

/* =====================================================
   FOOTER
   ===================================================== */

/* ---- Footer middle — 4-column dark band ---- */
.region-footer-middle {
  background: #1a1a1a;
  border-top: 1px solid #2a2a2a;
  padding: 60px 0 48px;
}

/* Hide block titles in footer — Drupal renders plain h2 with no class here */
#block-stickers-belgrade3-footerbrand > h2,
#block-stickers-belgrade3-footerproducts-menu > h2,
#block-stickers-belgrade3-footerinformation-menu > h2,
#block-stickers-belgrade3-footercontact > h2,
#block-stickers-belgrade3-footercopyright > h2,
.region-footer-bottom .block__title { display: none; }

/* Inner wrapper — 4 equal columns */
.region-footer-middle {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--sp-8);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Shared footer column heading */
.region-footer-middle h2.block__title,
.footer-col-heading,
.region-footer-middle .menu--footer-products > li:first-child,
.region-footer-middle nav > h2 {
  display: none;
}

/* Footer menu links — vertical list */
.region-footer-middle ul.nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.region-footer-middle ul.nav a {
  color: #999;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1;
}

.region-footer-middle ul.nav a:hover {
  color: var(--color-accent);
}

/* Column headings for menu blocks */
#block-stickers-belgrade3-footerproducts-menu::before {
  content: 'Products';
  display: block;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid #2a2a2a;
}
#block-stickers-belgrade3-footerinformation-menu::before {
  content: 'Information';
  display: block;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid #2a2a2a;
}

/* ---- Brand column ---- */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1); /* make logo white */
}

.footer-tagline {
  font-size: 0.875rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  margin-top: var(--sp-2);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2a2a2a;
  color: #999;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.social-link--fb:hover  { background: #1877f2; }
.social-link--yt:hover  { background: #ff0000; }
.social-link--ig:hover  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }

/* ---- Column headings (inserted via preprocess — fallback via CSS content) ---- */
/* Products column */
.block--id-footerbrand + .block .block__title,
.region-footer-middle .block:nth-child(2)::before {
  content: 'Products';
}

/* ---- Contact column ---- */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #999;
}

.footer-contact-list svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

.footer-contact-list a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact-list a:hover { color: var(--color-accent); }

/* Newsletter */
.footer-newsletter__label {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid #2a2a2a;
}

.footer-newsletter__form {
  display: flex;
  gap: 0;
}

.footer-newsletter__input {
  flex: 1;
  padding: 10px 14px;
  background: #111;
  border: 1px solid #333;
  border-right: none;
  color: #fff;
  font-size: 0.8rem;
  outline: none;
  border-radius: 2px 0 0 2px;
  transition: border-color 0.2s ease;
}
.footer-newsletter__input::placeholder { color: #555; }
.footer-newsletter__input:focus { border-color: var(--color-accent); }

.footer-newsletter__btn {
  padding: 10px 16px;
  background: var(--color-accent);
  border: none;
  color: #000;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.footer-newsletter__btn:hover { background: #e6a300; }

/* ---- Footer bottom — copyright bar ---- */
.region-footer-bottom {
  background: #0d0d0d;
  border-top: 1px solid #1a1a1a;
  padding: 14px var(--container-pad);
  max-width: 100%;
}

.region-footer-bottom .block__title { display: none; }

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin-inline: auto;
  font-size: 0.78rem;
  color: #555;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copyright__made {
  color: #444;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .region-footer-middle {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }
}

@media (max-width: 640px) {
  .region-footer-middle {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    padding-block: var(--sp-8);
  }
  .footer-copyright {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-2);
  }
}

/* Category card — fade out gradient overlay on hover */
.category-card:hover::before {
  opacity: 0;
}

.footer-copyright {
  color: #7e7e7e;
  justify-content: center;
}
.footer-copyright__made { color: #7e7e7e; }

.footer-copyright { justify-content: center !important; }

.region-footer-bottom .block {
  text-align: center;
}
.footer-copyright {
  display: block !important;
}

/* =====================================================
   SEARCH RESULTS PAGE
   ===================================================== */

/* Hide the duplicate exposed filter form on the results page */
.view-product-search .views-exposed-form {
  display: none;
}

/* Page title styling */
.path-product-search .page-title,
.path-product-search h1.page-title {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  padding: var(--sp-5) 0 var(--sp-2);
  letter-spacing: -0.01em;
}

.path-product-search .page-title em,
.path-product-search h1.page-title em {
  color: var(--color-accent);
  font-style: normal;
}

/* Outer wrapper — 90% width centered */
.view-product-search {
  max-width: 92%;
  margin-inline: auto;
  padding-bottom: var(--sp-8);
}

/* Result summary — centered, above the grid */
.view-product-search .view-header {
  text-align: center;
  color: #666;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid #1e1e1e;
  margin-bottom: var(--sp-5);
}

/* Grid — 4 columns with gap */
.view-product-search .view-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

/* ---- Product card in search results ---- */
/* Override the full-bleed category card style */
.view-product-search .product-card {
  aspect-ratio: unset;
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #222;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}

.view-product-search .product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
  border-color: #333;
}

/* Fixed-ratio image area */
.view-product-search .product-card__image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dddddd;
  position: relative;
}

.view-product-search .product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.view-product-search .product-card:hover .product-card__image-wrap img {
  transform: scale(1.05);
}

/* Card body — title + price */
.view-product-search .product-card__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.view-product-search .product-card__title {
  margin: 0;
}

.view-product-search .product-card__title a {
  color: #ddd;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.view-product-search .product-card__title a:hover {
  color: var(--color-accent);
}

.view-product-search .product-card__price-row {
  margin-top: auto;
  padding-top: 4px;
}

.view-product-search .product-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* ---- Pager ---- */
.view-product-search .pager {
  margin: var(--sp-8) 0 var(--sp-4);
  display: flex;
  justify-content: center;
}

.view-product-search .pager__items {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.view-product-search .pager__item a,
.view-product-search .pager__item.is-active > * {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #888;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.view-product-search .pager__item a:hover {
  background: #242424;
  color: #fff;
  border-color: #444;
}

.view-product-search .pager__item.is-active > *,
.view-product-search .pager__item.active > * {
  background: var(--color-accent);
  color: #000;
  border-color: var(--color-accent);
  font-weight: 700;
}

/* Prev / Next buttons — outlined accent */
.view-product-search .pager__item--previous a,
.view-product-search .pager__item--next a {
  background: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
  padding: 0 16px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 6px;
}

.view-product-search .pager__item--previous a:hover,
.view-product-search .pager__item--next a:hover {
  background: var(--color-accent);
  color: #000;
}

/* Ellipsis */
.view-product-search .pager__item--ellipsis {
  color: #444;
  padding: 0 4px;
  display: flex;
  align-items: center;
}

/* ---- No results ---- */
.view-product-search .view-empty {
  text-align: center;
  padding: var(--sp-10) var(--sp-4);
  color: #555;
}

.view-product-search .view-empty p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-inline: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .view-product-search .view-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .view-product-search .view-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }
  .view-product-search {
    max-width: 96%;
  }
}

/* =====================================================
   PREMIUM CATEGORY GRID
   Container + layout for .premium-category-grid views
   ===================================================== */

/* Container sizing */
.premium-category-grid {
  max-width: 92%;
  margin-inline: auto;
  padding-block: var(--sp-6);
}

/* 90% container for the browse grid */
.view-sticker-category-children {
  max-width: 90%;
  margin-inline: auto;
}

/* Remove incorrect padding-block from column elements */
.views-col.premium-category-grid {
  padding-block: 0;
}

/* Add controlled row spacing at desktop (4-col) */
.view-sticker-category-children .views-row {
  margin-bottom: var(--sp-3);
}
.view-sticker-category-children .views-row:last-child {
  margin-bottom: 0;
}

/* Responsive columns — overrides Bootstrap col-md-3 */
@media (max-width: 1100px) {
  .views-col.premium-category-grid {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
    width: 33.333% !important;
  }
  /* Flatten Bootstrap rows so items flow across row boundaries */
  .view-sticker-category-children .views-row {
    display: contents !important;
  }
  .view-sticker-category-children .views-view-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    row-gap: var(--sp-3);
    overflow: visible;
  }
}

@media (max-width: 640px) {
  .views-col.premium-category-grid {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
  }
}

/* ---- .category-card overrides (homepage showcase) ---- */
.premium-category-grid .category-card {
  cursor: pointer;
  will-change: transform;
  box-shadow: none !important;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: unset;
}
.premium-category-grid .category-card__image {
  position: relative;
  inset: unset;
}
.premium-category-grid .category-card__image img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
  filter: brightness(1) !important;
  transition: transform 0.4s ease;
}
.premium-category-grid .category-card:hover .category-card__image img {
  transform: scale(1.03);
}
.premium-category-grid .category-card::before {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 55%,
    rgba(0,0,0,0.65) 100%
  ) !important;
}
.premium-category-grid .category-card:hover::before {
  opacity: 1 !important;
}
.premium-category-grid .category-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-3);
}
.premium-category-grid .category-card__name {
  font-size: 0.9rem;
  color: #ffffff;
  text-shadow:
    0 1px 4px rgba(0,0,0,0.9),
    0 2px 12px rgba(0,0,0,0.7),
    0 0 24px rgba(0,0,0,0.5);
}
.premium-category-grid .category-card__arrow {
  color: var(--color-accent);
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
}

/* ═══════════════════════════════════════════════════
   PRODUCT PAGE — FIELD GROUP HORIZONTAL TABS
   Integrates field_group tab markup with the
   designed product page layout.
═══════════════════════════════════════════════════ */

/* 1. Container constraint */
article.product-page-layout {
  max-width: var(--container-product);
  margin-inline: auto;
  padding: var(--sp-4) var(--container-pad) var(--sp-7);
}

/* 2. Reset Bootstrap card styles on tab wrappers */
.product-gallery-col .field-group-tabs-wrapper,
.product-description .field-group-tabs-wrapper {
  border: none !important;
  box-shadow: none !important;
  background: none !important;
}

.product-gallery-col .horizontal-tabs,
.product-description .horizontal-tabs {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

/* 3. Tab nav list */
.product-gallery-col .horizontal-tabs-list,
.product-description .horizontal-tabs-list {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid var(--color-border);
  background: none;
}

/* 4. Tab buttons — kill Bootstrap card, apply accent underline */
.product-gallery-col .horizontal-tab-button,
.product-description .horizontal-tab-button {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.product-gallery-col .horizontal-tab-button a,
.product-description .horizontal-tab-button a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none !important;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--ease), border-color var(--ease);
}

.product-gallery-col .horizontal-tab-button a strong,
.product-description .horizontal-tab-button a strong {
  font-weight: inherit;
  color: inherit;
}

.product-gallery-col .horizontal-tab-button.selected a,
.product-gallery-col .horizontal-tab-button a:hover,
.product-description .horizontal-tab-button.selected a,
.product-description .horizontal-tab-button a:hover {
  color: var(--color-accent) !important;
  border-bottom-color: var(--color-accent) !important;
}

/* 5. Hide duplicate summary inside each pane */
.product-gallery-col .horizontal-tabs-pane > summary,
.product-description .horizontal-tabs-pane > summary {
  display: none !important;
}

/* 6. Panes wrapper — no Bootstrap card */
.product-gallery-col .horizontal-tabs-panes {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.product-gallery-col .horizontal-tabs-pane {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 7. Gallery pane content */
.product-gallery-col .horizontal-tabs-pane .card-body {
  aspect-ratio: 4 / 3;
  background: var(--color-surface-bright);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0;
}

/* Photos tab overrides card-body to flex column for main+thumbs layout */
.tab-photos.horizontal-tabs-pane .card-body {
  aspect-ratio: unset !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  overflow: hidden !important;
  padding: var(--sp-2) !important;
  gap: var(--sp-2);
}

/* ── Photos tab gallery layout ─────────────────────────── */

/* Main image gallery — first photoswipe-gallery in .tab-photos */
.tab-photos .field--name-field-uc-product-image {
  flex: 1;
  min-height: 0;
  max-height: 75%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-photos .field--name-field-uc-product-image .field__items {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-photos .field--name-field-uc-product-image .field__item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-photos .field--name-field-uc-product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  cursor: pointer;
}

/* Thumbnail strip — second photoswipe-gallery in .tab-photos */
.tab-photos .field--name-field-photos {
  flex-shrink: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  gap: var(--sp-1);
  padding-bottom: var(--sp-1);
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.tab-photos .field--name-field-photos .field__items {
  display: flex !important;
  flex-direction: row !important;
  gap: var(--sp-1);
  flex-wrap: nowrap !important;
  align-items: center;
}

.tab-photos .field--name-field-photos .field__item {
  flex-shrink: 0 !important;
}


.tab-photos .field--name-field-photos img:hover {
  border-color: var(--color-accent);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 767px) {
  .tab-photos.horizontal-tabs-pane .card-body {
    padding: var(--sp-1) !important;
    gap: var(--sp-1);
  }

  .tab-photos .card-body .field--name-field-photos {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
  }

  .tab-photos .card-body .field--name-field-photos .field__item {
    width: 80px !important;
    height: 64px !important;
  }

  /* Mobile color picker — moved below gallery by JS */
  .mobile-color-picker {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: var(--sp-2) var(--sp-2) var(--sp-1);
    margin-top: var(--sp-2);
  }

  .mobile-color-picker .stickers-color-tabs {
    margin-bottom: var(--sp-1);
  }

  .mobile-color-picker .stickers-swatch-picker {
    margin: 0;
    padding: 0;
  }

  /* Ghost space suppression — form area after color picker is moved out */
  .color-picker-moved .stickers-color-tabs,
  .color-picker-moved .stickers-swatch-picker {
    display: none !important;
  }
}

/* Allow Preview tab pane to grow to fit tran image — overrides field_group JS height equalization */
.tab-preview .card-body {
  height: auto !important;
  overflow: visible !important;
}

/* 8. Stickers tran widget inside gallery pane */
.product-gallery-col .stickers-tran-wrapper {
  width: fit-content;
  max-width: 100%;
  height: auto;
}

.product-gallery-col .stickers-tran-base img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--sp-3);
}

.product-gallery-col .stickers-tran-overlay img {
  width: 100%;
  padding: var(--sp-3);
}

/* 9. Photos tab images */
.product-gallery-col .card-body .field__item img,
.product-gallery-col .card-body img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: var(--sp-3);
}

/* 10. Bottom description tabs */
.product-description {
  max-width: var(--container-product);
  margin-inline: auto;
  padding: var(--sp-5) var(--container-pad);
  border-top: 1px solid var(--color-border);
}

.product-description .horizontal-tabs-panes,
.product-description .horizontal-tabs-pane {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.product-description .horizontal-tabs-pane .card-body {
  padding: var(--sp-4) 0 0 0 !important;
  background: none !important;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Fix stickers_tran centering inside gallery pane */
.product-gallery-col .card-body {
  position: relative;
}
.product-gallery-col .card-body .stickers-tran-wrapper {
  position: relative;
  inset: unset;
  display: inline-block;
  width: fit-content;
  max-width: 75%;
  height: auto;
  margin-inline: auto;
}
.product-gallery-col .card-body .stickers-tran-base {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.product-gallery-col .card-body .stickers-tran-base img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: var(--sp-3);
}

/* FIX: Restore stickers_tran overlay alignment */
.product-gallery-col .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3) !important;
  position: relative;
}


.product-gallery-col .card-body .stickers-tran-base {
  display: block !important;
}

.product-gallery-col .card-body .stickers-tran-base img {
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
}

.product-gallery-col .card-body .stickers-tran-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.product-gallery-col .card-body .stickers-tran-overlay img {
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
}

/* ── Photos tab: main image + thumbnail strip ── */

/* Override card-body aspect-ratio for photos tab (it's set by preview tab rules) */
.tab-photos .card-body {
  aspect-ratio: unset !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  gap: 4px;
  background: var(--color-surface);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  align-items: unset !important;
  justify-content: unset !important;
}

/* Product image — main large */
.tab-photos .card-body .field--name-field-uc-product-image {
  width: 75%;
  align-self: center;
}

.tab-photos .card-body .field--name-field-uc-product-image .field__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-surface);
}

.tab-photos .card-body .field--name-field-uc-product-image .field__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.tab-photos .card-body .field--name-field-uc-product-image .field__item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: var(--sp-2) !important;
}

/* Gallery photos — thumbnail strip */
.tab-photos .card-body .field--name-field-photos {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  gap: 4px;
  padding: 4px;
  background: var(--color-bg);
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.tab-photos .card-body .field--name-field-photos .field__item {
  width: 120px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color var(--ease);
}

.tab-photos .card-body .field--name-field-photos .field__item:hover {
  border-color: var(--color-accent);
}

.tab-photos .card-body .field--name-field-photos .field__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.tab-photos .card-body .field--name-field-photos .field__item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  padding: 0 !important;
}

/* Center thumbnails in photos tab */
.tab-photos .card-body .field--name-field-photos {
  justify-content: center;
}

/* ── Stickers color tab buttons ── */
.stickers-color-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: var(--sp-1);
}
.stickers-color-tab {
  background: var(--color-surface-raised);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  padding: 6px 14px;
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.stickers-color-tab:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.stickers-color-tab.is-active {
  background: var(--color-accent);
  color: var(--color-text-inverse);
  border-color: var(--color-accent);
}

/* ── Reduce gap between product layout and description ── */
article.product-page-layout {
  padding-bottom: var(--sp-3);
}
.product-description {
  padding-top: var(--sp-3);
}

/* Node content text color */
.node__content,
.node__content p,
.node__content li,
.node__content td,
.node__content h1,
.node__content h2,
.node__content h3,
.node__content h4 {
  color: #f0f0f0;
}

/* =====================================================
   PRODUCT CATALOG CARDS (products_by_category view,
   leaf category pages only — product-card elements
   are only output on leaf terms, not parent categories)
   ===================================================== */

.catalog-main .view-products-by-category .view-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap-md);
}

.catalog-main .view-products-by-category .product-card {
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #222;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-main .view-products-by-category .product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
  border-color: #333;
}

.catalog-main .view-products-by-category .product-card__image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dddddd;
}

.catalog-main .view-products-by-category .product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.catalog-main .view-products-by-category .product-card:hover .product-card__image-wrap img {
  transform: scale(1.05);
}

.catalog-main .view-products-by-category .product-card__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  background: #1a1a1a;
}

.catalog-main .view-products-by-category .product-card__title {
  margin: 0;
}

.catalog-main .view-products-by-category .product-card__title a {
  color: #ddd;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-main .view-products-by-category .product-card__title a:hover {
  color: var(--color-accent);
}

.catalog-main .view-products-by-category .product-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* Pager */
.catalog-main .view-products-by-category .pager {
  margin: var(--sp-8) 0 var(--sp-4);
  display: flex;
  justify-content: center;
}

.catalog-main .view-products-by-category .pager__items {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
  margin: 0;
  padding: 0;
}

.catalog-main .view-products-by-category .pager__item a,
.catalog-main .view-products-by-category .pager__item.is-active > * {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 var(--sp-2);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  color: var(--color-text-secondary);
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  transition: all 0.2s ease;
}

.catalog-main .view-products-by-category .pager__item a:hover {
  background: #252525;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.catalog-main .view-products-by-category .pager__item.is-active > * {
  background: var(--color-accent);
  color: #000;
  border-color: var(--color-accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .catalog-main .view-products-by-category .view-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .catalog-main .view-products-by-category .view-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }
}

/* =====================================================
   CATALOG PAGE LAYOUT (taxonomy term pages)
   3-col: sidebar_first | content | sidebar_second
   Sidebars only render when populated.
   ===================================================== */

.catalog-header {
  max-width: 92%;
  margin-inline: auto;
  padding: var(--sp-3) 0 var(--sp-2);
}

.catalog-layout {
  max-width: 92%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap-md);
  padding-bottom: var(--sp-8);
}

.catalog-layout.has-sidebar-second {
  grid-template-columns: 1fr 280px;
}

.catalog-layout.has-sidebar-first {
  grid-template-columns: 240px 1fr;
}

.catalog-layout.has-sidebar-first.has-sidebar-second {
  grid-template-columns: 240px 1fr 280px;
}

.catalog-sidebar { min-width: 0; }
.catalog-main { min-width: 0; }

@media (max-width: 1024px) {
  .catalog-layout.has-sidebar-first.has-sidebar-second {
    grid-template-columns: 200px 1fr;
  }
  .catalog-sidebar--second { display: none; }
}

@media (max-width: 640px) {
  .catalog-layout,
  .catalog-layout.has-sidebar-first,
  .catalog-layout.has-sidebar-second,
  .catalog-layout.has-sidebar-first.has-sidebar-second {
    grid-template-columns: 1fr;
  }
  .catalog-sidebar { display: none; }
  .catalog-header { max-width: 96%; }
}

/* =====================================================
   BREADCRUMB — catalog header region
   ===================================================== */

.catalog-header .block-system-breadcrumb-block { padding: 0; }

.catalog-header nav#system-breadcrumb {
  padding: var(--sp-2) 0 var(--sp-3);
  border-bottom: 1px solid #1e1e1e;
  margin-bottom: var(--sp-4);
}

.catalog-header ol.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
}

.catalog-header .breadcrumb-item {
  display: flex;
  align-items: center;
  color: #888;
}

.catalog-header .breadcrumb-item:not(:last-child)::after {
  content: '›';
  color: var(--color-accent);
  margin: 0 6px;
  font-size: 0.9rem;
  line-height: 1;
}

.catalog-header .breadcrumb-item a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.catalog-header .breadcrumb-item a:hover { color: var(--color-accent); }

.catalog-header .breadcrumb-item:last-child {
  color: #ccc;
  font-weight: 600;
}

/* =====================================================
   SORT BY — products_by_category exposed sort form
   ===================================================== */

#views-exposed-form-products-by-category-page-1 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 0 var(--sp-4);
  margin-bottom: var(--sp-2);
  border-bottom: 1px solid #1e1e1e;
}

#views-exposed-form-products-by-category-page-1 .form-item {
  flex: 0 0 auto;
}

#views-exposed-form-products-by-category-page-1 .form-actions {
  flex: 0 0 auto;
  margin-left: 0;
}

#views-exposed-form-products-by-category-page-1 .form-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

#views-exposed-form-products-by-category-page-1 .form-label {
  color: #aaa;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin: 0;
}

#views-exposed-form-products-by-category-page-1 .form-select {
  background: #1a1a1a;
  color: #ddd;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 6px 32px 6px 10px;
  font-size: 0.82rem;
  font-family: var(--font-primary);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23FEB50E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  transition: border-color 0.2s ease;
  min-width: 160px;
}

#views-exposed-form-products-by-category-page-1 .form-select:hover,
#views-exposed-form-products-by-category-page-1 .form-select:focus {
  border-color: var(--color-accent);
  outline: none;
}

#views-exposed-form-products-by-category-page-1 .form-actions {
  margin: 0;
  margin-left: 0 !important;
}

#views-exposed-form-products-by-category-page-1 .form-submit {
  background: var(--color-accent);
  color: #000;
  border: none;
  border-radius: 4px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

#views-exposed-form-products-by-category-page-1 .form-submit:hover {
  background: #e0a00c;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  #views-exposed-form-products-by-category-page-1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  #views-exposed-form-products-by-category-page-1 .form-select {
    min-width: 100%;
  }
}

/* =====================================================
   TRUST BADGES SIDEBAR (sidebar_second)
   ===================================================== */

.trust-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 20px;
}

.trust-sidebar__cta {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 24px 20px;
  text-align: center;
}

.trust-sidebar__cta-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
}

.trust-sidebar__cta-text {
  color: #888;
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0 0 18px;
}

.trust-sidebar__cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}

.trust-sidebar__cta-btn:hover {
  background: #e0a00c;
  transform: translateY(-1px);
}

.trust-sidebar__badges {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-badge__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--color-accent);
}

.trust-badge__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-badge__text strong {
  color: #ddd;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-badge__text span {
  color: #666;
  font-size: 0.75rem;
}

.catalog-sidebar--second {
  padding-top: 160px;
  align-self: start;
}

.catalog-layout {
  align-items: start;
}

@media (min-width: 769px) {
  #block-mobilesearchbar { display: none; }
}

/* ── Account icon + dropdown (all viewports) ── */
#block-mobileaccountmenu { position: relative; }
.account-menu-toggle {
  background: none; border: none; color: var(--color-text-secondary);
  padding: 4px; display: flex; align-items: center; cursor: pointer;
  transition: color var(--ease);
}
.account-menu-toggle:hover { color: var(--color-accent); }
#block-mobileaccountmenu ul.nav { display: none; }
#block-mobileaccountmenu.is-open ul.nav {
  display: block; position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 6px 0; min-width: 170px; z-index: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
#block-mobileaccountmenu ul.nav li { margin: 0; }
#block-mobileaccountmenu ul.nav a {
  display: block; padding: 9px 16px; color: var(--color-text-primary);
  font-size: var(--text-sm); text-decoration: none; white-space: nowrap;
}
#block-mobileaccountmenu ul.nav a:hover { color: var(--color-accent); background: var(--color-bg-elevated); }

/* ── Cart + Checkout: center content in a 90% container, capped ───── */
.cart-form,
.commerce-checkout-flow {
  width: 90%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Customer order view: match cart/checkout container ───────────── */
.order-view-container {
  width: 90%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Order item tables: constrain Title column width (overrides Commerce 99%) ── */
.view-commerce-order-item-table-admin table.views-table td.views-field-title,
.view-commerce-order-item-table-admin table.views-table th.views-field-title,
.view-commerce-order-item-table table.views-table td.views-field-title,
.view-commerce-order-item-table table.views-table th.views-field-title {
  width: 45%;
}