/*
Theme Name: Maruška
Theme URI: https://maruska.rs
Author: Studio Maruška
Description: Custom theme for Maruška silk scarves website
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: maruska
*/

/* ========================================
   CSS VARIABLES
======================================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #7e7e7e;
  --color-gray-light: #B5B5B5;
  --shadow-header: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.15);
  --font-primary: "Archivo", sans-serif;
  --font-heading: "Inria Serif", serif;
  --topbar-height: 100px;
}

/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.125;
  color: var(--color-black);
  background-color: var(--color-white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

/* ========================================
   HEADER
======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: var(--shadow-header);
}

/* Header Top Section */
.header-top {
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 100;
  background-color: var(--color-white);
}

/* Header expands on hover to show navigation */
.site-header:hover .header-top {
  padding-bottom: 50px;
}

.header-top-inner {
  max-width: 1728px;
  margin: 0 auto;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
}

/* ========================================
   SEARCH (Left side)
======================================== */
.header-search {
  flex: 0 0 auto;
  width: 250px;
}

.header-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--color-black);
  padding-bottom: 5px;
}

.header-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-gray-light);
  outline: none;
  padding: 0;
  line-height: 1.4;
}

.header-search-input::placeholder {
  color: #B5B5B5;
}

.header-search-input:focus::placeholder {
  color: transparent;
}

.header-search-btn {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header-search-btn svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-black);
}

/* ========================================
   LOGO (Center)
======================================== */
.header-logo {
  flex: 0 0 241px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo a {
  display: block;
}

.header-logo img {
  width: 241px;
  height: 79px;
  object-fit: contain;
}

/* ========================================
   HEADER ACTIONS (Right side)
======================================== */
.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 35px;
  min-width: 250px;
  justify-content: flex-end;
}

/* Language Switcher */
.header-lang {
  display: flex;
  align-items: center;
}

.header-lang-text {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-black);
  cursor: pointer;
}

/* Header Icons */
.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  -webkit-appearance: none;
          appearance: none;
}

.header-icon svg {
  width: 32px;
  height: 30px;
  stroke: var(--color-black);
}

.header-icon img {
  width: 32px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.header-icon--profile svg {
  width: 36px;
  height: 30px;
}

.header-icon--profile img {
  width: 36px;
  height: 30px;
}

/* Cart count badge */
.header-cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   MAIN NAVIGATION (hidden by default, shows on hover)
======================================== */
.header-nav {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.site-header:hover .header-nav {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-list li {
  margin: 0;
  padding: 0;
}

.header-nav-list li a {
  display: block;
  padding: 5px 10px;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: var(--color-black);
  text-decoration: none;
  text-underline-offset: 4px;
  transition: text-decoration 0.3s ease;
  white-space: nowrap;
}

.header-nav-list li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

/* ========================================
   DIVIDER LINE (visible on hover)
======================================== */
.header-divider {
  display: none;
}

/* ========================================
   SUBMENUS (Dame / Gospoda)
======================================== */
.header-submenus {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  z-index: 50;
  padding-top: 50px;
}

.header-submenu {
  background-color: var(--color-white);
  box-shadow: inset 0px 4px 6.5px 0px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.header-submenu.is-active {
  max-height: 900px;
  opacity: 1;
  box-shadow: 0 6px 12px -4px rgba(0, 0, 0, 0.12);
}

.header-submenu-inner {
  max-width: 1728px;
  margin: 0 auto;
  padding: 45px 152px 28px;
}

.header-submenu-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 22px;
  max-width: calc(5 * 190px + 4 * 22px);
  list-style: none;
  margin: 0 auto;
  padding: 0;
  border: none;
}

/* ── Submenu slider (active when items > 5) ── */
.header-submenu__slider-wrapper {
  max-width: calc(5 * 190px + 4 * 22px);
  margin: 0 auto;
}

.header-submenu__slider {
  overflow: hidden;
}

.header-submenu--has-slider .header-submenu-list {
  flex-wrap: nowrap;
  justify-content: flex-start;
  max-width: none;
  transition: transform 0.3s ease;
  will-change: transform;
}

.header-submenu__nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.header-submenu--has-slider .header-submenu__nav {
  display: flex;
}

.header-submenu__arrow {
  background: none;
  border: none;
  padding: 6px 8px;
  cursor: pointer;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-submenu__arrow:hover {
  opacity: 0.6;
}

.header-submenu__arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.header-submenu__progress {
  position: relative;
  width: 200px;
  height: 2px;
}

.header-submenu__progress-track {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
}

.header-submenu__progress-bar {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--color-black);
  transition: left 0.3s ease, width 0.3s ease;
}

.header-submenu-list::before,
.header-submenu-list::after {
  display: none;
}

/* Submenu Item */
.header-submenu-item {
  flex: 0 0 auto;
  width: 190px;
  list-style: none;
  border: none;
  padding: 0;
  margin: 0;
}

.header-submenu-item::before {
  display: none;
}

.header-submenu-item a {
  display: block;
  text-decoration: none;
  color: var(--color-black);
  border: none;
}

/* Submenu Image */
.header-submenu-image {
  width: 190px;
  height: 207px;
  overflow: hidden;
  margin-bottom: 12px;
}

.header-submenu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.header-submenu-item a:hover .header-submenu-image img {
  transform: scale(1.05);
}

/* Submenu Title */
.header-submenu-title {
  text-align: center;
}

.header-submenu-title span:first-child {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: var(--color-black);
}

.header-submenu-line {
  display: none;
}

/* Nav item hover state for submenu trigger */
.header-nav-list li.menu-item-has-submenu {
  cursor: pointer;
}

.header-nav-list li.menu-item-has-submenu a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--color-black);
  transition: transform 0.3s ease;
}

.header-nav-list li.menu-item-has-submenu.is-active a::after {
  transform: rotate(180deg);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1728px) {
  .header-top-inner {
    padding: 0 20px;
  }

  .header-search {
    width: 200px;
  }

  .header-actions {
    min-width: 200px;
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .header-search {
    width: 150px;
  }

  .header-search-input {
    font-size: 16px;
  }

  .header-actions {
    gap: 15px;
    min-width: auto;
  }

  .header-lang-text {
    font-size: 16px;
  }

  .header-icon svg {
    width: 26px;
    height: 24px;
  }

  .header-icon img {
    width: 26px;
    height: 24px;
  }

  .header-icon--profile svg {
    width: 28px;
    height: 24px;
  }

  .header-icon--profile img {
    width: 28px;
    height: 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --topbar-height: 70px;
  }

  .header-logo {
    flex: 0 0 137px;
  }

  .header-logo img {
    width: 137px;
    height: auto;
  }

  .header-search {
    display: none;
  }

  .header-actions {
    gap: 14px;
  }

  .header-lang {
    display: none;
  }

  .header-lang-text {
    font-size: 14px;
  }

  .header-nav {
    display: none;
  }

  .site-header:hover .header-top {
    padding-bottom: 0;
  }

  /* Hide desktop submenus on mobile */
  .header-submenus {
    display: none;
  }

  .header-mobile.is-open {
    max-height: calc(100vh - var(--topbar-height));
  }
}

/* ========================================
   Mobile Menu (hamburger + drawer)
======================================== */
.header-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--color-black);
}
.header-menu-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.header-menu-toggle.is-active .header-menu-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.header-menu-toggle.is-active .header-menu-toggle__line:nth-child(2) {
  opacity: 0;
}
.header-menu-toggle.is-active .header-menu-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-mobile {
  position: absolute;
  top: var(--topbar-height, 70px);
  left: 0;
  right: 0;
  background: #fff;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.header-mobile__nav {
  padding: 24px 30px 32px;
}
.header-mobile__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header-mobile__item > a,
.header-mobile__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: none;
  cursor: pointer;
  text-align: left;
}
.header-mobile__item > a:hover,
.header-mobile__toggle:hover {
  opacity: 0.7;
}
.header-mobile__caret {
  width: 9px;
  height: 15px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 15' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='1.5,1.5 7.5,7.5 1.5,13.5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease;
}
.header-mobile__item--has-submenu .header-mobile__toggle[aria-expanded="true"] .header-mobile__caret {
  transform: rotate(90deg);
}
.header-mobile__submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.header-mobile__item--has-submenu .header-mobile__toggle[aria-expanded="true"] + .header-mobile__submenu {
  max-height: 600px;
  margin-top: 14px;
}
.header-mobile__submenu li {
  padding: 8px 0 8px 16px;
}
.header-mobile__submenu a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: none;
}
.header-mobile__submenu a:hover {
  opacity: 0.7;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .header-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 1200px) {
  .header-submenu-inner {
    padding: 40px 50px;
    overflow-x: auto;
  }

  .header-submenu-list {
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }

  .header-submenu-item {
    flex-shrink: 0;
  }
}

/* ========================================
   BODY PADDING (fixed header)
======================================== */
body {
  padding-top: var(--topbar-height);
}

/* ========================================
   FOOTER
======================================== */
:root {
  --footer-shadow: 0px -4px 5.5px 0px rgba(0, 0, 0, 0.15);
  --footer-max-width: 1728px;
  --footer-padding: 100px;
}

.site-footer {
  background-color: var(--color-white);
  box-shadow: var(--footer-shadow);
  width: 100%;
}

/* Upper Section: 3 columns */
.footer-upper {
  max-width: var(--footer-max-width);
  margin: 0 auto;
  padding: 60px var(--footer-padding) 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}

/* Footer Headings */
.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 20px;
}

/* Column 1: Brand + Contact */
.footer-brand__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 0.67em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 15px;
}

.footer-brand__description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.29em;
  color: var(--color-black);
  max-width: 284px;
  margin-bottom: 25px;
}

.footer-brand__contact {
  font-style: normal;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-black);
}

.footer-brand__contact p {
  margin-bottom: 3px;
}

.footer-brand__contact a {
  color: var(--color-black);
  transition: opacity 0.3s ease;
}

.footer-brand__contact a:hover {
  opacity: 0.7;
}

/* Columns 2 & 3: Links */
.footer-links__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links__list li a {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.29em;
  color: var(--color-gray);
  transition: color 0.3s ease;
}

.footer-links__list li a:hover {
  color: var(--color-black);
}

/* Lower Section: 3 columns */
.footer-lower {
  max-width: var(--footer-max-width);
  margin: 0 auto;
  padding: 0 var(--footer-padding) 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.footer-copyright {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.29em;
  color: var(--color-gray);
  justify-self: start;
}

.footer-logo {
  justify-self: center;
}

.footer-logo__img {
  max-width: 179px;
  height: auto;
}

/* Social Icons */
.footer-social {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-black);
  transition: opacity 0.3s ease;
}

.footer-social__link:hover {
  opacity: 0.7;
}

.footer-social__link i {
  font-size: 18px;
}

/* ========================================
   FOOTER RESPONSIVE
======================================== */
@media (max-width: 1728px) {
  :root {
    --footer-padding: 20px;
  }
}

@media (max-width: 1200px) {
  .footer-upper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-lower {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-logo {
    grid-column: 1 / -1;
    justify-self: center;
    order: -1;
  }

  .footer-copyright {
    justify-self: start;
  }

  .footer-social {
    justify-self: end;
  }
}

@media (max-width: 768px) {
  .footer-upper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px;
  }

  .footer-brand__description {
    max-width: 100%;
  }

  .footer-lower {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    padding: 0 20px 30px;
  }

  .footer-copyright,
  .footer-logo,
  .footer-social {
    justify-self: center;
  }

  .footer-social {
    gap: 24px;
  }
}

/* ========================================
   HOMEPAGE - HERO
======================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 725px;
  overflow: hidden;
}

.hero-section .hero-video,
.hero-section .wp-block-video.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.hero-section .hero-video video,
.hero-section .wp-block-video.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section .hero-overlay,
.hero-section .wp-block-group.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(118, 118, 118, 0.4) 0%,
    rgba(54, 54, 54, 0.454286) 28.37%,
    rgba(0, 0, 0, 0.5) 67.31%
  );
}

.hero-section .hero-content,
.hero-section .wp-block-group.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 165px;
}

.hero-section .hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 1.2px;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0;
}

/* ========================================
   HOMEPAGE - CATEGORIES SHOWCASE
======================================== */
.categories-showcase {
  padding: 100px;
  background-color: var(--color-white);
}

.categories-showcase__container {
  max-width: 1527px;
  margin: 0 auto;
}

.categories-showcase__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.5em;
  letter-spacing: 2.5%;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 85px;
}

.categories-showcase__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.categories-showcase__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: var(--color-black);
  transition: opacity 0.3s ease;
}

.categories-showcase__item:hover {
  opacity: 0.8;
}

.categories-showcase__image {
  position: relative;
  width: 100%;
  aspect-ratio: 286 / 292;
  overflow: hidden;
  margin-bottom: 20px;
}

.categories-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.categories-showcase__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 7.5%;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-black);
}

/* WooCommerce Product Categories Block - override styles */
.categories-showcase .wc-block-product-categories {
  margin: 0;
}

.categories-showcase .wc-block-product-categories-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-showcase .wc-block-product-categories-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-black);
  transition: opacity 0.3s ease;
}

.categories-showcase .wc-block-product-categories-list-item:hover {
  opacity: 0.8;
}

.categories-showcase .wc-block-product-categories-list-item__image {
  width: 100%;
  aspect-ratio: 286 / 292;
  overflow: hidden;
  margin-bottom: 20px;
}

.categories-showcase .wc-block-product-categories-list-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.categories-showcase .wc-block-product-categories-list-item__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 7.5%;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-black);
}

/* WooCommerce categories responsive */
@media (max-width: 1200px) {
  .categories-showcase .wc-block-product-categories-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-showcase .wc-block-product-categories-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Categories Showcase Responsive */
@media (max-width: 1200px) {
  .categories-showcase__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-showcase {
    padding: 60px 20px;
  }

  .categories-showcase__title {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .categories-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Categories Showcase - Slider Mode */
.categories-showcase__slider-wrapper {
  position: relative;
}

.categories-showcase__slider {
  overflow: hidden;
}

.categories-showcase__slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.3s ease;
}

.categories-showcase__slide {
  flex: 0 0 calc(25% - 18px);
  min-width: calc(25% - 18px);
}

/* Slider Navigation - Figma style */
.categories-showcase__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.categories-showcase__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-black);
  padding: 8px;
  transition: opacity 0.3s ease;
}

.categories-showcase__arrow:hover {
  opacity: 0.6;
}

.categories-showcase__arrow:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.categories-showcase__arrow svg {
  width: 13px;
  height: 27px;
}

.categories-showcase__progress {
  flex: 1;
  position: relative;
  height: 3px;
  margin: 0 16px;
}

.categories-showcase__progress-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #B5B5B5;
}

.categories-showcase__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 3px;
  background-color: var(--color-black);
  transition: left 0.3s ease, width 0.3s ease;
}

/* Sale badge */
.categories-showcase__badge {
  position: absolute;
  top: 0;
  right: 0;
  height: 24px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #B5B5B5;
  color: var(--color-black);
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  z-index: 2;
}

.categories-showcase__badge--novo {
  background: #3F6B4F;
  color: var(--color-white);
}

/* When both badges show, push the second one (AKCIJA/discount) below NOVO. */
.categories-showcase__badge--novo + .categories-showcase__badge {
  top: 33px;
}

/* Price display */
.categories-showcase__price {
  font-family: var(--font-body);
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}

.categories-showcase__price--regular {
  text-decoration: line-through;
  color: #B5B5B5;
}

.categories-showcase__price--sale {
  color: var(--color-black);
  font-weight: 400;
}

.categories-showcase__slide .categories-showcase__image {
  aspect-ratio: auto;
  overflow: hidden;
}

/* Slider Responsive */
@media (max-width: 1200px) {
  .categories-showcase__slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
  }
}

@media (max-width: 768px) {
  .categories-showcase__slider-track {
    gap: 10px;
  }

  .categories-showcase__slide {
    flex: 0 0 calc(33.333% - 7px);
    min-width: calc(33.333% - 7px);
  }

  .categories-showcase__slide .categories-showcase__name {
    font-size: 10px;
    line-height: 16px;
    margin-top: 6px;
  }

  .categories-showcase__slide .categories-showcase__price {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 4px;
    font-size: 8px;
    line-height: 18px;
  }

  .categories-showcase__slide .categories-showcase__badge {
    display: none;
  }

  .categories-showcase__nav {
    max-width: 225px;
    margin-top: 20px;
  }

  .categories-showcase__arrow svg {
    width: 8px;
    height: 17px;
  }
}

/* ========================================
   HOMEPAGE - SPLIT SECTION (Za nju / Za njega)
======================================== */
.split-section {
  width: 100%;
}

.split-section__columns {
  gap: 0;
}

.split-section .wp-block-column {
  margin: 0;
  padding: 0;
}

.split-card {
  position: relative;
  min-height: 825px !important;
}

.split-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 54%,
    rgba(0, 0, 0, 0.5) 71%,
    rgba(0, 0, 0, 0.7) 89%
  );
  z-index: 1;
  pointer-events: none;
}

.split-card .wp-block-cover__inner-container {
  position: absolute;
  bottom: 65px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.split-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1em;
  letter-spacing: 3%;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 28px;
}

.split-card__button {
  width: 140px;
  height: 70px;
  border: 2px solid var(--color-white);
}

.split-card__button .wp-block-button__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6em;
  color: var(--color-white);
  background: transparent;
  border: none;
  border-radius: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-card__button .wp-block-button__link:hover,
.split-card__button .wp-block-button__link.has-white-color:hover {
  background: rgba(255, 255, 255, 0.3);
  color: var(--color-black);
}

/* Split Section Responsive — keep Za nju / Za njega side-by-side on mobile per Figma 1073:2217 */
@media (max-width: 781px) {
  .split-section .wp-block-columns {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
  }

  .split-section .wp-block-column {
    flex-basis: 50% !important;
    flex-grow: 1 !important;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .split-card {
    min-height: 284px !important;
  }

  .split-card__title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .split-card__button {
    width: 60px;
    height: 30px;
    border-width: 1px;
  }

  .split-card__button .wp-block-button__link {
    font-size: 12px;
  }

  .split-card .wp-block-cover__inner-container {
    bottom: 30px;
  }
}

/* ========================================
   HOMEPAGE - CATEGORIES GRID
======================================== */
.categories-section {
  padding: 80px 0;
  background-color: var(--color-white);
}

.container {
  max-width: 1528px;
  margin: 0 auto;
  padding: 0 100px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
  color: var(--color-black);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.category-card__link {
  display: block;
}

.category-card__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--color-white);
}

.category-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.category-card__cta {
  font-family: var(--font-primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-card__cta {
  opacity: 1;
}

/* ========================================
   HOMEPAGE - SPLIT SECTION (Za nju / Za njega)
======================================== */
.split-section {
  padding: 0 0;
  background-color: #f5f5f5;
  margin-bottom: 80px;
}

.split-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.split-card {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.split-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.split-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.split-card:hover .split-card__image img {
  transform: scale(1.03);
}

.split-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--color-white);
}

.split-card__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

/* ========================================
   HOMEPAGE - PROMO BLOCKS
======================================== */
.promo-block {
  width: 100%;
}

.promo-block .wp-block-columns.promo-block__row {
  gap: 0;
  flex-wrap: nowrap;
}

.promo-block__row .wp-block-column {
  margin: 0;
  padding: 0;
}

/* Image column */
.promo-block__image {
  flex-basis: 50% !important;
}

.promo-block__image figure,
.promo-block__image .wp-block-image {
  margin: 0;
  height: 100%;
}

.promo-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

/* Content column */
.promo-block__content {
  flex-basis: 50% !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
}

.promo-block__label {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 20px;
}

.promo-block__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-black);
  margin-bottom: 30px;
}

.promo-block__description {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.2857em;
  color: var(--color-gray);
  margin-bottom: 40px;
  max-width: 500px;
  text-align: center;
}

/* Promo button */
.promo-block__button {
  width: 140px;
  height: 70px;
}

.promo-block__button .wp-block-button__link {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6em;
  color: var(--color-black);
  background: transparent;
  border: 2px solid var(--color-black);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.promo-block__button .wp-block-button__link:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* Editor compatibility */
.promo-block .wp-block-buttons {
  justify-content: center;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--primary {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.btn--primary:hover {
  background-color: transparent;
  color: var(--color-black);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

/* ========================================
   PROMO BLOCKS - Shortcode (standalone)
======================================== */
.promo-block__row-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
}

.promo-block__image-col {
  flex: 0 0 50%;
  max-width: 50%;
}

.promo-block__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  display: block;
}

.promo-block__content-col {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
}

.promo-block--reverse .promo-block__row-inner {
  flex-direction: row-reverse;
}

.promo-block__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 70px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  color: var(--color-black);
  background: transparent;
  border: 2px solid var(--color-black);
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.promo-block__btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .promo-block__row-inner {
    flex-direction: column !important;
  }

  .promo-block--reverse .promo-block__row-inner {
    flex-direction: column !important;
  }

  .promo-block__image-col,
  .promo-block__content-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .promo-block__image-col img {
    aspect-ratio: 16/9;
  }

  .promo-block__content-col {
    padding: 40px 20px;
  }
}

/* ========================================
   HOMEPAGE RESPONSIVE
======================================== */
@media (max-width: 1728px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-block__title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 568px;
  }

  .hero-section .hero-content,
  .hero-section .wp-block-group.hero-content {
    padding-bottom: 91px;
  }

  .hero-section .hero-title {
    font-size: 40px;
    line-height: 42px;
    max-width: 280px;
    padding: 0 20px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .promo-block .wp-block-columns.promo-block__row,
  .promo-block .wp-block-columns.promo-block__row--reverse {
    flex-direction: column !important;
    flex-wrap: wrap;
  }

  .promo-block__image,
  .promo-block__content {
    flex-basis: 100% !important;
  }

  .promo-block__image img {
    aspect-ratio: 395/426;
  }

  .promo-block__content {
    padding: 50px 20px;
  }

  .promo-block__label {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .promo-block__title {
    font-size: 24px;
    line-height: 44px;
    margin-bottom: 20px;
  }

  .promo-block__description {
    font-size: 12px;
    line-height: 18px;
    max-width: 267px;
    margin-bottom: 24px;
  }

  .promo-block__button {
    width: 60px;
    height: 30px;
  }

  .promo-block__button .wp-block-button__link {
    font-size: 12px;
    border-width: 1px;
  }

  .section-title {
    font-size: 24px;
  }
}

/* ========================================
   CATEGORY ARCHIVE PAGE
======================================== */
.category-archive {
  padding-top: 40px;
  padding-bottom: 80px;
  background-color: var(--color-white);
}

.category-archive__container {
  max-width: 1528px;
  margin: 0 auto;
  padding: 0 100px;
}

/* Header */
.category-archive__header {
  text-align: center;
  margin-bottom: 34px;
  max-width: 549px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 0;
}

.category-archive__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2em;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 20px;
}

.category-archive__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: var(--color-black);
  max-width: 520px;
  margin: 0 auto;
}

/* Empty / no-results state for product search */
.category-archive__empty {
  max-width: 520px;
  margin: 60px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-archive__empty-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-black);
  margin: 0;
}

.category-archive__empty-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-gray);
  margin: 0;
}

.category-archive__empty-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.category-archive__empty-form input[type="search"] {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #CCCCCC;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-black);
}

.category-archive__empty-form input[type="search"]:focus {
  outline: none;
  border-color: var(--color-black);
}

.category-archive__empty-form button {
  padding: 12px 24px;
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.category-archive__empty-form button:hover {
  opacity: 0.85;
}

.category-archive__empty-link {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--color-black);
  text-decoration: underline;
  margin-top: 8px;
}

.category-archive__empty-link:hover {
  opacity: 0.7;
}

/* Breadcrumbs */
.category-archive__breadcrumb {
  margin-bottom: 30px;
}

.category-archive__breadcrumb .woocommerce-breadcrumb {
  font-family: var(--font-body);
  font-size: 14px;
  color: #B5B5B5;
  padding: 0;
  margin: 0;
}

.category-archive__breadcrumb .woocommerce-breadcrumb a {
  color: #B5B5B5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-archive__breadcrumb .woocommerce-breadcrumb a:hover {
  color: var(--color-black);
}

/* Filter/Sort Controls */
.category-archive__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 82px;
}

.category-archive__filter-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--color-black);
}

.category-archive__filter-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.category-archive__filter-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-black);
}

.category-archive__filter-line {
  display: block;
  width: 150px;
  height: 0;
  border-top: 2px solid var(--color-black);
  margin-top: 10px;
}

.category-archive__filter-arrow {
  width: 27px;
  height: 13px;
  margin-left: 30px;
  margin-top: 16px;
  transition: transform 0.3s ease;
}

/* Filter dropdown */
.category-archive__filter-wrap {
  position: relative;
}

.category-archive__filter-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  background: var(--color-white);
  min-width: 250px;
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-archive__filter-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.filter-dropdown__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-dropdown__item {
  position: relative;
}

.filter-dropdown__link {
  display: block;
  padding: 10px 30px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-black);
  text-decoration: none;
  transition: background 0.2s;
}

.filter-dropdown__link:hover {
  background: #F5F5F5;
}

.filter-dropdown__item.is-active > .filter-dropdown__link {
  font-weight: 700;
}

.filter-dropdown__sublist {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.filter-dropdown__item.has-children > .filter-dropdown__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-dropdown__item.has-children > .filter-dropdown__link::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-black);
  border-top: 2px solid var(--color-black);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: 12px;
}

.filter-dropdown__item.has-children.is-expanded .filter-dropdown__sublist {
  max-height: 800px;
  overflow-y: auto;
}

.filter-dropdown__item.has-children.is-expanded > .filter-dropdown__link::after {
  transform: rotate(-45deg);
}

/* Checkbox label row */
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.filter-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--color-black);
  cursor: pointer;
  margin: 0;
}

/* Section toggle button (Muzej header) */
.filter-dropdown__section-toggle {
  background: none;
  border: none;
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-black);
  text-align: left;
  cursor: pointer;
}

/* Actions row (Apply + Clear) */
.filter-dropdown__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 30px;
  border-top: 1px solid #eee;
}

.filter-dropdown__apply {
  padding: 10px 22px;
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.filter-dropdown__apply:hover {
  opacity: 0.85;
}

.filter-dropdown__clear-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-gray);
  text-decoration: none;
}

.filter-dropdown__clear-link:hover {
  color: var(--color-black);
}

.filter-dropdown__subitem .filter-dropdown__link {
  padding-left: 50px;
  font-size: 14px;
  color: var(--color-gray);
}

.filter-dropdown__subitem .filter-dropdown__link:hover {
  color: var(--color-black);
}

.filter-dropdown__subitem.is-active .filter-dropdown__link {
  color: var(--color-black);
  font-weight: 700;
}

.filter-dropdown__clear .filter-dropdown__link {
  color: var(--color-gray);
  font-size: 14px;
  border-top: 1px solid #eee;
  margin-top: 8px;
  padding-top: 16px;
}

.category-archive__filter-toggle.is-active .category-archive__filter-arrow {
  transform: rotate(180deg);
}

.category-archive__sort-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 70px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: var(--color-black);
  background: transparent;
  border: 1px solid var(--color-black);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-archive__sort-btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.category-archive__sort-wrap {
  position: relative;
}

.category-archive__sort-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 100;
  background: var(--color-white);
  min-width: 200px;
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-archive__sort-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sort-dropdown__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sort-dropdown__link {
  display: block;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-black);
  text-decoration: none;
  transition: background 0.2s;
}

.sort-dropdown__link:hover {
  background: #F5F5F5;
}

.sort-dropdown__item.is-active .sort-dropdown__link {
  font-weight: 700;
}

.sort-dropdown__clear .sort-dropdown__link {
  color: var(--color-gray);
  border-top: 1px solid #eee;
  margin-top: 8px;
  padding-top: 16px;
}

/* Product Grid */
.category-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 24px;
}

/* Najpopularniji — 2×2 big card; side alternates via PHP-applied class */
@media (min-width: 1201px) {
  .product-card--najpopularniji {
    grid-row: span 2;
  }
  .product-card--najpopularniji.product-card--feat-right {
    grid-column: 3 / span 2;
  }
  .product-card--najpopularniji.product-card--feat-left {
    grid-column: 1 / span 2;
  }
}

/* Najpopularniji — gradient overlay + overlaid title button (Figma "Rectangle 9") */
.product-card--najpopularniji .product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card--najpopularniji .product-card__image {
  aspect-ratio: auto;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.product-card--najpopularniji .product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card--najpopularniji .product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 54.33%,
    rgba(0, 0, 0, 0.5) 71.15%,
    rgba(0, 0, 0, 0.7) 89.42%
  );
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.product-card__overlay {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: var(--color-white);
  color: var(--color-black);
  text-align: center;
  z-index: 2;
}

.product-card__overlay-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-black);
}

.product-card__overlay-price {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-black);
  line-height: 1;
  display: flex;
  gap: 6px;
  align-items: center;
}

.product-card__overlay-price .product-card__price--old {
  color: #B5B5B5;
  text-decoration: line-through;
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-black);
  transition: opacity 0.3s ease;
  position: relative;
}

.product-card__link:hover {
  opacity: 0.8;
}

.product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 319 / 309;
  overflow: visible;
  margin-bottom: 12px;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card__link:hover .product-card__image img {
  transform: scale(1.05);
}

/* Sale / new-collection badges — positioned relative to card link, over the image */
.product-card__badge {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 24px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #B5B5B5;
  color: var(--color-black);
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  z-index: 3;
}

.product-card__badge--novo {
  background: #3F6B4F;
  color: var(--color-white);
}

/* When both badges show, push the second one (AKCIJA) below NOVO. */
.product-card__badge--novo + .product-card__badge {
  top: 33px;
}

/* Hide product catalog sorting dropdown — sorting disabled site-wide. */
.woocommerce-ordering,
form.woocommerce-ordering,
.woocommerce-products-header__filter,
.wc-block-product-collection-sort-by,
nav.woocommerce-pagination + form.woocommerce-ordering,
.category-archive__sort-wrap {
  display: none !important;
}

/* Product Title */
.product-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1.2px;
  color: var(--color-black);
  margin-bottom: 8px;
}

/* Price */
.product-card__price {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: #B5B5B5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-card__price--old {
  text-decoration: line-through;
  color: #B5B5B5;
}

.product-card__price--sale {
  color: var(--color-black);
  font-weight: 400;
}

.product-card__price--regular {
  color: #B5B5B5;
}

/* Load More Button */
.category-archive__load-more {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.load-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 70px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  color: var(--color-black);
  background: transparent;
  border: 2px solid var(--color-black);
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========================================
   CATEGORY ARCHIVE RESPONSIVE
======================================== */
@media (max-width: 1728px) {
  .category-archive__container {
    padding: 0 20px;
  }
}

@media (max-width: 1200px) {
  .category-archive__grid {
    grid-template-columns: repeat(3, 1fr);
  }


  .category-archive__title {
    font-size: 36px;
  }

  .category-archive__filter-title {
    font-size: 30px;
  }

  .category-archive__filter-line {
    width: 80px;
  }
}

@media (max-width: 768px) {
  .category-archive {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  .category-archive__container {
    padding: 0 20px;
  }

  .category-archive__header {
    margin-bottom: 30px;
  }

  .category-archive__title {
    font-size: 28px;
  }

  .category-archive__description {
    font-size: 13px;
  }

  .category-archive__controls {
    gap: 15px;
  }

  .category-archive__filter-title {
    font-size: 24px;
  }

  .category-archive__filter-line {
    width: 40px;
  }

  .category-archive__sort-btn {
    width: 120px;
    height: 50px;
    font-size: 14px;
  }

  .category-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }


  .product-card__title {
    font-size: 14px;
  }

  .product-card__price {
    font-size: 12px;
  }

  .category-archive__load-more {
    margin-top: 30px;
  }

  .load-more-btn {
    width: 160px;
    height: 50px;
    font-size: 16px;
  }
}

/* ========================================
   SINGLE PRODUCT PAGE
======================================== */
body.single-product .site-main.single-product {
  padding-bottom: 80px;
}

.single-product__container {
  max-width: 1729px;
  margin: 0 auto;
  padding: 100px 150px;
}

.single-product__wrapper {
  width: 100%;
}

.single-product__breadcrumb {
  margin-bottom: 40px;
}

.single-product__breadcrumb .woocommerce-breadcrumb {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 18px;
  color: #7E7E7E;
  padding: 0;
  margin: 0;
}

.single-product__breadcrumb .woocommerce-breadcrumb a {
  color: #7E7E7E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.single-product__breadcrumb .woocommerce-breadcrumb a:hover {
  color: var(--color-black);
}

.single-product__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── Product Gallery ── */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-gallery__main-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-gallery__arrow {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-black);
  padding: 8px;
  transition: opacity 0.3s ease;
}

.product-gallery__arrow:hover {
  opacity: 0.6;
}

.product-gallery__arrow svg {
  width: 13px;
  height: 27px;
}

.product-gallery__main {
  flex: 1;
}

.product-gallery__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.product-gallery__thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  flex-shrink: 0;
}

.product-gallery__thumb {
  width: 150px;
  height: 150px;
  border: 1px solid transparent;
  padding: 0;
  background: none;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
  overflow: hidden;
}

.product-gallery__thumb:hover {
  opacity: 0.8;
}

.product-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--color-black);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Product Info ── */
.single-product__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.single-product__subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 18px;
  color: var(--color-gray);
  margin: 0 0 8px;
}

.single-product__info .product_title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-black);
  margin: 0 0 4px;
}

.single-product__material {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 18px;
  color: #B5B5B5;
  margin: 0 0 40px;
}

.single-product__info .woocommerce-product-details__short-description {
  margin: 0 0 50px;
}

.single-product__info .woocommerce-product-details__short-description p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 18px;
  color: var(--color-black);
  margin: 0;
}

.single-product__separator {
  border: none;
  border-top: 1px solid #B5B5B5;
  margin: 0 0 30px;
  width: 320px;
}

/* ── Variations / Sizes ── */
.single-product__info .variations_form.cart {
  margin: 0;
}

.single-product__info .variations {
  border: none;
  border-collapse: collapse;
  margin-bottom: 30px;
  width: auto;
}

.single-product__info .variations td,
.single-product__info .variations th {
  padding: 0;
  vertical-align: top;
  border: none;
  display: block;
  text-align: left;
}

.single-product__info .variations tr {
  display: block;
  margin-bottom: 16px;
}

.single-product__info .variations .label {
  display: block;
  margin-bottom: 16px;
}

.single-product__info .variations .label label {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-black);
}

.single-product__info .variations .value {
  display: block;
}

.single-product__info .variations .value select {
  display: none;
}

.reset_variations {
  display: none !important;
}

/* Size Buttons */
.variation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.variation-button {
  padding: 8px 16px;
  border: 2px solid #B5B5B5;
  border-radius: 5px;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  color: #B5B5B5;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.variation-button:hover {
  border-color: var(--color-black);
  color: var(--color-black);
}

.variation-button.is-selected {
  border-color: var(--color-black);
  color: var(--color-black);
}

/* Single Variation Form */
.single-product__info .single_variation_wrap {
  margin-bottom: 0;
}

.single-product__info .single_variation {
  display: none;
}

.single-product__info .woocommerce-variation-description {
  display: none;
}

.single-product__info .woocommerce-variation-price {
  display: none;
}

/* ── Quantity + Price + Cart row ── */
.single-product__info .cart {
  display: flex;
  flex-direction: column;
}

.single-product__info .quantity-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-black);
  margin-bottom: 16px;
}

.single-product__info .quantity-cart-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.single-product__cart-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.single-product__info .quantity {
  display: flex;
  align-items: center;
  gap: 0;
  float: none !important;
  margin: 0;
}

.single-product__info .quantity input.qty {
  width: 34px;
  height: 25px;
  text-align: center;
  border: none;
  font-family: var(--font-body);
  font-size: 24px;
  padding: 0;
  background: transparent;
  -moz-appearance: textfield;
}

.single-product__info .quantity input.qty::-webkit-outer-spin-button,
.single-product__info .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-button {
  width: 22px;
  height: 22px;
  border: none;
  background: none;
  font-size: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-button::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 0;
  border-top: 1px solid var(--color-black);
}

.quantity-button.quantity-plus::after {
  content: "";
  position: absolute;
  width: 0;
  height: 22px;
  border-left: 1px solid var(--color-black);
}

/* Price + Add to Cart side by side */
.single-product__info .single_add_to_cart_button,
.single-product__info .price {
  display: none;
}

.single-product__cart-row {
  display: flex;
  align-items: stretch;
}

.single-product__price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 240px;
  flex: 0 0 240px;
  padding: 0 14px;
  height: 47px;
  border: 1px solid var(--color-black);
  border-radius: 3px 0 0 3px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-black);
  white-space: nowrap;
}

.single-product__price-display del {
  color: var(--color-gray);
  text-decoration: line-through;
  font-weight: 300;
}

.single-product__price-display ins {
  text-decoration: none;
  color: var(--color-black);
  font-weight: 500;
}

.single-product__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--color-black);
  font-family: var(--font-body);
  color: var(--color-black);
}

.single-product__total-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.single-product__total-amount {
  font-size: 18px;
  font-weight: 500;
}

.single-product__total-amount .woocommerce-Price-amount {
  font-weight: inherit;
}

.single-product__add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 47px;
  background: var(--color-black);
  border: 2px solid var(--color-black);
  border-radius: 0 3px 3px 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-white);
  cursor: pointer;
  transition: background-color 0.2s;
  text-transform: uppercase;
}

.single-product__add-to-cart:hover {
  background: #333;
}

/* Shipping Info */
.single-product__shipping {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-gray);
  margin-top: 0;
  line-height: 18px;
}

.single-product__shipping strong {
  font-weight: 700;
}

/* ── Design Story Section ── */
.single-product__story {
  width: 100%;
  margin-top: 80px;
}

.single-product__story-inner {
  display: flex;
  gap: 0;
  max-width: 1552px;
  margin: 0 auto;
}

.single-product__story-image {
  flex: 0 0 864px;
  max-width: 56%;
}

.single-product__story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-product__story-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
}

.single-product__story-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 18px;
  color: var(--color-black);
  margin: 0 0 12px;
  text-align: center;
}

.single-product__story-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0 0 30px;
  text-align: center;
}

.single-product__story-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 18px;
  color: var(--color-black);
}

.single-product__story-text p {
  margin: 0 0 16px;
}

.single-product__story-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .single-product__story-image {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .single-product__story-content {
    padding: 40px;
  }

  .single-product__story-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .single-product__story-inner {
    flex-direction: column;
  }

  .single-product__story-image {
    flex: none;
    max-width: 100%;
  }

  .single-product__story-image img {
    aspect-ratio: 16/9;
  }

  .single-product__story-content {
    padding: 30px 20px;
  }

  .single-product__story-title {
    font-size: 24px;
  }
}

/* ── Related Products Slider ── */
.single-product__related {
  margin-top: 80px;
  padding: 60px 100px 0;
}

.single-product__related-container {
  max-width: 1527px;
  margin: 0 auto;
}

.single-product__related-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
  margin-bottom: 60px;
}

.single-product__related .categories-showcase__slide {
  flex: 0 0 calc(20% - 19.2px);
  min-width: calc(20% - 19.2px);
}

/* Responsive - Single Product */
@media (max-width: 1200px) {
  .single-product__container {
    padding: 60px 40px;
  }

  .single-product__main {
    gap: 40px;
  }

  .single-product__related {
    padding: 60px 40px 0;
  }

  .single-product__related .categories-showcase__slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
  }
}

@media (max-width: 768px) {
  body.single-product .site-main.single-product {
    padding-bottom: 50px;
  }

  .single-product__container {
    padding: 30px 20px;
  }

  .single-product__main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .single-product__info .product_title {
    font-size: 28px;
  }

  .product-gallery__thumbnails {
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .product-gallery__thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }

  .single-product__cart-row {
    flex-direction: column;
  }

  .single-product__price-display,
  .single-product__add-to-cart {
    width: 100%;
    border-radius: 3px;
  }

  .single-product__related {
    padding: 40px 20px 0;
  }

  .single-product__related .categories-showcase__slide {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }

  .single-product__related-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

}

/* ========================================
   CHECKOUT PAGE
======================================== */
.wc-block-checkout {
  font-family: var(--font-body);
}

/* Checkout - Blocks styling */
.wc-block-checkout {
  font-family: var(--font-body);
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

.wc-block-checkout .wc-block-components-checkout-step__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.wc-block-checkout .wc-block-components-text-input input,
.wc-block-checkout .wc-block-components-text-input textarea {
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 0 !important;
}

.wc-block-checkout .wc-block-components-checkout-place-order-button {
  background: var(--color-black) !important;
  color: var(--color-white) !important;
  border: none !important;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 32px;
}

.wc-block-checkout .wc-block-components-checkout-place-order-button:hover {
  background: #333 !important;
}

.wc-block-checkout .wc-block-components-product-name {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
}

.wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
}

@media (max-width: 768px) {
  .wc-block-checkout {
    padding: 30px 20px;
  }
}

/* ========================================
   CART DRAWER
======================================== */
.cart-drawer__overlay {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  background: rgba(0, 0, 0, 0.3);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-drawer__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* While the cart drawer is open, freeze the header in its default (collapsed)
   state — main nav stays hidden and submenus stay closed even on hover. */
body.is-cart-open .site-header:hover .header-top {
  padding-bottom: 0;
}
body.is-cart-open .site-header:hover .header-nav {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
body.is-cart-open .header-submenus {
  pointer-events: none;
}
body.is-cart-open .header-submenu.is-active {
  max-height: 0;
  opacity: 0;
  box-shadow: none;
}

/* ── Cart drawer (desktop = full-width dropdown below header) ── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 480px;
  max-width: 100%;
  height: 100vh;
  max-height: 100vh;
  background: var(--color-white);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  padding: 80px 32px 32px;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
}

.cart-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.cart-drawer__close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-black);
  padding: 8px;
  z-index: 2;
}

.cart-drawer__close:hover {
  opacity: 0.6;
}

.cart-drawer__empty {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-gray);
  text-align: center;
  padding: 40px 0;
}

.cart-drawer__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: none;
  margin: 0;
  align-items: stretch;
}

.cart-drawer__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-drawer__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.cart-drawer__item-image {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1;
  margin: 0;
  padding: 24px;
  box-sizing: border-box;
  overflow: hidden;
  background: transparent;
}

.cart-drawer__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-drawer__item-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
  z-index: 1;
}

.cart-drawer__item-remove:hover {
  opacity: 0.7;
}

.cart-drawer__item-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  max-width: none;
  align-items: stretch;
  gap: 6px;
}

.cart-drawer__item-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-gray);
  margin: 0 0 8px;
}

.cart-drawer__item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0 0 6px;
  text-align: center;
}

.cart-drawer__item-variation {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 12px;
}

.cart-drawer__item-variation-label {
  color: var(--color-black);
}

.cart-drawer__item-variation-value {
  color: var(--color-gray);
}

.cart-drawer__item-qty {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 4px;
}

.cart-drawer__qty-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-black);
}

.cart-drawer__qty-controls {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cart-drawer__qty-btn {
  position: relative;
  width: 22px;
  height: 22px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--color-black);
}

.cart-drawer__qty-btn::before,
.cart-drawer__qty-btn::after {
  content: '';
  position: absolute;
  background: currentColor;
}

.cart-drawer__qty-btn::before {
  /* horizontal line — present on both + and − */
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  transform: translateY(-50%);
}

.cart-drawer__qty-btn::after {
  /* vertical line — only on + */
  left: 50%;
  top: 0;
  width: 1px;
  height: 22px;
  transform: translateX(-50%);
}

.cart-drawer__qty-minus::after {
  display: none;
}

.cart-drawer__qty-btn:hover {
  opacity: 0.6;
}

.cart-drawer__qty-value {
  min-width: 24px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: var(--color-black);
}

.cart-drawer__item-price {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
}

.cart-drawer__toolbar {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
}

.cart-drawer__clear {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray);
  cursor: pointer;
  transition: color 0.2s ease;
}

.cart-drawer__clear:hover {
  color: var(--color-black);
}

.cart-drawer__clear svg {
  flex-shrink: 0;
}

.cart-drawer__summary {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}

.cart-drawer__summary-shipping {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 18px;
  color: var(--color-black);
  margin: 0;
}

.cart-drawer__summary-shipping strong {
  font-weight: 700;
}

.cart-drawer__summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-body);
  color: var(--color-black);
}

.cart-drawer__summary-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-drawer__summary-amount {
  font-size: 20px;
  font-weight: 500;
}

.cart-drawer__summary-amount .woocommerce-Price-amount {
  font-weight: inherit;
}

.cart-drawer__summary-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 47px;
  padding: 0 32px;
  background: var(--color-black);
  border: 2px solid var(--color-black);
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-white);
  text-decoration: none;
  transition: background 0.2s;
}

.cart-drawer__summary-checkout:hover {
  background: #333;
  color: var(--color-white);
}

.cart-drawer__item-shipping {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-black);
  line-height: 18px;
}

.cart-drawer__item-shipping strong {
  font-weight: 700;
}

@media (max-width: 700px) {
  .cart-drawer {
    width: 100%;
    padding: 64px 16px 24px;
  }
  .cart-drawer__layout {
    gap: 24px;
  }
  .cart-drawer__items {
    gap: 24px;
  }
  .cart-drawer__item-image {
    width: 100%;
    max-width: 100%;
    padding: 16px;
  }
  .cart-drawer__item-title {
    font-size: 18px;
    line-height: 1.2;
  }
  .cart-drawer__toolbar {
    left: 16px;
  }
}

/* ========================================
   ORDER RECEIVED (Thank You) PAGE
======================================== */
.woocommerce-order {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 24px;
  font-family: var(--font-body);
  color: var(--color-black);
}

.woocommerce-order .woocommerce-thankyou-order-received {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-black);
  margin: 0 0 32px;
  padding: 0 0 20px;
  border-bottom: 1px solid #E5E5E5;
}

.woocommerce-order ul.woocommerce-order-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}

.woocommerce-order ul.woocommerce-order-overview li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
  border: none;
}

.woocommerce-order ul.woocommerce-order-overview li strong {
  font-size: 16px;
  color: var(--color-black);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}

.woocommerce-order .woocommerce-order-details__title,
.woocommerce-order .woocommerce-column__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-black);
  margin: 0 0 20px;
}

.woocommerce-order .woocommerce-order-details,
.woocommerce-order .woocommerce-customer-details {
  margin-bottom: 48px;
}

.woocommerce-order table.woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 0 0 24px;
}

.woocommerce-order table.woocommerce-table--order-details th,
.woocommerce-order table.woocommerce-table--order-details td {
  padding: 18px 0;
  text-align: left;
  border-bottom: 1px solid #E5E5E5;
  vertical-align: top;
}

.woocommerce-order .maruska-order-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.woocommerce-order .maruska-order-item__image {
  display: block;
  flex: 0 0 90px;
  width: 90px;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
  background: #F7F7F7;
}

.woocommerce-order .maruska-order-item__image img,
.woocommerce-order .maruska-order-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
}

.woocommerce-order .maruska-order-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}

.woocommerce-order .maruska-order-item__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-black);
  line-height: 1.25;
}

.woocommerce-order .maruska-order-item__name a {
  color: inherit;
  text-decoration: none;
}

.woocommerce-order .maruska-order-item__name a:hover {
  text-decoration: underline;
}

.woocommerce-order .maruska-order-item__body .wc-item-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--color-gray);
}

.woocommerce-order .maruska-order-item__body .wc-item-meta li {
  margin: 0;
  padding: 0;
}

.woocommerce-order .maruska-order-item__body .wc-item-meta strong {
  font-weight: 400;
  color: var(--color-black);
}

.woocommerce-order .maruska-order-item__qty {
  font-size: 13px;
  color: var(--color-black);
}

.woocommerce-order table.woocommerce-table--order-details th {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray);
}

.woocommerce-order table.woocommerce-table--order-details td:last-child,
.woocommerce-order table.woocommerce-table--order-details th:last-child {
  text-align: right;
}

.woocommerce-order table.woocommerce-table--order-details tfoot th {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-black);
  font-size: 14px;
}

.woocommerce-order table.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-order table.woocommerce-table--order-details tfoot tr:last-child td {
  font-weight: 700;
  font-size: 16px;
  border-bottom: none;
  padding-top: 18px;
}

.woocommerce-order .woocommerce-customer-details .col2-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ========================================
   CHECKOUT (classic [woocommerce_checkout])
======================================== */
body.woocommerce-checkout .site-main {
  max-width: 1729px;
  margin: 0 auto;
  padding: 60px 60px 80px;
}

body.woocommerce-checkout form.checkout,
form.checkout.woocommerce-checkout,
.woocommerce form.checkout {
  display: block !important;
}

body.woocommerce-checkout .checkout-grid,
.woocommerce .checkout-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 80px !important;
  align-items: start !important;
}

body.woocommerce-checkout .checkout-grid__form,
body.woocommerce-checkout .checkout-grid__summary,
.woocommerce .checkout-grid__form,
.woocommerce .checkout-grid__summary {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* The "Your order" h3 is blanked by gettext — hide it. */
body.woocommerce-checkout #order_review_heading {
  display: none !important;
}

body.woocommerce-checkout #customer_details {
  grid-column: 1;
  display: block;
  width: 100% !important;
}

body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2 {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px 24px !important;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > .form-row,
body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper > .form-row {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  clear: none !important;
}

body.woocommerce-checkout .form-row-wide {
  grid-column: 1 / -1 !important;
}

body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .form-row select {
  width: 100% !important;
}

body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout #order_review {
  grid-column: 2;
}

body.woocommerce-checkout #order_review_heading {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-black);
}

body.woocommerce-checkout #customer_details h3 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-black);
  margin: 0 0 16px;
}

body.woocommerce-checkout .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}

body.woocommerce-checkout .form-row label {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray);
  margin: 0;
}

body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout .select2-selection {
  height: 47px;
  padding: 12px 14px;
  border: 1px solid #CCCCCC !important;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-black);
  border-radius: 0;
  box-sizing: border-box;
}

body.woocommerce-checkout .form-row textarea {
  height: auto;
  min-height: 100px;
}

body.woocommerce-checkout .form-row input.input-text:focus,
body.woocommerce-checkout .form-row textarea:focus,
body.woocommerce-checkout .form-row select:focus {
  outline: none;
  border-color: var(--color-black) !important;
}

body.woocommerce-checkout #order_review {
  background: transparent;
  padding: 0;
}

body.woocommerce-checkout #payment {
  background: transparent;
  padding: 0;
  margin: 0;
}

body.woocommerce-checkout #payment ul.payment_methods::before {
  content: 'Plaćanje';
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-black);
  margin: 0 0 12px;
}

/* Custom checkout summary (right column) */
body.woocommerce-checkout .checkout-summary {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

body.woocommerce-checkout .checkout-summary__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.woocommerce-checkout .checkout-summary__item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  column-gap: 24px;
  align-items: start;
}

body.woocommerce-checkout .checkout-summary__item-image {
  position: relative;
  width: 180px;
  height: 180px;
  background: linear-gradient(180deg, rgba(232,232,232,0.6) 0%, rgba(255,255,255,0.6) 100%);
  overflow: visible;
}

body.woocommerce-checkout .checkout-summary__item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

body.woocommerce-checkout .checkout-summary__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.woocommerce-checkout .checkout-summary__item-qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  user-select: none;
}

body.woocommerce-checkout .checkout-summary__item-qty-controls.is-loading {
  opacity: 0.5;
  pointer-events: none;
}

body.woocommerce-checkout .checkout-summary__item-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-black);
  background: var(--color-white);
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

body.woocommerce-checkout .checkout-summary__item-qty-btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

body.woocommerce-checkout .checkout-summary__item-qty-value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  min-width: 16px;
  text-align: center;
}

body.woocommerce-checkout .checkout-summary__item-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding-top: 20px;
}

body.woocommerce-checkout .checkout-summary__item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0;
}

body.woocommerce-checkout .checkout-summary__item-variation {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 18px;
}

body.woocommerce-checkout .checkout-summary__item-variation-label {
  color: var(--color-black);
}

body.woocommerce-checkout .checkout-summary__item-variation-value {
  color: var(--color-gray);
}

body.woocommerce-checkout .checkout-summary__item-price {
  align-self: flex-end;
  margin-top: 24px;
  margin-right: 60px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-black);
  white-space: nowrap;
}

body.woocommerce-checkout .checkout-summary__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 8px;
  border-top: none;
}

body.woocommerce-checkout .checkout-summary__total-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0;
  color: var(--color-black);
}

body.woocommerce-checkout .checkout-summary__total-amount {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  color: var(--color-black);
}

body.woocommerce-checkout .checkout-summary__total-amount .woocommerce-Price-amount {
  font-weight: inherit;
}

body.woocommerce-checkout .checkout-summary__shipping {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 18px;
  color: var(--color-black);
  margin: 0;
}

body.woocommerce-checkout .checkout-summary__shipping strong {
  font-weight: 700;
}

/* Cross-sells (right column, after order review) */
body.woocommerce-checkout .checkout-cross-sells {
  grid-column: 2;
  margin-top: 24px;
}

body.woocommerce-checkout .checkout-cross-sells__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-black);
  margin: 0 0 16px;
}

body.woocommerce-checkout .checkout-cross-sells__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.woocommerce-checkout .checkout-cross-sells__item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  text-decoration: none;
}

body.woocommerce-checkout .checkout-cross-sells__item-image {
  width: 130px;
  height: 130px;
  background: linear-gradient(180deg, rgba(232,232,232,0.6) 0%, rgba(255,255,255,0.6) 100%);
  overflow: hidden;
}

body.woocommerce-checkout .checkout-cross-sells__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.woocommerce-checkout .checkout-cross-sells__item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0;
}

body.woocommerce-checkout .checkout-cross-sells__item-price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
  white-space: nowrap;
}

body.woocommerce-checkout table.shop_table {
  width: 100%;
  border: none;
  border-collapse: collapse;
  margin: 0 0 16px;
  background: transparent;
}

body.woocommerce-checkout table.shop_table thead {
  display: none;
}

body.woocommerce-checkout table.shop_table tbody td {
  padding: 14px 0;
  border-bottom: 1px solid #E5E5E5;
  vertical-align: middle;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-black);
}

body.woocommerce-checkout table.shop_table .product-name {
  width: 70%;
}

body.woocommerce-checkout table.shop_table .product-name strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-black);
  display: block;
  margin-bottom: 4px;
}

body.woocommerce-checkout table.shop_table .product-name .product-quantity {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-gray);
}

body.woocommerce-checkout table.shop_table .product-total {
  text-align: right;
  font-weight: 500;
  white-space: nowrap;
}

body.woocommerce-checkout table.shop_table tfoot th {
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-black);
  padding: 12px 0;
  text-align: left;
  border-bottom: 1px solid #E5E5E5;
  font-weight: 400;
}

body.woocommerce-checkout table.shop_table tfoot td {
  text-align: right;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #E5E5E5;
}

body.woocommerce-checkout table.shop_table tfoot .order-total th,
body.woocommerce-checkout table.shop_table tfoot .order-total td {
  font-size: 18px;
  font-weight: 700;
  border-bottom: none;
  padding-top: 16px;
}

body.woocommerce-checkout #payment {
  background: transparent;
  padding: 0;
  margin-top: 16px;
}

body.woocommerce-checkout #payment ul.payment_methods {
  border: none;
  padding: 0;
  margin: 0 0 16px;
  background: transparent;
  list-style: none;
}

body.woocommerce-checkout #payment ul.payment_methods li {
  padding: 14px 18px;
  margin: 0 0 8px;
  background: var(--color-white);
  border: 1px solid #B5B5B5;
  border-radius: 4px;
  list-style: none;
}

body.woocommerce-checkout #payment ul.payment_methods li:has(input[type="radio"]:checked) {
  border-color: var(--color-black);
  border-width: 2px;
  padding: 13px 17px;
}

body.woocommerce-checkout #payment ul.payment_methods li label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-gray);
  cursor: pointer;
}

body.woocommerce-checkout #payment ul.payment_methods li:has(input[type="radio"]:checked) label {
  color: var(--color-black);
}

body.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #B5B5B5;
  border-radius: 50%;
  background: var(--color-white);
  margin: 0;
  position: relative;
  cursor: pointer;
}

body.woocommerce-checkout #payment ul.payment_methods li input[type="radio"]:checked {
  border-color: var(--color-black);
}

body.woocommerce-checkout #payment ul.payment_methods li input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--color-black);
}

/* Hide payment description text + privacy policy text */
body.woocommerce-checkout #payment .payment_box,
body.woocommerce-checkout .woocommerce-privacy-policy-text,
body.woocommerce-checkout #payment .terms-and-conditions-wrapper {
  display: none !important;
}

body.woocommerce-checkout #payment .place-order {
  padding: 0;
  margin: 0;
}

/* Remember-me checkbox under payment methods (left col) */
body.woocommerce-checkout .checkout-remember {
  margin: 0;
  padding: 0;
}

body.woocommerce-checkout .checkout-remember__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-black);
}

body.woocommerce-checkout .checkout-remember__input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-black);
  border-radius: 2px;
  background: var(--color-white);
  margin: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

body.woocommerce-checkout .checkout-remember__input:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--color-black);
  border-radius: 1px;
}

body.woocommerce-checkout #place_order,
body.woocommerce-checkout button#place_order {
  width: 100%;
  height: 47px;
  background: var(--color-black) !important;
  color: var(--color-white) !important;
  border: 2px solid var(--color-black) !important;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: none;
  display: block;
}

body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout button#place_order:hover {
  background: #333 !important;
}

body.woocommerce-checkout .place-order {
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-checkout .checkout-place-order-slot {
  margin: 24px 0 0;
}

body.woocommerce-checkout .checkout-place-order-slot:empty {
  display: none;
}

body.woocommerce-checkout .checkout-shipping-note {
  margin: 16px 0 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

body.woocommerce-checkout .checkout-shipping-note strong {
  color: var(--color-black);
  font-weight: 700;
  margin-right: 4px;
}

body.woocommerce-checkout .checkout-shipping-note span {
  color: var(--color-gray);
}

@media (max-width: 1000px) {
  body.woocommerce-checkout .site-main {
    padding: 40px 24px 60px;
  }
  body.woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body.woocommerce-checkout #customer_details,
  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review {
    grid-column: 1;
  }
}

@media (max-width: 600px) {
  body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
}

.woocommerce-order .woocommerce-customer-details address {
  font-style: normal;
  line-height: 1.6;
  color: var(--color-black);
  padding: 20px;
  background: #F7F7F7;
  border: 1px solid #E5E5E5;
}

.woocommerce-order .woocommerce-customer-details address p {
  margin: 0;
}

@media (max-width: 768px) {
  .woocommerce-order {
    margin: 30px auto;
  }
  .woocommerce-order .woocommerce-thankyou-order-received {
    font-size: 24px;
  }
  .woocommerce-order ul.woocommerce-order-overview {
    gap: 20px;
  }
  .woocommerce-order .woocommerce-customer-details .col2-set {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ========================================
   O NAMA Page
======================================== */
.onama-page {
  color: var(--color-black);
}

/* Hero */
.onama-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #F5F1EC;
}
.onama-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.onama-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.onama-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.onama-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px;
}
.onama-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-white);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Split sections — 730px fixed row height, no vertical gap between rows. DOM order drives image/text placement. */
.onama-split {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  max-width: 1525px;
  margin: 0 auto;
  height: 730px;
}
.onama-split__image {
  flex: 0 0 50%;
  width: 50%;
  align-self: stretch;
  overflow: hidden;
}
.onama-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.onama-split__content {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.onama-split__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0;
}
.onama-split__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-black);
  max-width: 559px;
}
.onama-split__text p {
  margin: 0 0 1em;
}
.onama-split__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .onama-hero__title {
    font-size: 36px;
  }
  .onama-hero {
    min-height: 50vh;
  }
  .onama-split,
  .onama-split--image-left {
    flex-direction: column;
    gap: 32px;
    padding: 40px 20px;
    height: auto;
  }
  .onama-split__image {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 864 / 730;
  }
  .onama-split__content {
    flex: 1 1 auto;
    width: 100%;
  }
  .onama-split__title {
    font-size: 32px;
    line-height: 36px;
  }
}

/* Nagrade (awards gallery) — Figma node 1013:1915 */
.onama-nagrade {
  max-width: 1525px;
  margin: 0 auto;
  padding: 50px 20px;
  min-height: 730px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.onama-nagrade__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-black);
  margin: 0;
}
.onama-nagrade__items {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 23px;
  width: 100%;
}
.onama-nagrade__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  max-width: 144px;
  flex: 0 1 auto;
  margin: 0;
}
.onama-nagrade__item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 196px;
  object-fit: contain;
}
.onama-nagrade__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-black);
}

@media (max-width: 900px) {
  .onama-nagrade {
    min-height: 0;
    padding: 40px 20px;
    gap: 24px;
  }
  .onama-nagrade__title {
    font-size: 32px;
    line-height: 40px;
  }
  .onama-nagrade__items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .onama-nagrade__item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: none;
  }
  .onama-nagrade__item img {
    max-height: 120px;
  }
}

/* ========================================
   LOKACIJE — Locations page
======================================== */
.lokacije-page {
  color: var(--color-black);
}
.lokacije-hero {
  padding: 75px 20px 150px;
  text-align: center;
}
.lokacije-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0;
}
.lokacije-split .lokacije-split__content {
  gap: 24px;
}
.lokacije-split__details {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-black);
  max-width: 549px;
}
.lokacije-split__city {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0;
}
.lokacije-split__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 70px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--color-black);
  background: #ffffff;
  border: 1px solid var(--color-black);
  transition: background-color 0.2s, color 0.2s;
}
.lokacije-split__cta:hover {
  background: var(--color-black);
  color: #ffffff;
}

@media (max-width: 900px) {
  .lokacije-hero {
    padding: 48px 20px 80px;
  }
  .lokacije-hero__title {
    font-size: 36px;
    line-height: 1.2;
  }
}

/* ========================================
   SVET MARUŠKE — Blog archive page
======================================== */
.svet-page {
  color: var(--color-black);
}
.svet-hero {
  position: relative;
  width: 100%;
  height: 730px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.svet-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.svet-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svet-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.svet-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px 140px;
}
.svet-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-white);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.svet-post .onama-split__title a,
.svet-post .onama-split__image a {
  color: inherit;
  text-decoration: none;
}
.svet-post .onama-split__title a:hover {
  text-decoration: underline;
}
.svet-post__more {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-black);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  margin-top: 8px;
}
.svet-post__more:hover {
  opacity: 0.7;
}

@media (max-width: 900px) {
  .svet-hero {
    height: auto;
    aspect-ratio: 1728 / 730;
  }
  .svet-hero__title {
    font-size: 36px;
  }
}

/* ========================================
   MODA I UMETNOST — Landing Page
======================================== */
.moda-umetnost-page {
  color: var(--color-black);
}

/* Hero */
.moda-umetnost-hero {
  padding: 100px 20px 80px;
  background: #F5F1EC;
  text-align: center;
}
.moda-umetnost-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}
.moda-umetnost-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-black);
  margin: 0 0 16px;
}
.moda-umetnost-hero__tagline {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray);
  margin: 0;
}

/* Museum carousel */
.moda-umetnost-museums {
  padding: 80px 20px;
}
.moda-umetnost-museums__container {
  max-width: 1440px;
  margin: 0 auto;
}
.moda-umetnost-museums__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 0 40px;
}

/* Split sections (Marame / Esarpe) */
.moda-umetnost-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 540px;
}
.moda-umetnost-split__content {
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.moda-umetnost-split__kicker {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-black);
}
.moda-umetnost-split__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
  color: var(--color-black);
}
.moda-umetnost-split__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-gray);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}
.moda-umetnost-split__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 16px 32px;
  margin-top: 16px;
  border: 2px solid var(--color-black);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.moda-umetnost-split__btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}
.moda-umetnost-split__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.moda-umetnost-split__image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .moda-umetnost-hero {
    padding: 60px 20px 40px;
  }
  .moda-umetnost-hero__title {
    font-size: 36px;
  }
  .moda-umetnost-split,
  .moda-umetnost-split--image-left {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .moda-umetnost-split--image-left .moda-umetnost-split__image {
    order: 1;
  }
  .moda-umetnost-split--image-left .moda-umetnost-split__content {
    order: 2;
  }
  .moda-umetnost-split__content {
    padding: 40px 20px;
  }
  .moda-umetnost-split__title {
    font-size: 40px;
  }
  .moda-umetnost-split__image img {
    min-height: 300px;
  }
}

/* ========================================
   MY ACCOUNT PAGE (Maruška custom)
======================================== */
.maruska-account {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 24px;
  font-family: var(--font-body);
  color: var(--color-black);
}

.maruska-account__section {
  margin-bottom: 48px;
}

.maruska-account__toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid var(--color-black);
}

.maruska-account__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-black);
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-black);
  display: block;
}

.maruska-account__toggle .maruska-account__heading {
  border: none;
  padding-bottom: 0;
  margin: 0;
}

.maruska-account__chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.maruska-account__section[data-expanded="true"] .maruska-account__chevron {
  transform: rotate(180deg);
}

.maruska-account__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.maruska-account__section[data-expanded="true"] .maruska-account__content {
  max-height: 3000px;
  padding-top: 24px;
}

.maruska-account__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.maruska-account__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.maruska-account__group-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-black);
  margin: 0 0 4px;
}

.maruska-account__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.maruska-account__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray);
}

.maruska-account__form input,
.maruska-account__form select {
  padding: 12px 14px;
  border: 1px solid #CCCCCC;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-black);
  text-transform: none;
  letter-spacing: 0;
}

.maruska-account__form input:focus,
.maruska-account__form select:focus {
  outline: none;
  border-color: var(--color-black);
}

.maruska-account__form small {
  font-size: 12px;
  color: var(--color-gray);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
}

.maruska-account__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
}

.maruska-account__submit {
  padding: 14px 32px;
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.maruska-account__submit:hover {
  opacity: 0.85;
}

.maruska-account__history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
}

.maruska-account__history-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-black);
  transition: opacity 0.2s ease;
}

.maruska-account__history-item:hover {
  opacity: 0.85;
}

.maruska-account__history-image {
  aspect-ratio: 286 / 292;
  overflow: hidden;
  margin-bottom: 16px;
}

.maruska-account__history-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maruska-account__history-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 0 4px;
}

.maruska-account__history-price {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-gray);
  text-align: center;
}

.maruska-account__empty {
  color: var(--color-gray);
  margin-top: 16px;
}

/* ── Logged-out my-account: style WooCommerce default login form ── */
.woocommerce-account .woocommerce {
  max-width: 520px;
  margin: 60px auto;
  padding: 0 20px;
}

.woocommerce-account .woocommerce > h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-black);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-black);
}

.woocommerce-account .woocommerce-form-login {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.woocommerce-account .woocommerce-form-login p,
.woocommerce-account .woocommerce-form-row {
  margin: 0;
  padding: 0;
}

.woocommerce-account .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray);
}

.woocommerce-account .woocommerce-form-login label:not(.woocommerce-form__label-for-checkbox) {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray);
  margin-bottom: 6px;
}

.woocommerce-account .woocommerce-Input--text,
.woocommerce-account .woocommerce-form-login input[type="text"],
.woocommerce-account .woocommerce-form-login input[type="password"],
.woocommerce-account .woocommerce-form-login input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #CCCCCC;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-black);
}

.woocommerce-account .woocommerce-Input--text:focus,
.woocommerce-account .woocommerce-form-login input:focus {
  outline: none;
  border-color: var(--color-black);
}

.woocommerce-account .woocommerce-form-login__submit,
.woocommerce-account .woocommerce-button.button {
  padding: 14px 32px;
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.woocommerce-account .woocommerce-form-login__submit:hover,
.woocommerce-account .woocommerce-button.button:hover {
  opacity: 0.85;
}

.woocommerce-account .lost_password {
  margin-top: 8px;
  font-size: 13px;
}

.woocommerce-account .lost_password a {
  color: var(--color-gray);
  text-decoration: underline;
}

.woocommerce-account .lost_password a:hover {
  color: var(--color-black);
}

@media (max-width: 768px) {
  .maruska-account {
    margin: 30px auto;
  }
  .maruska-account__heading {
    font-size: 20px;
  }
  .maruska-account__row {
    grid-template-columns: 1fr;
  }
  .maruska-account__history-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .woocommerce-account .woocommerce {
    margin: 30px auto;
  }
  .woocommerce-account .woocommerce > h2 {
    font-size: 20px;
  }
}

/* Back-to-home link on order received page */
.maruska-order-home-link {
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 24px;
}

.maruska-order-home-link__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.maruska-order-home-link__btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* ========================================
   POST-PURCHASE ACCOUNT PROMPT
======================================== */
.maruska-account-prompt {
  max-width: 560px;
  margin: 40px auto;
  padding: 32px 36px;
  background: #F7F7F7;
  border: 1px solid #E5E5E5;
}

.maruska-account-prompt__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0 0 8px;
}

.maruska-account-prompt__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-gray);
  margin: 0 0 24px;
}

.maruska-account-prompt__row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 16px;
}

.maruska-account-prompt__label {
  color: var(--color-gray);
}

.maruska-account-prompt__email {
  color: var(--color-black);
  font-weight: 500;
}

.maruska-account-prompt__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.maruska-account-prompt__field label {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray);
  margin-bottom: 6px;
}

.maruska-account-prompt__field input[type="password"] {
  padding: 12px 14px;
  border: 1px solid #CCCCCC;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-black);
}

.maruska-account-prompt__field small {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-gray);
  margin-top: 4px;
}

.maruska-account-prompt__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.maruska-account-prompt__submit {
  padding: 12px 24px;
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.maruska-account-prompt__submit:hover {
  opacity: 0.85;
}

.maruska-account-prompt__dismiss {
  padding: 12px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-gray);
  cursor: pointer;
  text-decoration: underline;
}

.maruska-account-prompt__dismiss:hover {
  color: var(--color-black);
}
