:root {
  --sky: #B5E7F5;
  --sky-light: #DBF2FA;
  --sky-deep: #7EC8E3;
  --pink: #F9D1D1;
  --pink-soft: #FDE8E8;
  --yellow: #FFF4BD;
  --yellow-warm: #FFE88A;
  --sage: #C5E0D3;
  --sage-deep: #9FCFB8;
  --lavender: #D8D0E8;
  --peach: #FDDCBD;
  --white: #FFFFFF;
  --cream: #FFFDF7;
  --text-dark: #2D5077;
  --text-body: #4A6B8A;
  --text-light: #7A9BB5;
  --border: #E8F0F5;
  --shadow: rgba(45, 80, 119, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--sky);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== MARQUEE ANNOUNCEMENT BANNER ===== */
.marquee-banner {
  background: var(--text-dark);
  color: var(--white);
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  gap: 0;
}
.marquee-track span {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-right: 60px;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== MINIMAL TOP BAR ===== */
.top-bar {
  background: var(--white);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--sky);
}
.top-bar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.top-bar-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sky);
}
.top-bar-logo .brand-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.top-bar-logo .brand-name span {
  color: var(--sky-deep);
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Desktop nav links in header */
.top-bar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.top-bar-nav a {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.top-bar-nav a:hover { background: var(--sky-light); color: var(--sky-deep); }

/* Hamburger button — top bar (mobile only) */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--sky-light);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.hamburger-btn:hover { background: var(--sky); }
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger-btn.nav-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger-btn.nav-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.nav-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== FLOATING CART BUTTON ===== */
.float-cart {
  position: relative;
  background: var(--white);
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.float-cart:hover { transform: scale(1.1); }
.float-cart svg { width: 22px; height: 22px; stroke: var(--text-dark); fill: none; stroke-width: 2; }
.float-cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #e74c3c;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* ===== MOBILE NAV DRAWER ===== */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.nav-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
.nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  left: auto;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 301;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -4px 0 40px rgba(45,80,119,0.18);
}
.nav-drawer.open { right: 0; }
.nav-drawer-close {
  align-self: flex-end;
  background: var(--sky-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.2s;
}
.nav-drawer-close:hover { background: var(--sky); }
.nav-drawer a {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 14px;
  text-align: center;
  background: var(--sky-light);
  letter-spacing: 0.5px;
  transition: all 0.25s;
  text-transform: uppercase;
}
.nav-drawer a:hover {
  background: var(--sky);
  color: var(--text-dark);
}

/* ===== HERO SECTION ===== */
.hero {
  background: var(--sky);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  top: -120px;
  right: -100px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--pink-soft);
  opacity: 0.3;
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
  pointer-events: none;
}
.hero-logo-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 8px 32px rgba(45,80,119,0.2);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease;
}
.hero-brand {
  font-family: 'Quicksand', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-brand span { color: var(--text-dark); }
.hero-tagline {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-emoji-display {
  font-size: 90px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text-dark);
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(45,80,119,0.25);
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease 0.4s both;
  border: none;
  cursor: pointer;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(45,80,119,0.35);
}

/* Scroll chevrons */
.scroll-chevrons {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  animation: bounce-scroll 1.2s ease-in-out infinite;
}
.scroll-chevrons .chevron {
  color: var(--white);
  font-size: 20px;
  line-height: 1;
}
@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== WAVE SEPARATOR ===== */
.wave-separator {
  display: block;
  line-height: 0;
  overflow: hidden;
}
.wave-separator svg {
  display: block;
  width: 100%;
}

/* ===== SECTION TITLE BLOCK ===== */
.section-title-block {
  text-align: center;
  padding: 72px 40px 48px;
}
.section-title-block h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-dark);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.06);
  line-height: 1.1;
}
.section-title-block h2 span { color: var(--sky-deep); }
.section-title-block h2 span.pink { color: #c0548a; }
.section-title-block h2 span.yellow { color: #c09320; }
.section-title-block p {
  font-size: 17px;
  color: var(--text-body);
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PRODUCT INTRO ===== */
.product-intro-section {
  background: var(--sky-light);
  padding: 60px 24px 48px;
  display: flex;
  justify-content: center;
}
.product-intro-inner {
  max-width: 680px;
  width: 100%;
  text-align: center;
}
.intro-lead {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.5;
}
.intro-body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
}
.intro-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}
.intro-features li {
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}
.intro-sizes-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.intro-sizes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.intro-sizes span {
  background: var(--white);
  border: 2px solid var(--sky);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.intro-love {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--sky-deep);
}

/* ===== BENEFITS STRIP ===== */
.benefits-section {
  background: var(--sky-light);
  padding: 64px 40px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(45,80,119,0.07);
  transition: transform 0.3s;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 30px;
}
.benefit-card:nth-child(1) .benefit-icon { background: var(--sky); }
.benefit-card:nth-child(2) .benefit-icon { background: var(--pink-soft); }
.benefit-card:nth-child(3) .benefit-icon { background: var(--yellow); }
.benefit-card:nth-child(4) .benefit-icon { background: var(--sage); }
.benefit-card h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.benefit-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-body);
}

/* ===== PC CARDS (Product Cards new style) ===== */
.catalog-section {
  background: var(--yellow);
  padding-bottom: 72px;
}
.products-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.pc-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(45,80,119,0.1);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}
.pc-card:hover { transform: scale(1.02); }
.pc-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  padding: 22px 24px 0;
  line-height: 1.2;
}
.pc-title span { color: #c0548a; }
.pc-title span.boy { color: var(--sky-deep); }
.pc-title span.unisex { color: #b08a00; }
.pc-image {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  margin: 16px 0 0;
  position: relative;
  overflow: hidden;
}
.pc-image.bg-girl { background: linear-gradient(145deg, var(--pink-soft), var(--pink), var(--lavender)); }
.pc-image.bg-boy  { background: linear-gradient(145deg, var(--sky-light), var(--sky), var(--sky-deep)); }
.pc-image.bg-uni  { background: linear-gradient(145deg, var(--yellow), var(--sage), var(--peach)); }
.pc-btn-wrap {
  padding: 20px 24px 24px;
  margin-top: auto;
}
.pc-btn-skew {
  display: block;
  transform: skewX(-8deg);
  background: var(--sky-deep);
  border-radius: 8px;
  overflow: hidden;
  border: none;
  width: 100%;
  cursor: pointer;
  height: 56px;
  transition: background 0.3s;
}
.pc-btn-skew:hover { background: var(--text-dark); }
.pc-btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transform: skewX(8deg);
  font-family: 'Quicksand', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}

/* ===== SHIPPING SECTION ===== */
.shipping-section {
  background: var(--sky-light);
  padding: 0 0 72px;
}
.shipping-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.shipping-header {
  text-align: center;
  margin-bottom: 48px;
}
.shipping-icon-big {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
}
.shipping-header h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.shipping-header p {
  font-size: 16px;
  color: var(--text-body);
}
.shipping-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.shipping-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  background: var(--white);
  box-shadow: 0 4px 20px var(--shadow);
}
.shipping-card:hover { transform: translateY(-4px); }
.sc-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.shipping-card h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.shipping-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: var(--pink-soft);
  padding: 0 40px 72px;
}
.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 8px 30px rgba(45,80,119,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); }
.review-card:nth-child(1) { border-top: 5px solid var(--sky); }
.review-card:nth-child(2) { border-top: 5px solid var(--pink); }
.review-card:nth-child(3) { border-top: 5px solid var(--yellow-warm); }
.review-stars {
  font-size: 20px;
  letter-spacing: 2px;
  color: #F2B705;
}
.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  font-style: italic;
  flex: 1;
}
.review-author {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}

/* ===== GIFT SECTION ===== */
.gift-section {
  background: var(--yellow);
  padding: 0 40px 72px;
}
.gift-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.gift-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.85);
  color: var(--text-dark);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.gift-inner h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.gift-inner p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.gift-chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.gift-chip {
  background: rgba(255,255,255,0.9);
  color: var(--text-dark);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(45,80,119,0.08);
}
.gift-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text-dark);
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(45,80,119,0.2);
}
.gift-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45,80,119,0.3);
}

/* ===== WHY US SECTION ===== */
.why-section {
  background: var(--white);
  padding: 0 40px 72px;
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-visual {
  background: linear-gradient(145deg, var(--sky-light), var(--pink-soft));
  border-radius: 28px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.3;
  top: -40px;
  right: -40px;
}
.why-visual .big-emoji { font-size: 100px; position: relative; z-index: 1; }
.why-visual .sub-text {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.why-content h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-list .check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 2px;
}
.why-list li:nth-child(1) .check { background: var(--sky-light); }
.why-list li:nth-child(2) .check { background: var(--pink-soft); }
.why-list li:nth-child(3) .check { background: var(--yellow); }
.why-list li:nth-child(4) .check { background: var(--sage); }
.why-list li:nth-child(5) .check { background: var(--lavender); }
.why-list .why-text h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.why-list .why-text p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
}

/* ===== INSTAGRAM CTA ===== */
.ig-section {
  background: var(--sky);
  padding: 0 40px 72px;
  text-align: center;
}
.ig-inner {
  max-width: 600px;
  margin: 0 auto;
}
.ig-section h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.ig-section h3 span { color: #833AB4; }
.ig-section p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 28px;
}
.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  color: white;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(131,58,180,0.3);
}
.ig-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 32px rgba(131,58,180,0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--sky-deep);
  color: rgba(255,255,255,0.85);
  padding: 56px 40px 32px;
}
.footer-brand-big {
  text-align: center;
  margin-bottom: 48px;
}
.footer-brand-big .brand-name-big {
  font-family: 'Quicksand', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
  display: block;
  margin-bottom: 8px;
}
.footer-brand-big p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.6;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  font-family: 'Quicksand', sans-serif;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-reklamacije {
  display: flex;
  align-items: flex-start;
}
.footer-reklamacije p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.footer-reklamacije a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-reklamacije a:hover {
  text-decoration: underline;
}
.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,80,119,0.3);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  z-index: 201;
  transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(45,80,119,0.15);
}
.cart-sidebar.active { right: 0; }
.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}
.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--sky-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-dark);
  transition: all 0.3s;
}
.cart-close:hover { background: var(--sky); }
.cart-items {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cart-empty { text-align: center; color: var(--text-light); }
.cart-empty .empty-icon { font-size: 48px; margin-bottom: 12px; }
.cart-empty p {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 15px;
}
.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
}
.checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--sky-deep);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
}
.checkout-btn:hover { background: var(--text-dark); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text-dark);
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 14px;
  z-index: 400;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: 0 8px 30px rgba(45,80,119,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== SIZE SELECTOR ===== */
.size-selector {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.size-btn {
  width: 36px;
  height: 28px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s;
}
.size-btn:hover, .size-btn.active {
  border-color: var(--sky-deep);
  color: var(--sky-deep);
  background: var(--sky-light);
}

/* ===== WHATSAPP / VIBER FAB ===== */
.wa-viber-fab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-viber-fab .fab-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  pointer-events: none;
  transition: all 0.3s ease;
}
.wa-viber-fab .fab-sub.fab-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.wa-viber-fab .fab-sub:nth-child(1) { transition-delay: 0.05s; }
.wa-viber-fab .fab-sub:nth-child(2) { transition-delay: 0.1s; }
.fab-label {
  background: var(--text-dark);
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px var(--shadow);
}
.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}
.fab-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
.fab-btn-wa  { background: #25D366; }
.fab-btn-vb  { background: #7360f2; }
.fab-btn-main {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: all 0.3s;
  color: var(--white);
  flex-shrink: 0;
}
.fab-btn-main:hover {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}

/* ===== SECTION BG COLORS ===== */
.bg-sky     { background: var(--sky); }
.bg-sky-light { background: var(--sky-light); }
.bg-yellow  { background: var(--yellow); }
.bg-pink    { background: var(--pink-soft); }
.bg-white   { background: var(--white); }
.bg-deep    { background: var(--sky-deep); }

/* ===== GENERIC PAGE CONTENT ===== */
.page-hero {
  background: var(--sky);
  padding: 72px 40px 56px;
  text-align: center;
}
.page-hero h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-dark);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.06);
  line-height: 1.1;
  margin-bottom: 12px;
}
.page-hero h2 span { color: var(--sky-deep); }
.page-hero p {
  font-size: 17px;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.85);
  color: var(--text-dark);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-brand { font-size: 48px; }
  .section-title-block h2 { font-size: 44px; }
  .products-row { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .shipping-cards { grid-template-columns: 1fr; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-big .brand-name-big { font-size: 36px; }
}
@media (max-width: 600px) {
  .hero-brand { font-size: 36px; letter-spacing: 2px; }
  .hero-tagline { font-size: 15px; letter-spacing: 1.5px; }
  .section-title-block h2 { font-size: 32px; letter-spacing: 1.5px; }
  .section-title-block { padding: 48px 24px 32px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .products-row { padding: 0 20px; }
  .shipping-inner, .reviews-inner { padding: 0 24px; }
  .shipping-section, .reviews-section, .gift-section, .why-section, .ig-section { padding-left: 0; padding-right: 0; }
  .shipping-inner { padding: 0 20px; }
  .reviews-section { padding: 0 20px 56px; }
  .gift-section { padding: 0 20px 56px; }
  .why-section { padding: 0 20px 56px; }
  .ig-section { padding: 0 20px 56px; }
  .top-bar { padding: 10px 16px; }
  .page-hero h2 { font-size: 36px; }
  .gift-inner h3 { font-size: 28px; }
  .why-content h3 { font-size: 26px; }
}

/* Products page catalog cards */
.catalog-section-wrap {
  background: var(--yellow);
  padding-bottom: 72px;
}
.products-catalog {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.catalog-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(45,80,119,0.1);
  transition: transform 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.catalog-card:hover { transform: scale(1.02); }
.catalog-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.catalog-img .card-bg {
  position: absolute;
  inset: 0;
}
.card-bg-girl   { background: linear-gradient(145deg, var(--pink-soft), var(--pink), var(--lavender)); }
.card-bg-boy    { background: linear-gradient(145deg, var(--sky-light), var(--sky), var(--sky-deep)); }
.card-bg-unisex { background: linear-gradient(145deg, var(--yellow), var(--sage), var(--peach)); }
.catalog-img .card-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 80px;
  z-index: 1;
}
.catalog-img .card-emoji .photo-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(255,255,255,0.8);
  padding: 5px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.catalog-img .card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--text-dark);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.catalog-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.catalog-body h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.catalog-body .cat-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
  flex: 1;
}
.catalog-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.csize {
  background: var(--sky-light);
  border: 1.5px solid var(--sky);
  color: var(--text-body);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}
.catalog-actions {
  display: flex;
  gap: 10px;
}
.btn-details {
  flex: 1;
  background: var(--white);
  border: 2px solid var(--sky-deep);
  color: var(--sky-deep);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-details:hover { background: var(--sky-light); }
.btn-cart {
  flex: none;
  width: 46px;
  height: 46px;
  background: var(--sky-deep);
  border: none;
  color: var(--white);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-cart:hover { background: var(--text-dark); transform: scale(1.08); }
@media (max-width: 900px) {
  .products-catalog { grid-template-columns: 1fr; max-width: 480px; padding: 0 24px; }
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,80,119,0.45);
  backdrop-filter: blur(6px);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: 28px;
  width: 100%;
  max-width: 740px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(45,80,119,0.25);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}
.modal-header {
  padding: 28px 32px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.modal-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.modal-close {
  background: var(--sky-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-body);
  transition: background 0.2s;
}
.modal-close:hover { background: var(--sky); }
.modal-body {
  padding: 24px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.modal-img {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.modal-img .photo-label {
  position: absolute;
  bottom: 14px;
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(255,255,255,0.88);
  padding: 5px 14px;
  border-radius: 20px;
}
.modal-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--sky-light);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  border-left: 3px solid var(--sky-deep);
}
.modal-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.detail-block {
  background: var(--sky-light);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.detail-block.full { grid-column: 1 / -1; }
.detail-block h5 {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}
.detail-block p, .detail-block li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
}
.detail-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail-block ul li::before {
  content: '·  ';
  color: var(--sky-deep);
  font-weight: 700;
}
.detail-block .material-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.modal-sizes h5 {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}
.modal-size-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.modal-size-btn {
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text-body);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.modal-size-btn .size-label  { font-size: 15px; }
.modal-size-btn .size-age   { font-size: 11px; font-weight: 600; color: var(--text-light); }
.modal-size-btn .size-height { font-size: 10px; font-weight: 600; color: #aaa; }
.modal-size-btn.active, .modal-size-btn:hover {
  border-color: var(--sky-deep);
  background: var(--sky-light);
  color: var(--text-dark);
}
.modal-size-btn.active .size-age    { color: var(--sky-deep); }
.modal-size-btn.active .size-height { color: var(--sky-deep); }

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
}
.size-table th {
  background: var(--sky-deep);
  color: var(--white);
  padding: 8px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.size-table th:first-child { border-radius: 8px 0 0 0; }
.size-table th:last-child  { border-radius: 0 8px 0 0; }
.size-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}
.size-table tbody tr:last-child td { border-bottom: none; }
.size-table tbody tr:nth-child(even) { background: var(--sky-light); }
.size-table tbody tr:hover { background: var(--sky); }

/* ===== DEZEN SELECTION ===== */
.modal-dezen-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.dezen-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 8px 14px 8px 8px;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
  transition: all 0.2s;
}
.dezen-btn:hover {
  border-color: var(--sky-deep);
  background: var(--sky-light);
}
.dezen-btn.active {
  border-color: var(--sky-deep);
  background: var(--sky-light);
  color: var(--text-dark);
}
.dezen-swatch {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.dezen-btn.active .dezen-swatch {
  border-color: var(--sky-deep);
  box-shadow: 0 0 0 2px var(--sky-deep);
}
.modal-cta { display: flex; gap: 12px; }
.modal-add-btn {
  flex: 1;
  background: var(--sky-deep);
  color: var(--white);
  border: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(126,200,227,0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.modal-add-btn:hover {
  transform: translateY(-2px);
  background: var(--text-dark);
  box-shadow: 0 12px 32px rgba(126,200,227,0.45);
}
@media (max-width: 600px) {
  .modal-body { padding: 20px 20px 28px; }
  .modal-header { padding: 22px 20px 0; }
  .modal-header h2 { font-size: 18px; }
  .modal-detail-grid { grid-template-columns: 1fr; }
  .modal-cta { flex-direction: column; }
}

/* ===== INNER PAGE STYLES (about, contact, etc.) ===== */
.inner-content {
  background: var(--white);
  padding: 0 40px 80px;
}
.inner-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.story {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.story-block.reverse .story-text { order: 2; }
.story-block.reverse .story-visual { order: 1; }
.story-text h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.story-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 14px;
}
.story-text .story-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sky-light);
  color: var(--text-dark);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.story-visual {
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 60px var(--shadow), 0 0 0 1px var(--border);
  position: relative;
  overflow: hidden;
}
.story-visual .visual-inner {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 100px;
  position: relative;
  overflow: hidden;
}
.visual-inner.tone-sky { background: linear-gradient(145deg, var(--sky-light), var(--sky)); }
.visual-inner.tone-pink { background: linear-gradient(145deg, var(--pink-soft), var(--pink)); }
.visual-inner.tone-yellow { background: linear-gradient(145deg, var(--yellow), var(--yellow-warm)); }
.visual-inner.tone-sage { background: linear-gradient(145deg, var(--sage), var(--sage-deep)); }
.visual-inner.tone-peach { background: linear-gradient(145deg, var(--peach), var(--pink-soft)); }
.visual-inner .scene-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  background: rgba(255,255,255,0.85);
  padding: 6px 14px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.visual-inner .scene-emoji {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(45,80,119,0.15));
}
.values {
  background: var(--sky-light);
  padding: 72px 40px;
}
.values-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.values-header {
  text-align: center;
  margin-bottom: 50px;
}
.values-header h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.values-header p {
  font-size: 17px;
  color: var(--text-body);
  max-width: 580px;
  margin: 0 auto;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 8px 30px var(--shadow);
  transition: transform 0.3s ease;
}
.value-card:hover { transform: translateY(-4px); }
.value-card .v-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
}
.value-card:nth-child(2) .v-icon { background: var(--pink-soft); }
.value-card:nth-child(3) .v-icon { background: var(--yellow); }
.value-card:nth-child(4) .v-icon { background: var(--sage); }
.value-card h5 {
  font-family: 'Quicksand', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
}
.about-cta {
  background: var(--sky);
  padding: 72px 40px;
  text-align: center;
}
.about-cta h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.about-cta p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sky-deep);
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(126,200,227,0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.cta-btn:hover {
  transform: translateY(-2px);
  background: var(--text-dark);
  box-shadow: 0 12px 40px rgba(126,200,227,0.45);
}

/* Contact page */
.contact-layout {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
  background: var(--sky-light);
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 8px 40px var(--shadow);
}
.contact-form-wrap h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}
.form-group input, .form-group textarea {
  width: 100%;
  background: var(--sky-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--sky-deep);
  box-shadow: 0 0 0 3px rgba(126,200,227,0.18);
  background: var(--white);
}
.form-group textarea { min-height: 130px; }
.form-optional {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}
.contact-submit {
  width: 100%;
  background: var(--sky-deep);
  color: var(--white);
  border: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(126,200,227,0.35);
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.contact-submit:hover {
  transform: translateY(-2px);
  background: var(--text-dark);
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 4px 20px var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s ease;
}
.info-card:hover { transform: translateY(-3px); }
.info-card-icon {
  font-size: 28px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--sky-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-card:nth-child(3) .info-card-icon { background: var(--pink-soft); }
.info-card:nth-child(4) .info-card-icon { background: var(--yellow); }
.info-card-body h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-card-body p, .info-card-body a {
  font-size: 14px;
  color: var(--text-body);
  text-decoration: none;
  line-height: 1.5;
}
.info-card-body a:hover { color: var(--sky-deep); text-decoration: underline; }

/* Checkout page */
.checkout-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
  background: var(--sky-light);
}
.checkout-form-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 8px 40px var(--shadow);
  overflow: hidden;
}
.form-section {
  padding: 32px 36px;
  border-bottom: 1px solid var(--border);
}
.form-section:last-child { border-bottom: none; }
.form-section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-section-title .section-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sky-deep);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.form-field label .req { color: var(--sky-deep); margin-left: 2px; }
.form-field input, .form-field textarea {
  width: 100%;
  background: var(--sky-light);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-light); }
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--sky-deep);
  box-shadow: 0 0 0 3px rgba(126,200,227,0.18);
  background: var(--white);
}
.form-field textarea { min-height: 96px; }
.payment-options { display: flex; flex-direction: column; gap: 12px; }
.payment-card-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--sky-light);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.payment-card-label:hover { border-color: var(--sky-deep); background: var(--sky); }
.payment-card-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--sky-deep);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.payment-card-label:has(input:checked) { border-color: var(--sky-deep); background: var(--sky); }
.payment-text { display: flex; flex-direction: column; gap: 2px; }
.payment-text strong {
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.payment-text span { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.form-submit-section { padding: 28px 36px 32px; }
.submit-btn {
  width: 100%;
  background: var(--sky-deep);
  color: var(--white);
  border: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 17px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(126,200,227,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  background: var(--text-dark);
}
.submit-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 14px;
  line-height: 1.6;
}
.cart-summary-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 8px 40px var(--shadow);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.cart-summary-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--sky-light);
}
.cart-summary-header h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cart-summary-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 180px;
  justify-content: center;
}
.cart-empty-icon { font-size: 48px; opacity: 0.6; }
.cart-empty-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
}
.cart-empty-link {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--sky-deep);
  text-decoration: none;
  border: 2px solid var(--sky-deep);
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cart-empty-link:hover { background: var(--sky-light); }
.cart-summary-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  background: var(--sky-light);
}
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}
.info-note {
  background: var(--sky-light);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
  border-left: 3px solid var(--sky-deep);
  margin: 0 28px 28px;
}
.info-note strong { color: var(--text-dark); }

/* Tracking, privacy, uslovi, kako-kupiti generic */
.text-page-wrap {
  background: var(--sky-light);
  padding: 0 40px 80px;
}
.text-page-inner {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 48px;
}
.privacy-section, .uslovi-card, .tracking-card, .howto-content-wrap, .lookup-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px var(--shadow);
}
.privacy-section h3, .uslovi-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.privacy-section p, .uslovi-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 10px;
}
.privacy-section ul, .uslovi-card ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 820px) {
  .story-block, .story-block.reverse { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  .story-block.reverse .story-text { order: 2; }
  .story-block.reverse .story-visual { order: 1; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 60px; }
  .checkout-layout { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 60px; }
  .cart-summary-card { position: static; }
  .text-page-wrap { padding: 0 20px 60px; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-section { padding: 24px 20px; }
  .form-submit-section { padding: 20px 20px 24px; }
  .story { padding: 40px 20px 60px; }
  .values { padding: 56px 20px; }
  .about-cta { padding: 56px 20px; }
}

/* ===== CART ITEMS ===== */
.cart-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: border-color 0.2s;
}
.cart-qty-btn:hover { border-color: var(--sky-deep); }
.cart-qty-val {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}
.cart-remove-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.cart-remove-btn:hover { color: #e74c3c; background: #fdecea; }
.cart-item-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cart-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.cart-thumb-default { background: var(--sky-light); }
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-price {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--sky-deep);
  text-align: right;
}
.checkout-cart-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.checkout-cart-item:last-child { border-bottom: none; }
.cci-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 4px;
}
.cci-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cci-qty { font-size: 12px; color: var(--text-light); }
.cci-price { font-size: 13px; font-weight: 800; color: var(--sky-deep); }

/* ===== RESPONSIVE: desktop nav / mobile hamburger ===== */
@media (min-width: 769px) {
  .hamburger-btn { display: none; }
}
@media (max-width: 768px) {
  .top-bar-nav { display: none; }
}

/* ============================================= */
/* PRODUCT DETAIL (single-product) — iz product.html */
/* ============================================= */
.product-page-wrap {
  background: var(--sky-light);
  min-height: 60vh;
  padding: 48px 24px 80px;
}
.product-page-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.product-image-col {
  position: sticky;
  top: 100px;
}
.product-img-box {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  position: relative;
}
.product-info-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.product-page-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  text-transform: uppercase;
}
.product-page-title span { color: #c0548a; }
.product-page-title span.boy { color: var(--sky-deep); }
.product-page-title span.unisex { color: #b08a00; }

.pp-price {
  font-family: 'Quicksand', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--text-dark);
}
.pp-price span { font-size: 18px; font-weight: 700; color: var(--text-light); }

.product-intro-line {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  border-left: 4px solid var(--sky);
}

.pp-section-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 10px;
}

/* Dezen */
.pp-dezen-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pp-dezen-btn-rec {
  border: 2px solid #2D5077 !important;
  box-shadow: 0 0 0 2px #7EC8E3;
  background: #EEF8FD;
}
.pp-rec-inline {
  font-size: 10px;
  font-weight: 800;
  color: #2D5077;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 2px;
}

.pp-dezen-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 7px 14px 7px 7px;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
  transition: all 0.2s;
}
.pp-dezen-btn:hover, .pp-dezen-btn.active {
  border-color: var(--sky-deep);
  background: var(--sky-light);
  color: var(--text-dark);
}
.pp-dezen-swatch {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.pp-dezen-btn.active .pp-dezen-swatch { box-shadow: 0 0 0 2px var(--sky-deep); }

/* Sizes */
.pp-size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pp-size-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 10px 16px;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  transition: all 0.2s;
  min-width: 72px;
}
.pp-size-btn:hover, .pp-size-btn.active {
  border-color: var(--sky-deep);
  background: var(--sky-light);
}
.pp-size-btn .sl { font-size: 15px; font-weight: 800; color: var(--text-dark); }
.pp-size-btn .sa { font-size: 11px; font-weight: 600; color: var(--text-light); }
.pp-size-btn .sh { font-size: 10px; color: #aaa; }
.pp-size-btn.active .sa, .pp-size-btn.active .sh { color: var(--sky-deep); }

/* Size table */
.pp-size-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  margin-top: 12px;
}
.pp-size-table th {
  background: var(--sky-deep);
  color: var(--white);
  padding: 7px 12px;
  text-align: left;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.pp-size-table th:first-child { border-radius: 8px 0 0 0; }
.pp-size-table th:last-child  { border-radius: 0 8px 0 0; }
.pp-size-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}
.pp-size-table tbody tr:last-child td { border-bottom: none; }
.pp-size-table tbody tr:nth-child(even) { background: var(--sky-light); }

/* Material */
.pp-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pp-detail-card {
  background: var(--white);
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
}
.pp-detail-card h5 {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sky-deep);
  margin-bottom: 8px;
}
.pp-detail-card p, .pp-detail-card li {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-body);
}
.pp-detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pp-detail-card ul li::before { content: '· '; color: var(--sky-deep); font-weight: 700; }

/* CTA */
.pp-cta-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pp-add-btn {
  width: 100%;
  background: var(--sky-deep);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 16px 28px;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.pp-add-btn:hover { background: var(--text-dark); transform: scale(1.01); }
.pp-back-link {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
}
.pp-back-link a {
  color: var(--sky-deep);
  text-decoration: none;
  font-weight: 700;
}
.pp-back-link a:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .product-page-inner { grid-template-columns: 1fr; }
  .product-image-col { position: static; }
  .pp-detail-grid { grid-template-columns: 1fr; }
  .product-page-wrap { padding: 28px 16px 60px; }
}

/* ============================================================ */
/* OVERRIDE Astra/WooCommerce button stilova za custom dugmiće  */
/* ============================================================ */

/* Ikonica korpe u header-u */
.float-cart { padding: 0 !important; box-shadow: 0 4px 16px rgba(45,80,119,.18) !important; }
.float-cart svg { width: 24px !important; height: 24px !important; stroke: var(--text-dark) !important; fill: none !important; display: block !important; opacity: 1 !important; }

/* Ikonica korpe na karticama proizvoda */
.btn-cart { padding: 0 !important; background: var(--sky-deep) !important; color: #fff !important; box-shadow: none !important; min-width: 0 !important; }
.btn-cart:hover { background: var(--text-dark) !important; }
.btn-cart svg { stroke: currentColor !important; fill: none !important; display: block !important; }
.btn-details { box-shadow: none !important; }

/* Mini-korpa: +/- dugmići */
.cart-item-controls .cart-qty-btn {
  width: 30px !important; height: 30px !important; min-width: 0 !important;
  padding: 0 !important; margin: 0 !important; line-height: 1 !important;
  border: 2px solid var(--border) !important; border-radius: 50% !important;
  background: var(--white) !important; color: var(--text-dark) !important;
  box-shadow: none !important; cursor: pointer !important;
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  font-size: 18px !important; font-weight: 800 !important; font-family: 'Quicksand', sans-serif !important;
}
.cart-item-controls .cart-qty-btn:hover { border-color: var(--sky-deep) !important; background: #EAF6FB !important; }

/* Mini-korpa: dugme za uklanjanje (X) */
.cart-remove-btn {
  width: 28px !important; height: 28px !important; min-width: 0 !important;
  padding: 0 !important; line-height: 1 !important;
  background: transparent !important; color: var(--text-light) !important;
  border: 1px solid var(--border) !important; border-radius: 8px !important;
  box-shadow: none !important; cursor: pointer !important;
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  font-size: 14px !important; font-weight: 700 !important;
}
.cart-remove-btn:hover { color: #e8374a !important; border-color: #e8374a !important; background: #fff5f5 !important; }

/* ============================================================ */
/* CHECKOUT — stilizovanje stvarnog WooCommerce markup-a        */
/* ============================================================ */

/* sakrij duple WC naslove i polje države */
.checkout-form-card .woocommerce-billing-fields > h3,
.checkout-form-card .woocommerce-additional-fields > h3 { display: none !important; }
#billing_country_field { display: none !important; }

/* raspored polja: first/last u jednom redu, wide pun red */
.checkout-form-card .woocommerce-billing-fields__field-wrapper,
.checkout-form-card .woocommerce-additional-fields__field-wrapper {
  display: flex; flex-wrap: wrap; gap: 0 18px;
}
.checkout-form-card .form-row {
  width: 100%; float: none !important; clear: none !important;
  margin: 0 0 16px !important; padding: 0 !important; box-sizing: border-box;
}
.checkout-form-card .form-row-first,
.checkout-form-card .form-row-last { width: calc(50% - 9px); }
.checkout-form-card .form-row-wide,
.checkout-form-card .form-row.notes { width: 100%; }

/* labeli */
.checkout-form-card .form-row > label {
  display: block; font-family: 'Quicksand', sans-serif; font-weight: 700;
  font-size: 14px; color: var(--text-dark); margin-bottom: 7px;
}
.checkout-form-card .form-row label .required { color: #e8374a; text-decoration: none; border: 0; }
.checkout-form-card .form-row label .optional { color: var(--text-light); font-weight: 400; }

/* inputi */
.checkout-form-card .input-text,
.checkout-form-card textarea,
.checkout-form-card select {
  width: 100% !important; box-sizing: border-box;
  padding: 13px 15px !important;
  border: 2px solid var(--border) !important; border-radius: 12px !important;
  font-family: 'Nunito', sans-serif; font-size: 15px; color: var(--text-dark);
  background: #fff !important; box-shadow: none !important; line-height: 1.4;
}
.checkout-form-card textarea { min-height: 90px; resize: vertical; }
.checkout-form-card .input-text:focus,
.checkout-form-card textarea:focus,
.checkout-form-card select:focus { border-color: var(--sky-deep) !important; outline: none; }

/* način plaćanja — kartice */
.checkout-form-card #payment,
.checkout-form-card #payment .payment_methods {
  background: transparent !important; border: 0 !important; padding: 0 !important; margin: 0 !important;
}
.checkout-form-card ul.payment_methods { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.checkout-form-card .wc_payment_method {
  list-style: none; border: 2px solid var(--border); border-radius: 14px;
  padding: 14px 16px; margin: 0 0 12px !important; transition: border-color .2s, box-shadow .2s;
}
.checkout-form-card .wc_payment_method:hover { border-color: var(--sky-deep); }
.checkout-form-card .wc_payment_method > label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--text-dark); cursor: pointer; margin: 0;
}
.checkout-form-card .wc_payment_method > input[type="radio"] {
  width: 18px !important; height: 18px !important; min-width: 18px; accent-color: var(--sky-deep); margin: 0;
}
.checkout-form-card .wc_payment_method img { display: none; }
.checkout-form-card .payment_box {
  background: #f3f9fc !important; border-radius: 10px; padding: 12px 14px !important;
  margin: 10px 0 0 !important; font-size: 13px; color: var(--text-light);
}
.checkout-form-card .payment_box::before { display: none !important; }

/* dugme Pošalji porudžbinu */
.checkout-form-card #place_order,
.checkout-form-card .button.alt {
  width: 100% !important; margin-top: 10px !important; float: none !important;
  background: var(--sky-deep) !important; color: #fff !important; border: 0 !important;
  font-family: 'Quicksand', sans-serif !important; font-weight: 800 !important;
  font-size: 16px !important; text-transform: uppercase; letter-spacing: .5px;
  padding: 16px !important; border-radius: 50px !important; cursor: pointer;
  box-shadow: 0 6px 18px rgba(126,200,227,.45) !important;
}
.checkout-form-card #place_order:hover { background: var(--text-dark) !important; }

/* pregled korpe (desno) — tabela */
.cart-summary-card #order_review,
.cart-summary-card .woocommerce-checkout-review-order { width: 100%; overflow: hidden; }
.cart-summary-card .shop_table {
  width: 100% !important; border-collapse: collapse; table-layout: fixed;
  font-family: 'Nunito', sans-serif; font-size: 14px; margin: 0;
}
.cart-summary-card .shop_table th,
.cart-summary-card .shop_table td {
  padding: 11px 6px !important; text-align: left; border: 0 !important;
  border-bottom: 1px solid var(--border) !important; vertical-align: top;
  color: var(--text-dark); word-wrap: break-word; background: transparent !important;
}
.cart-summary-card .shop_table thead th {
  font-family: 'Quicksand', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 11px; letter-spacing: .5px; color: var(--text-light);
}
.cart-summary-card .shop_table .product-name { width: 66%; font-weight: 600; }
.cart-summary-card .shop_table .product-total,
.cart-summary-card .shop_table td.product-total,
.cart-summary-card .shop_table th.product-total { text-align: right; white-space: nowrap; width: 34%; font-weight: 700; }
.cart-summary-card .shop_table .product-quantity,
.cart-summary-card .product-name .product-quantity { color: var(--text-light); font-weight: 400; }
.cart-summary-card .cart-subtotal th,
.cart-summary-card .cart-subtotal td,
.cart-summary-card .order-total th,
.cart-summary-card .order-total td { font-family: 'Quicksand', sans-serif; }
.cart-summary-card .order-total th { font-weight: 800; font-size: 15px; }
.cart-summary-card .order-total td,
.cart-summary-card .order-total .amount { color: var(--sky-deep) !important; font-weight: 800; font-size: 18px; text-align: right; }

/* WC obaveštenja (greške) — zaobljena */
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
  border-radius: 12px; border: 1px solid var(--border); margin-bottom: 18px;
}

/* responsive */
@media (max-width: 600px) {
  .checkout-form-card .form-row-first,
  .checkout-form-card .form-row-last { width: 100%; }
}

/* poravnanje radio + label u načinu plaćanja */
.checkout-form-card .wc_payment_method { display: flex; flex-wrap: wrap; align-items: center; column-gap: 10px; }
.checkout-form-card .wc_payment_method > label { flex: 1 1 auto; }
.checkout-form-card .wc_payment_method .payment_box { flex: 0 0 100%; }
/* sakrij "(opciono)"/"(optional)" suvišne oznake u checkout formi radi čistoće */
.checkout-form-card .woocommerce-input-wrapper { display: block; }

/* ============================================================ */
/* CHECKOUT FIX — poništi WC float/width i centriranje          */
/* ============================================================ */

/* WC podrazumevano floatuje #customer_details i #order_review — poništi */
.checkout-layout #customer_details,
.checkout-layout #order_review {
  float: none !important; width: 100% !important; margin: 0 !important;
}

/* labeli levo poravnati */
.checkout-form-card,
.checkout-form-card .form-section,
.checkout-form-card .form-row,
.checkout-form-card .form-row > label,
.checkout-form-card .woocommerce-billing-fields,
.checkout-form-card .woocommerce-additional-fields { text-align: left !important; }

/* desna kartica: ne seci sadržaj, dodaj unutrašnji razmak */
.cart-summary-card { overflow: visible !important; }
.cart-summary-card #order_review { padding: 22px 26px 6px !important; box-sizing: border-box; }
.cart-summary-card .info-note { margin: 0 26px 24px !important; }

/* tabela: garantovano staje u karticu */
.cart-summary-card .shop_table { table-layout: fixed !important; width: 100% !important; }
.cart-summary-card .shop_table .product-name { width: 60% !important; }
.cart-summary-card .shop_table .product-total { width: 40% !important; white-space: nowrap; }
.cart-summary-card .woocommerce-Price-amount { white-space: nowrap; }

/* ============================================================ */
/* CHECKOUT — širi layout, šira polja, manje prelamanja imena   */
/* ============================================================ */

/* širi layout (bliže ivicama) + šira desna kolona */
.checkout-layout {
  max-width: 1600px !important;
  grid-template-columns: 1fr 440px !important;
  gap: 36px !important;
  padding: 56px 48px 80px !important;
}

/* labeli garantovano levo + blok */
.checkout-form-card label {
  display: block !important;
  text-align: left !important;
  width: 100% !important;
  float: none !important;
}

/* inputi popunjavaju celu kolonu */
.checkout-form-card .woocommerce-input-wrapper { display: block !important; width: 100% !important; }
.checkout-form-card input.input-text,
.checkout-form-card textarea,
.checkout-form-card select {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* korpa: ime proizvoda dobija više prostora → manje prelamanja */
.cart-summary-card .shop_table .product-name { width: 66% !important; }
.cart-summary-card .shop_table .product-total { width: 34% !important; }

/* na vrlo širokim ekranima — još šire */
@media (min-width: 1700px) {
  .checkout-layout { max-width: 1760px !important; }
}

/* ============================================================ */
/* CHECKOUT LAYOUT — bulletproof grid (pobeđuje Astra grid)     */
/* ============================================================ */

/* 2 kolone preko grid-a (ne float) */
.checkout-form-card .woocommerce-billing-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px 20px !important;
}
.checkout-form-card .woocommerce-additional-fields__field-wrapper { display: block !important; }

/* svaki red: label iznad, input ispod, oba puna širina */
.checkout-form-card .form-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.checkout-form-card .woocommerce-additional-fields .form-row,
.checkout-form-card #order_comments_field { margin-top: 18px !important; }

/* puna širina redovi */
.checkout-form-card .form-row-wide,
.checkout-form-card #billing_address_1_field,
.checkout-form-card .form-row.notes { grid-column: 1 / -1 !important; }

/* sakrij državu potpuno iz grid toka */
.checkout-form-card #billing_country_field { display: none !important; }

/* label levo, iznad */
.checkout-form-card .form-row > label {
  order: -1 !important;
  text-align: left !important;
  align-self: flex-start !important;
  width: 100% !important;
  margin: 0 0 7px 0 !important;
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: var(--text-dark) !important;
}

/* input puna širina reda */
.checkout-form-card .woocommerce-input-wrapper { display: block !important; width: 100% !important; }
.checkout-form-card input.input-text,
.checkout-form-card textarea,
.checkout-form-card select {
  width: 100% !important; max-width: 100% !important; box-sizing: border-box !important;
}

/* responsive: jedna kolona na uskom */
@media (max-width: 640px) {
  .checkout-form-card .woocommerce-billing-fields__field-wrapper { grid-template-columns: 1fr !important; }
}

/* korpa: varijacija (npr. Ruže, Mini) manjim fontom, ispod naziva */
.cart-summary-card .product-name { font-size: 13.5px !important; line-height: 1.4 !important; }
.poncho-cart-variation { display: block; font-size: 11.5px; color: var(--text-light); font-weight: 400; margin-top: 1px; }

/* ============================================================ */
/* MINI-KORPA — stavke levo i pune širine (prazno ostaje centar) */
/* ============================================================ */
.cart-sidebar .cart-items {
  align-items: stretch !important;
  justify-content: flex-start !important;
}
.cart-sidebar .cart-item { width: 100% !important; text-align: left !important; }
.cart-sidebar .cart-item-info,
.cart-sidebar .cart-item-name,
.cart-sidebar .cart-item-price { text-align: left !important; }
/* prazno stanje i dalje centrirano */
.cart-sidebar .cart-empty { margin: auto !important; align-self: center !important; text-align: center !important; }

/* checkout pregled + /cart/ strana: naziv proizvoda levo */
.cart-summary-card .shop_table td.product-name,
.cart-summary-card .shop_table th.product-name,
.woocommerce-cart .shop_table td.product-name,
.woocommerce-cart .shop_table th.product-name { text-align: left !important; }

/* ============================================================ */
/* TABELA VELIČINA — čist okvir (poništi Astra border na ćelijama) */
/* ============================================================ */
.pp-size-table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}
.pp-size-table th,
.pp-size-table td {
  border: 0 !important;
  border-bottom: 1px solid var(--border) !important;
}
.pp-size-table thead th { border-bottom: 0 !important; }
.pp-size-table th:first-child,
.pp-size-table th:last-child { border-radius: 0 !important; }
.pp-size-table tbody tr:last-child td { border-bottom: 0 !important; }

/* ============================================================ */
/* VIBER FAB — direktan link (zamena za WhatsApp/Viber expand)  */
/* ============================================================ */
.viber-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  height: 56px; padding: 0 20px 0 16px;
  display: inline-flex; align-items: center; gap: 10px;
  background: #7360F2; color: #fff !important;
  border-radius: 50px; text-decoration: none !important;
  box-shadow: 0 8px 22px rgba(115,96,242,.45);
  font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 15px;
  transition: transform .2s, box-shadow .2s;
}
.viber-fab:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 26px rgba(115,96,242,.55); }
.viber-fab svg { width: 26px; height: 26px; stroke: #fff; }
.viber-fab-label { line-height: 1; }
@media (max-width: 600px) {
  .viber-fab { padding: 0; width: 56px; justify-content: center; }
  .viber-fab-label { display: none; }
}

/* Hero ikonica pončoa (zamena za emoji) */
.hero-emoji-display img { width: 150px; height: auto; display: block; margin: 0 auto; }
@media (max-width: 600px) { .hero-emoji-display img { width: 110px; } }

/* ============================================================ */
/* Dodatne izmene: sticky header, checkout mobile, viber, toast */
/* ============================================================ */

/* 1) Header fiksiran pri skrolovanju */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 2px 14px rgba(45,80,119,0.08);
}

/* 2) Checkout na mobilnom — jedna kolona (inače 440px kolona izgura sadržaj) */
@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 28px 16px 64px !important;
    max-width: 100% !important;
  }
  .cart-summary-card { position: static !important; }
}

/* 3) Sakrij Viber dugme kad je korpa (sidebar) otvorena */
body:has(#cart-sidebar.active) .viber-fab {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* 4) Toast "Dodato u korpu" — gore, da ne stoji preko "Nastavi ka plaćanju" */
.toast {
  top: 84px !important;
  bottom: auto !important;
  z-index: 9999 !important;
  transform: translateX(-50%) translateY(-140px);
}
.toast.show { transform: translateX(-50%) translateY(0) !important; }

/* 5) Slika u "Zašto Ponchomania" (umesto emojija + teksta) */
.why-visual img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
}

/* ============================================================ */
/* ORDER RECEIVED / HVALA stranica (/checkout/order-received/)  */
/* ============================================================ */
.woocommerce-order { max-width: 920px; margin: 0 auto; padding: 40px 20px 70px; }

/* "Hvala! Vaša porudžbina je primljena." */
.woocommerce-order .woocommerce-thankyou-order-received {
  background: var(--sky-light);
  border: 2px solid var(--sky-deep);
  border-radius: 18px;
  padding: 22px 26px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 28px;
}
.woocommerce-order .woocommerce-thankyou-order-received::before { content: "✅ "; }

/* pregled (broj/datum/email/ukupno/plaćanje) — pilule */
.woocommerce-order ul.order_details {
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px;
  margin: 0 0 8px; padding: 0; border: 0 !important; border-radius: 0 !important;
}
.woocommerce-order ul.order_details li {
  flex: 1 1 150px;
  background: #fff;
  border: 2px solid var(--border) !important;
  border-radius: 14px;
  padding: 14px 16px !important;
  margin: 0 !important;
  font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 800;
  color: var(--text-dark); text-transform: none;
}
.woocommerce-order ul.order_details li::after { display: none !important; }
.woocommerce-order ul.order_details li strong {
  display: block; font-family: 'Quicksand', sans-serif; font-size: 10px; font-weight: 800;
  letter-spacing: .6px; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px;
}

/* naslovi sekcija */
.woocommerce-order h2,
.woocommerce-order .woocommerce-order-details__title,
.woocommerce-order .woocommerce-column__title {
  font-family: 'Quicksand', sans-serif; font-weight: 900; text-transform: uppercase;
  font-size: 20px; color: var(--text-dark); margin: 30px 0 14px;
}

/* tabela porudžbine */
.woocommerce-order table.order_details {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  font-family: 'Nunito', sans-serif; margin: 0;
}
.woocommerce-order table.order_details th,
.woocommerce-order table.order_details td {
  padding: 14px 18px !important; border: 0 !important;
  border-bottom: 1px solid var(--border) !important; text-align: left; color: var(--text-dark);
}
.woocommerce-order table.order_details thead th {
  background: var(--sky-deep); color: #fff; font-family: 'Quicksand', sans-serif;
  font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: .5px;
}
.woocommerce-order table.order_details td.product-total,
.woocommerce-order table.order_details th.product-total,
.woocommerce-order table.order_details tfoot th:last-child,
.woocommerce-order table.order_details tfoot td:last-child { text-align: right; white-space: nowrap; }
.woocommerce-order table.order_details tfoot th { font-family: 'Quicksand', sans-serif; font-weight: 800; }
.woocommerce-order table.order_details tfoot tr:last-child th,
.woocommerce-order table.order_details tfoot tr:last-child td {
  font-size: 17px; color: var(--sky-deep); font-weight: 800; border-bottom: 0 !important;
}
.woocommerce-order table.order_details a { color: var(--text-dark); text-decoration: none; font-weight: 700; }
.woocommerce-order table.order_details .wc-item-meta { margin: 4px 0 0; padding: 0; list-style: none; font-size: 13px; color: var(--text-light); }
.woocommerce-order table.order_details .wc-item-meta li { margin: 0; }

/* adrese — kartice */
.woocommerce-order .woocommerce-customer-details .woocommerce-columns--addresses {
  display: flex; flex-wrap: wrap; gap: 18px; margin: 6px 0 0;
}
.woocommerce-order .woocommerce-customer-details .woocommerce-column {
  flex: 1 1 280px; background: #fff; border: 2px solid var(--border);
  border-radius: 16px; padding: 18px 22px; margin: 0;
}
.woocommerce-order .woocommerce-customer-details address {
  font-family: 'Nunito', sans-serif; font-style: normal; color: var(--text-body);
  line-height: 1.7; border: 0; padding: 0;
}

@media (max-width: 640px) {
  .woocommerce-order ul.order_details { flex-direction: column; }
}

/* ============================================================ */
/* FIX: način plaćanja — radio i tekst u istom redu             */
/* ============================================================ */
.checkout-form-card .wc_payment_method {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  column-gap: 10px !important;
}
.checkout-form-card .wc_payment_method > input[type="radio"] {
  width: 18px !important; height: 18px !important; min-width: 18px !important; margin: 0 !important;
}
.checkout-form-card .wc_payment_method > label {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;        /* poništi globalno label width:100% */
  flex: 1 1 auto !important;
  margin: 0 !important;
}
.checkout-form-card .wc_payment_method .payment_box { flex: 0 0 100% !important; width: 100% !important; }

/* ============================================================ */
/* ORDER RECEIVED — doterivanje adresa + veće vrednosti          */
/* ============================================================ */

/* prikaži samo "Adresa za dostavu" (naplata je ista adresa, sakrij je) */
.woocommerce-order .woocommerce-column--billing-address { display: none !important; }
.woocommerce-order .woocommerce-customer-details .woocommerce-columns--addresses { display: block !important; }
.woocommerce-order .woocommerce-customer-details .woocommerce-column--shipping-address {
  max-width: 520px; margin: 0;
}

/* ukloni Astra okvir/box oko naslova kartice adrese */
.woocommerce-order .woocommerce-customer-details .woocommerce-column__title,
.woocommerce-order .woocommerce-customer-details h2,
.woocommerce-order .woocommerce-customer-details h3 {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 0 12px !important;
}

/* veće vrednosti u pilulama pregleda (broj porudžbine, email, ukupno...) */
.woocommerce-order ul.order_details li { font-size: 18px !important; }

/* ============================================================ */
/* ORDER RECEIVED — fix: adresa levo + vrednosti veće od labela  */
/* ============================================================ */

/* adresa za dostavu poravnata levo (poništi Astra float) */
.woocommerce-order .woocommerce-customer-details .woocommerce-column--shipping-address {
  float: none !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 520px;
}

/* pilule: labela (običan tekst) mala/uppercase, VREDNOST (<strong>) velika */
.woocommerce-order ul.order_details li {
  font-family: 'Quicksand', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .6px !important;
  text-transform: uppercase !important;
  color: var(--text-light) !important;
}
.woocommerce-order ul.order_details li strong {
  display: block !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--text-dark) !important;
  margin: 6px 0 0 !important;
}

/* Hero: sakrij strelice na mobilnom (upadale u dugme) */
@media (max-width: 600px) {
  .scroll-chevrons { display: none !important; }
}
/* Sidrenje "Pogledaj kolekciju" — offset za sticky header */
#kolekcija { scroll-margin-top: 90px; }

/* Veći krugovi dezena na strani proizvoda (bolje se vidi slika) */
.pp-dezen-swatch { width: 38px !important; height: 38px !important; }
.pp-dezen-btn { gap: 9px !important; padding: 6px 16px 6px 6px !important; }

/* ============================================================ */
/* RECENZIJE (product strana)                                   */
/* ============================================================ */

/* mini ocena ispod cene */
.pp-rating-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin: -6px 0 18px; text-decoration: none;
}
.pp-rating-link .pp-rating-count { font-family: 'Nunito', sans-serif; font-size: 13px; color: var(--text-light); }
.pp-rating-link:hover .pp-rating-count { color: var(--sky-deep); }
.pp-rating-zero { color: #d8e3ec; }

/* sekcija */
.pp-reviews-section { background: var(--sky-light); padding: 50px 20px 60px; }
.pp-reviews-inner { max-width: 820px; margin: 0 auto; }
#reviews { scroll-margin-top: 90px; }
.pp-reviews-title {
  font-family: 'Quicksand', sans-serif; font-weight: 900; text-transform: uppercase;
  font-size: 24px; color: var(--text-dark); margin: 0 0 24px;
}
/* WC-ov sopstveni naslov sakrij (imamo svoj) */
.pp-reviews-section .woocommerce-Reviews-title { display: none; }

/* lista recenzija */
.pp-reviews-section .commentlist { list-style: none; margin: 0 0 28px; padding: 0; }
.pp-reviews-section .commentlist li.review,
.pp-reviews-section .commentlist li.comment {
  background: #fff; border: 2px solid #E8F0F5; border-radius: 16px;
  padding: 18px 20px; margin: 0 0 14px; list-style: none;
}
.pp-reviews-section .comment_container { display: flex; gap: 14px; }
.pp-reviews-section .commentlist .avatar {
  width: 48px; height: 48px; border-radius: 50%; position: static; margin: 0; float: none;
}
.pp-reviews-section .comment-text { flex: 1; }
.pp-reviews-section .meta { font-family: 'Quicksand', sans-serif; color: var(--text-dark); margin: 6px 0 8px; font-size: 14px; }
.pp-reviews-section .meta time { color: var(--text-light); font-weight: 400; }
.pp-reviews-section .description { font-family: 'Nunito', sans-serif; color: var(--text-body); line-height: 1.6; }
.pp-reviews-section .star-rating { color: #F4B740; }

/* forma za recenziju */
.pp-reviews-section #respond { background: #fff; border: 2px solid #E8F0F5; border-radius: 18px; padding: 22px 24px; }
.pp-reviews-section .comment-reply-title {
  font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 18px; color: var(--text-dark);
  display: block; margin-bottom: 14px;
}
.pp-reviews-section .comment-form label {
  display: block; font-family: 'Quicksand', sans-serif; font-weight: 700;
  font-size: 14px; color: var(--text-dark); margin-bottom: 6px;
}
.pp-reviews-section .comment-form input[type="text"],
.pp-reviews-section .comment-form input[type="email"],
.pp-reviews-section .comment-form textarea {
  width: 100%; box-sizing: border-box; padding: 12px 15px;
  border: 2px solid var(--border); border-radius: 12px;
  font-family: 'Nunito', sans-serif; font-size: 15px; background: #fff; color: var(--text-dark);
}
.pp-reviews-section .comment-form input:focus,
.pp-reviews-section .comment-form textarea:focus { border-color: var(--sky-deep); outline: none; }
.pp-reviews-section .comment-form p { margin: 0 0 16px; }
.pp-reviews-section .comment-form-rating .stars a { color: #F4B740; }
.pp-reviews-section #respond .form-submit input,
.pp-reviews-section #respond button {
  background: var(--sky-deep) !important; color: #fff !important; border: 0 !important;
  font-family: 'Quicksand', sans-serif !important; font-weight: 800 !important; font-size: 15px !important;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 14px 32px !important; border-radius: 50px !important; cursor: pointer; box-shadow: 0 6px 18px rgba(126,200,227,.4) !important;
}
.pp-reviews-section #respond .form-submit input:hover { background: var(--text-dark) !important; }

/* ============================================================ */
/* Product strana: manja cena, dostava besplatna, mobile fit    */
/* ============================================================ */
.pp-price { font-size: 24px !important; }
.pp-price span { font-size: 16px !important; }
.pp-free-ship { font-family: 'Nunito', sans-serif; font-size: 13px; color: var(--text-light); margin: 5px 0 0; }
/* ocena premeštena ispod CTA */
.product-info-col .pp-rating-link { margin: 16px 0 4px !important; }

@media (max-width: 700px) {
  /* manja slika da u istom ekranu stane i dezen */
  .product-img-box { aspect-ratio: auto !important; height: 290px !important; }
  .product-image-col > p { display: none; }       /* "Fotografija proizvoda" sakrij na mobilnom */
  .product-page-inner { gap: 14px !important; }
  .pp-price { font-size: 22px !important; }
  .pp-section-label { margin-top: 6px !important; }
}

/* Naslov + cena + dostava zbijeni zajedno (gap kolone se odnosi na ceo blok) */
.pp-head { display: flex; flex-direction: column; gap: 4px; }
.pp-head .pp-free-ship { margin: 0 !important; }

/* Cena ista i kad se izabere veličina (WC ubaci <span>-ove — nek nasledi veličinu/boju) */
.pp-price span { font-size: inherit !important; color: inherit !important; font-weight: inherit !important; }

/* Hero Instagram dugme (ispod sličice pončoa) */
.hero-ig-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 16px auto 4px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff !important; text-decoration: none !important;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 14px;
  padding: 10px 22px; border-radius: 50px;
  box-shadow: 0 6px 18px rgba(220,39,67,.32);
  transition: transform .2s, box-shadow .2s;
}
.hero-ig-btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 22px rgba(220,39,67,.42); }
.hero-ig-btn svg { width: 18px; height: 18px; }
