/**
 * YAZ Theme — Demo v3 UI (header, footer, homepage sections, loader)
 * Hero styles remain in pro-ui.css — untouched.
 */

/* ===== Loader & progress ===== */
.yaz-v3-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yaz-bg, #FDFCFB);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.yaz-v3-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.yaz-v3-loader__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.yaz-v3-brand-logo,
.yaz-v3-loader__logo {
  width: auto;
  max-width: 180px;
  max-height: 80px;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.yaz-v3-loader__logo,
.yaz-v3-loader .yaz-v3-brand-logo {
  animation: yazV3LoaderPulse 1.2s ease-in-out infinite;
}

.yaz-v3-brand-logo--header {
  max-height: 44px;
  max-width: 128px;
}

.yaz-v3-brand-logo--footer {
  max-height: 56px;
  max-width: 150px;
}

.yaz-v3-loader__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--yaz-heading, #3D4443);
  letter-spacing: 0.15em;
}

@keyframes yazV3LoaderPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}

.yaz-v3-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--yaz-accent, #E68AA8) 0%, #C9A5E0 50%, #E5EEF5 100%);
  box-shadow: 0 0 12px rgba(230, 138, 168, 0.45);
  transition: width 0.15s ease-out;
}

/* ===== Top bar ===== */
.yaz-v3-topbar {
  background: var(--yaz-heading, #3D4443);
  color: #fff;
  padding: 0.65rem 0;
  font-size: 0.78rem;
  overflow: hidden;
}

.yaz-v3-marquee {
  display: flex;
  gap: 3rem;
  width: max-content;
  white-space: nowrap;
  animation: yazV3Marquee 30s linear infinite;
}

.yaz-v3-marquee span {
  letter-spacing: 0.1em;
  font-weight: 400;
}

.yaz-v3-marquee__sep {
  opacity: 0.4;
}

@keyframes yazV3Marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* ===== Header ===== */
.yaz-v3-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 252, 251, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.yaz-v3-header.is-scrolled {
  background: rgba(253, 252, 251, 0.98);
  border-bottom-color: var(--yaz-border, #F0EDEA);
  box-shadow: 0 4px 24px rgba(61, 68, 67, 0.05);
}

.yaz-v3-header__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.yaz-v3-header__brand {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.yaz-v3-header__logo-link,
.yaz-v3-brand-logo-link,
.yaz-v3-mobile-nav__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.yaz-v3-header__logo-link:hover,
.yaz-v3-mobile-nav__logo-link:hover {
  transform: scale(1.05);
}

.yaz-v3-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.yaz-v3-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.yaz-v3-menu a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--yaz-text, #6B7271);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.yaz-v3-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--yaz-accent, #E68AA8);
  transition: width 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.yaz-v3-menu a:hover {
  color: var(--yaz-accent, #E68AA8);
}

.yaz-v3-menu .current-menu-item > a,
.yaz-v3-menu .current_page_item > a {
  color: var(--yaz-heading, #3D4443);
}

.yaz-v3-menu a:hover::after,
.yaz-v3-menu .current-menu-item > a::after,
.yaz-v3-menu .current_page_item > a::after {
  width: 100%;
}

.yaz-v3-header__actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}

.yaz-v3-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--yaz-heading, #3D4443);
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.yaz-v3-icon-btn svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.yaz-v3-icon-btn--wishlist svg {
  width: 18px;
  height: 18px;
}

.yaz-v3-icon-btn:hover {
  color: var(--yaz-accent, #E68AA8);
  transform: translateY(-2px);
}

.yaz-v3-icon-btn:hover svg {
  animation: yazV3IconWiggle 0.5s ease;
}

@keyframes yazV3IconWiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

.yaz-v3-icon-btn__badge {
  position: absolute;
  top: -1px;
  inset-inline-start: -1px;
  width: 17px;
  height: 17px;
  min-width: 17px;
  max-width: 17px;
  padding: 0;
  border-radius: 50%;
  background: var(--yaz-accent, #E68AA8);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  box-sizing: border-box;
  pointer-events: none;
}

.yaz-v3-icon-btn__badge.is-double {
  font-size: 0.5rem;
  letter-spacing: -0.04em;
}

.yaz-v3-icon-btn__badge--animate {
  animation: yazV3BadgePulse 2s ease-in-out infinite;
}

@keyframes yazV3BadgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(230, 138, 168, 0.6); }
  50% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(230, 138, 168, 0); }
}

.yaz-v3-desktop-only {
  display: inline-flex;
}

.yaz-v3-mobile-only {
  display: none;
}

/* Mobile menu button */
.yaz-v3-mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1100;
  flex-shrink: 0;
}

.yaz-v3-mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--yaz-heading, #3D4443);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.yaz-v3-mobile-menu-btn.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.yaz-v3-mobile-menu-btn.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.yaz-v3-mobile-menu-btn.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.yaz-v3-mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(61, 68, 67, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.yaz-v3-mobile-nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.yaz-v3-mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 1050;
  width: min(400px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: var(--yaz-white, #fff);
  box-shadow: -20px 0 60px rgba(61, 68, 67, 0.15);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.yaz-v3-mobile-nav.is-active {
  right: 0;
}

.yaz-v3-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--yaz-border, #F0EDEA);
}

.yaz-v3-mobile-nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--yaz-heading, #3D4443);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.yaz-v3-mobile-nav__close:hover {
  background: var(--yaz-bg, #FDFCFB);
  transform: rotate(90deg);
}

.yaz-v3-mobile-nav__close svg {
  width: 20px;
  height: 20px;
}

.yaz-v3-mobile-nav__body {
  flex: 1;
  padding: 2rem 1.75rem;
}

.yaz-v3-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.yaz-v3-mobile-menu li {
  border-bottom: 1px solid var(--yaz-border, #F0EDEA);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.yaz-v3-mobile-nav.is-active .yaz-v3-mobile-menu li {
  opacity: 1;
  transform: translateX(0);
}

.yaz-v3-mobile-nav.is-active .yaz-v3-mobile-menu li:nth-child(1) { transition-delay: 0.15s; }
.yaz-v3-mobile-nav.is-active .yaz-v3-mobile-menu li:nth-child(2) { transition-delay: 0.2s; }
.yaz-v3-mobile-nav.is-active .yaz-v3-mobile-menu li:nth-child(3) { transition-delay: 0.25s; }
.yaz-v3-mobile-nav.is-active .yaz-v3-mobile-menu li:nth-child(4) { transition-delay: 0.3s; }
.yaz-v3-mobile-nav.is-active .yaz-v3-mobile-menu li:nth-child(5) { transition-delay: 0.35s; }

.yaz-v3-mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--yaz-heading, #3D4443);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.3s ease, padding 0.3s ease;
}

.yaz-v3-mobile-menu a:hover,
.yaz-v3-mobile-menu a.is-active {
  color: var(--yaz-accent, #E68AA8);
  padding-inline-start: 8px;
}

.yaz-v3-mobile-menu a svg {
  width: 16px;
  height: 16px;
  color: var(--yaz-text-muted, #A8AEAD);
  transition: transform 0.3s ease, color 0.3s ease;
}

.yaz-v3-mobile-menu a:hover svg {
  color: var(--yaz-accent, #E68AA8);
  transform: translateX(-4px);
}

.yaz-v3-mobile-nav__footer {
  padding: 1.5rem 1.75rem 2rem;
  border-top: 1px solid var(--yaz-border, #F0EDEA);
  background: linear-gradient(180deg, transparent, rgba(230, 138, 168, 0.03));
}

.yaz-v3-mobile-nav__tagline {
  margin: 0 0 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--yaz-accent, #E68AA8);
  letter-spacing: 0.05em;
  text-align: center;
}

.yaz-v3-mobile-nav__social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.yaz-v3-mobile-nav__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yaz-bg, #FDFCFB);
  color: var(--yaz-heading, #3D4443);
  transition: all 0.3s ease;
}

.yaz-v3-mobile-nav__social a:hover {
  background: var(--yaz-accent, #E68AA8);
  color: #fff;
  transform: translateY(-2px);
}

.yaz-v3-mobile-nav__social svg {
  width: 16px;
  height: 16px;
}

body.yaz-v3-menu-open {
  overflow: hidden;
}

.yaz-v3-search-panel {
  border-top: 1px solid var(--yaz-border, #F0EDEA);
  background: rgba(253, 252, 251, 0.98);
}

.yaz-v3-search-panel__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0.5rem 2.5rem 0.65rem;
}

.yaz-v3-search-panel .search-form,
.yaz-v3-search-panel form {
  display: flex;
  gap: 0.75rem;
}

.yaz-v3-search-panel input[type="search"],
.yaz-v3-search-panel input[type="text"] {
  flex: 1;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--yaz-border, #F0EDEA);
  border-radius: 999px;
  font-family: 'Cairo', sans-serif;
  font-size: 0.9rem;
  background: #fff;
}

/* ===== Reveal ===== */
.yaz-v3-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.yaz-v3-reveal--delay-1 { transition-delay: 0.1s; }
.yaz-v3-reveal--delay-2 { transition-delay: 0.2s; }
.yaz-v3-reveal--delay-3 { transition-delay: 0.3s; }
.yaz-v3-reveal--delay-4 { transition-delay: 0.4s; }

/* ===== Home sections ===== */
.yaz-v3-home {
  overflow: hidden;
}

#yaz-collections {
  scroll-margin-top: 6rem;
}

.yaz-v3-section {
  max-width: 1360px;
  margin: 7rem auto 0;
  padding: 0 2.5rem;
}

.yaz-v3-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.yaz-v3-eyebrow {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--yaz-accent, #E68AA8);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.yaz-v3-section__header h2 {
  margin: 0 0 1rem;
  font-family: 'Cairo', sans-serif;
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--yaz-heading, #3D4443);
}

.yaz-v3-section__header p {
  margin: 0 auto;
  max-width: 520px;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: #A8AEAD;
}

.yaz-v3-section__divider {
  width: 40px;
  height: 1px;
  margin: 1.5rem auto 0;
  background: var(--yaz-accent, #E68AA8);
}

.yaz-v3-reveal.is-visible .yaz-v3-section__divider {
  animation: yazV3DividerGrow 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes yazV3DividerGrow {
  from { width: 0; }
  to { width: 40px; }
}

/* Collections */
.yaz-v3-collections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.yaz-v3-collection {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 5/6;
  padding: 3rem;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease;
}

.yaz-v3-collection::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(61, 68, 67, 0.55) 100%);
}

.yaz-v3-collection:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(61, 68, 67, 0.15);
}

.yaz-v3-collection--pink {
  background: linear-gradient(160deg, #FDF0F4 0%, #F8E2EA 50%, #F0D5E0 100%);
}

.yaz-v3-collection--blue {
  background: linear-gradient(160deg, #EEF4F8 0%, #DDE8F0 50%, #C9DBE5 100%);
}

.yaz-v3-collection--has-image.yaz-v3-collection--pink,
.yaz-v3-collection--has-image.yaz-v3-collection--blue {
  background: #3D4443;
}

.yaz-v3-collection--has-image::before {
  background: linear-gradient(180deg, rgba(61, 68, 67, 0.15) 0%, rgba(61, 68, 67, 0.72) 100%);
}

.yaz-v3-collection--has-image:hover::before {
  background: linear-gradient(180deg, rgba(61, 68, 67, 0.25) 0%, rgba(61, 68, 67, 0.82) 100%);
}

.yaz-v3-collection__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.yaz-v3-collection--has-image:hover .yaz-v3-collection__photo {
  transform: scale(1.06);
}

.yaz-v3-collection__visual {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  opacity: 0.35;
}

.yaz-v3-collection__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.yaz-v3-collection__label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.yaz-v3-collection__title {
  display: block;
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.yaz-v3-collection__text {
  display: block;
  font-size: 0.88rem;
  font-weight: 300;
  opacity: 0;
  max-width: 320px;
  margin-bottom: 1.5rem;
  transition: opacity 0.5s ease;
}

.yaz-v3-collection:hover .yaz-v3-collection__text {
  opacity: 0.9;
}

.yaz-v3-collection__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 0.35rem;
}

/* Products */
.yaz-v3-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.yaz-v3-product {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.yaz-v3-product:hover {
  transform: translateY(-6px);
}

.yaz-v3-product__media {
  position: relative;
  aspect-ratio: 4/5;
  margin-bottom: 1.25rem;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(160deg, #FBF7F4 0%, #F3EEE8 100%);
}

.yaz-v3-product__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(230, 138, 168, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.yaz-v3-product:hover .yaz-v3-product__media::before {
  opacity: 1;
}

.yaz-v3-product__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.yaz-v3-product__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.yaz-v3-product:hover .yaz-v3-product__img {
  transform: scale(1.05);
}

.yaz-v3-product__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  color: var(--yaz-accent, #E68AA8);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(61, 68, 67, 0.06);
  transform: translateY(-4px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.yaz-v3-product:hover .yaz-v3-product__badge {
  transform: translateY(0) scale(1.05);
}

.yaz-v3-product__wishlist {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yaz-heading, #3D4443);
  cursor: pointer;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.yaz-v3-product:hover .yaz-v3-product__wishlist {
  opacity: 1;
  transform: translateX(0);
}

.yaz-v3-product__wishlist:hover {
  color: var(--yaz-accent, #E68AA8);
  transform: scale(1.1);
}

.yaz-v3-product__quick-add {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  padding: 0.85rem;
  border: none;
  border-radius: 4px;
  background: var(--yaz-heading, #3D4443);
  color: #fff;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}

.yaz-v3-product:hover .yaz-v3-product__quick-add {
  opacity: 1;
  transform: translateY(0);
}

.yaz-v3-product__quick-add:hover {
  background: var(--yaz-accent, #E68AA8);
  color: #fff;
}

.yaz-v3-product__cat {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: #A8AEAD;
  margin-bottom: 0.35rem;
}

.yaz-v3-product__info h3 {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
  min-height: 3rem;
}

.yaz-v3-product__info h3 a {
  color: var(--yaz-heading, #3D4443);
  text-decoration: none;
  transition: color 0.3s ease;
}

.yaz-v3-product:hover .yaz-v3-product__info h3 a {
  color: var(--yaz-accent, #E68AA8);
}

.yaz-v3-product__price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--yaz-heading, #3D4443);
}

.yaz-v3-product__price ins {
  text-decoration: none;
  color: var(--yaz-accent, #E68AA8);
}

.yaz-v3-product__price del {
  font-size: 0.8rem;
  color: #A8AEAD;
  margin-inline-start: 0.5rem;
}

.yaz-v3-view-all {
  margin-top: 4rem;
  text-align: center;
}

.yaz-v3-view-all a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yaz-heading, #3D4443);
  border-bottom: 1px solid var(--yaz-heading, #3D4443);
  padding-bottom: 0.5rem;
  text-decoration: none;
  transition: all 0.4s ease;
}

.yaz-v3-view-all a:hover {
  color: var(--yaz-accent, #E68AA8);
  border-color: var(--yaz-accent, #E68AA8);
  gap: 0.9rem;
}

/* Why YAZ */
.yaz-v3-why {
  max-width: 1360px;
  margin: 7rem auto 0;
  padding: 0 2.5rem;
}

.yaz-v3-why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 4rem;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(160deg, #FDFCFB 0%, #FBF5F2 50%, #F7EBEE 100%);
}

.yaz-v3-why__visual {
  aspect-ratio: 4/5;
  border-radius: 4px;
  background: linear-gradient(160deg, #FDF0F4 0%, #F8E2EA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9rem;
  opacity: 0.7;
  overflow: hidden;
}

.yaz-v3-why__visual--has-image {
  opacity: 1;
  background: #FDF0F4;
}

.yaz-v3-why__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yaz-v3-why__content h2 {
  margin: 0 0 1.25rem;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--yaz-heading, #3D4443);
}

.yaz-v3-why__content > p {
  margin: 0 0 2.5rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 2;
  color: var(--yaz-text, #6B7271);
}

.yaz-v3-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.yaz-v3-features li {
  display: flex;
  gap: 1.15rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(230, 138, 168, 0.15);
}

.yaz-v3-features li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.yaz-v3-features__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--yaz-accent, #E68AA8);
  min-width: 32px;
}

.yaz-v3-features__text strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  color: var(--yaz-heading, #3D4443);
}

.yaz-v3-features__text span {
  font-size: 0.85rem;
  font-weight: 300;
  color: #A8AEAD;
}

/* Promo */
.yaz-v3-promo {
  max-width: 1360px;
  margin: 7rem auto 0;
  padding: 0 2.5rem;
}

.yaz-v3-promo__inner {
  padding: 6rem 5rem;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #3D4443 0%, #2A3130 100%);
}

.yaz-v3-promo__tag {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--yaz-accent, #E68AA8);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.yaz-v3-promo__content h2 {
  margin: 0 0 1.5rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.yaz-v3-promo__highlight {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3em;
  color: var(--yaz-accent, #E68AA8);
}

.yaz-v3-promo__content p {
  margin: 0 0 2.5rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
}

.yaz-v3-btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  border-radius: 999px;
  background: var(--yaz-accent, #E68AA8);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
}

.yaz-v3-btn-promo:hover {
  background: #fff;
  color: var(--yaz-heading, #3D4443);
  transform: translateY(-3px);
}

/* Newsletter */
.yaz-v3-newsletter {
  max-width: 1360px;
  margin: 7rem auto 0;
  padding: 0 2.5rem;
}

.yaz-v3-newsletter__inner {
  padding: 5rem 4rem;
  border: 1px solid var(--yaz-border, #F0EDEA);
  border-radius: 4px;
  text-align: center;
  background: linear-gradient(160deg, #FDFCFB 0%, #FBF5F2 100%);
}

.yaz-v3-newsletter__content h2 {
  margin: 0 0 1rem;
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--yaz-heading, #3D4443);
}

.yaz-v3-newsletter__content p {
  margin: 0 0 2.5rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: #A8AEAD;
}

.yaz-v3-newsletter__form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.yaz-v3-newsletter__form input {
  flex: 1;
  padding: 1.1rem 1.5rem;
  border: 1px solid var(--yaz-border, #F0EDEA);
  border-radius: 999px;
  font-family: 'Cairo', sans-serif;
  font-size: 0.9rem;
  background: #fff;
  outline: none;
}

.yaz-v3-newsletter__form input:focus {
  border-color: var(--yaz-accent, #E68AA8);
  box-shadow: 0 0 0 4px rgba(230, 138, 168, 0.1);
}

.yaz-v3-newsletter__form button {
  padding: 1.1rem 2.25rem;
  border: none;
  border-radius: 999px;
  background: var(--yaz-heading, #3D4443);
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.yaz-v3-newsletter__form button:hover {
  background: var(--yaz-accent, #E68AA8);
}

.yaz-v3-newsletter__form button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.yaz-v3-newsletter__message {
  max-width: 480px;
  margin: 1rem auto 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.yaz-v3-newsletter__message.is-success {
  color: var(--yaz-heading, #3D4443);
}

.yaz-v3-newsletter__message.is-error {
  color: #b42318;
}

.yaz-v3-newsletter__admin-note {
  margin: 1rem auto 0;
  max-width: 520px;
  font-size: 0.82rem;
  color: #A8AEAD;
}

.yaz-v3-newsletter__admin-note a {
  color: var(--yaz-accent, #E68AA8);
}

/* ===== Footer ===== */
.yaz-v3-footer {
  margin-top: 8rem;
  background: var(--yaz-heading, #3D4443);
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  overflow: hidden;
}

.yaz-v3-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yaz-accent, #E68AA8), transparent);
}

.yaz-v3-footer__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 5rem 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 4rem;
}

.yaz-v3-footer__logo-link {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.yaz-v3-footer__logo-link .custom-logo,
.yaz-v3-footer__logo-link img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

.yaz-v3-footer__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.15em;
}

.yaz-v3-footer__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--yaz-accent, #E68AA8);
  margin: 0 0 2rem;
}

.yaz-v3-footer__about {
  margin: 0 0 2rem;
  max-width: 320px;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.9;
}

.yaz-v3-footer__social {
  display: flex;
  gap: 1rem;
}

.yaz-v3-footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.4s ease;
}

.yaz-v3-footer__social-link svg {
  width: 16px;
  height: 16px;
}

.yaz-v3-footer__social-link:hover {
  background: var(--yaz-accent, #E68AA8);
  transform: translateY(-4px);
}

.yaz-v3-footer__col h4 {
  margin: 0 0 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
}

.yaz-v3-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.yaz-v3-footer__col li {
  margin-bottom: 0.85rem;
}

.yaz-v3-footer__col a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease, padding 0.3s ease;
}

.yaz-v3-footer__col a:hover {
  color: var(--yaz-accent, #E68AA8);
  padding-inline-start: 6px;
}

.yaz-v3-footer__bottom {
  max-width: 1360px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  font-weight: 300;
}

.yaz-v3-footer__payments {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.yaz-v3-footer__payments span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .yaz-v3-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .yaz-v3-why__inner {
    gap: 3rem;
    padding: 4rem 3rem;
  }

  .yaz-v3-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .yaz-v3-collections {
    grid-template-columns: 1fr;
  }

  .yaz-v3-why__inner {
    grid-template-columns: 1fr;
    padding: 3rem 2.5rem;
  }

  .yaz-v3-why__visual {
    aspect-ratio: 4/3;
    font-size: 6rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .yaz-v3-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    padding: 0.55rem 1rem;
  }

  .yaz-v3-mobile-menu-btn {
    display: flex;
    position: relative;
    z-index: 2;
  }

  .yaz-v3-header__brand {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: max-content;
    max-width: calc(100% - 140px);
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .yaz-v3-header__brand a,
  .yaz-v3-header__brand .yaz-v3-brand-logo-link {
    pointer-events: auto;
  }

  .yaz-v3-header__nav {
    display: none;
  }

  .yaz-v3-header__actions {
    position: relative;
    z-index: 2;
    margin-inline-start: auto;
  }

  .yaz-v3-desktop-only {
    display: none !important;
  }

  .yaz-v3-mobile-only {
    display: inline-flex !important;
  }

  .yaz-v3-header__actions {
    gap: 0.1rem;
  }

  .yaz-v3-icon-btn {
    width: 34px;
    height: 34px;
  }

  .yaz-v3-icon-btn svg {
    width: 18px;
    height: 18px;
  }

  .yaz-v3-icon-btn--wishlist svg {
    width: 17px;
    height: 17px;
  }

  .yaz-v3-icon-btn__badge {
    top: -2px;
    inset-inline-start: -2px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    max-width: 16px;
    line-height: 16px;
    font-size: 0.5rem;
  }

  .yaz-v3-brand-logo--header {
    max-height: 38px;
    max-width: 108px;
  }

  .yaz-v3-promo__inner {
    padding: 4rem 2.5rem;
  }
}

@media (max-width: 1024px) {
  .yaz-v3-menu {
    gap: 1.75rem;
  }

  .yaz-v3-menu a {
    font-size: 0.78rem;
  }
}

@media (max-width: 700px) {
  .yaz-v3-header__inner,
  .yaz-v3-search-panel__inner {
    padding-inline: 1.25rem;
  }

  .yaz-v3-section,
  .yaz-v3-why,
  .yaz-v3-promo,
  .yaz-v3-newsletter {
    padding-inline: 1.25rem;
    margin-top: 5rem;
  }

  .yaz-v3-section__header h2,
  .yaz-v3-why__content h2,
  .yaz-v3-promo__content h2,
  .yaz-v3-newsletter__content h2 {
    font-size: 1.5rem;
  }

  .yaz-v3-why__inner,
  .yaz-v3-newsletter__inner,
  .yaz-v3-promo__inner {
    padding: 2.5rem 1.75rem;
  }

  .yaz-v3-newsletter__form {
    flex-direction: column;
  }

  .yaz-v3-footer__inner {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem 2rem;
  }

  .yaz-v3-footer__bottom {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .yaz-v3-header__inner {
    padding: 0.5rem 0.85rem;
  }

  .yaz-v3-brand-logo--header {
    max-height: 34px;
    max-width: 96px;
  }

  .yaz-v3-icon-btn {
    width: 32px;
    height: 32px;
  }

  .yaz-v3-icon-btn svg {
    width: 17px;
    height: 17px;
  }

  .yaz-v3-products {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Hide any legacy homepage blocks if still injected */
.yaz-front-page .yaz-front-elementor,
.yaz-front-page .yaz-home-section:not(.yaz-hero),
.yaz-front-page .yaz-tagline-section,
.yaz-front-page .yaz-hero-tail,
.yaz-front-page .yaz-categories,
.yaz-front-page .yaz-el-tagline,
.yaz-front-page .yaz-el-categories,
.yaz-front-page .yaz-el-categories-cards,
.yaz-front-page .yaz-el-products,
.yaz-front-page .yaz-el-trust,
.yaz-front-page .yaz-el-trust-cards,
.yaz-front-page .elementor-section.yaz-home-section {
  display: none !important;
}
