/**
 * Wonder Theme - CSS Exacto de https://wonder-theme-interior.myshopify.com/
 * Valores extraídos directamente del tema original
 */

/* ==================== VARIABLES WONDER ==================== */
:root {
  /* Logo */
  --logo-width: 110px;
  --logo-width-mobile: 110px;
  --logo-width-desk: 130px;

  /* Colors */
  --color-background: #ffffff;
  --color-text: #222321;
  --color-announcement-bg: #ececec;
  --color-announcement-text: #222321;
  --color-border: #e8e8e1;

  /* Icons */
  --icon-width-mobile: 44px;
  --icon-width-desktop: 64px;

  /* Spacing */
  --spacing-desktop: 16px;
  --spacing-mobile: 4px;

  /* Border radius */
  --border-radius-button: 30px;

  /* Typography */
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

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

html, body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
  background: #ffffff !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ==================== OCULTAR HEADER PRESTASHOP ==================== */
#header,
.header-top,
.header-nav,
.sticky-header {
  display: none !important;
}

/* Ocultar el menu desktop SOLO fuera de wt-nav */
body > #_desktop_top_menu,
#header #_desktop_top_menu {
  display: none !important;
}

/* Mostrar menu dentro de wt-nav */
.wt-nav #_desktop_top_menu {
  display: block !important;
}

.wt-nav #_desktop_top_menu .menu {
  display: flex !important;
}

/* ==================== CONTAINER ==================== */
.wt-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px;
}

@media (max-width: 990px) {
  .wt-container {
    padding: 0 20px;
  }
}

/* ==================== ANNOUNCEMENT BAR ==================== */
/* Bloquear cualquier intento de JS de ocultar */
.wt-announcement,
.wt-announcement[style],
.wt-announcement[style*="display"],
.wt-announcement[style*="none"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 9999 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  background-color: #ececec !important;
  color: #222321 !important;
}

.wt-announcement-bar,
.wt-announcement-bar[style],
.wt-announcement-bar[style*="display"],
.wt-announcement-bar[style*="none"] {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 0;
}

.wt-announcement__container {
  width: 100%;
}

.wt-announcement__list {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 50px !important;
  font-size: 12px;
  letter-spacing: 0.02em;
  width: 100%;
}

.wt-announcement__list li {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.wt-announcement__list li:first-child {
  justify-content: flex-start;
}

.wt-announcement__list li:last-child {
  justify-content: flex-end;
}

.wt-announcement__list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.wt-announcement__list a:hover {
  opacity: 0.7;
}

.wt-announcement__list svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .wt-announcement__list {
    justify-content: center;
    padding: 0 20px;
  }
  .wt-announcement__list li:not(:nth-child(2)) {
    display: none;
  }
}

/* ==================== MAIN HEADER ==================== */
.wt-header {
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.wt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 50px;
  max-width: 1600px;
  margin: 0 auto;
  gap: 40px;
}

@media (max-width: 990px) {
  .wt-header__inner {
    height: 60px;
    padding: 0 20px;
    gap: 16px;
  }
}

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

.wt-logo {
  display: block;
  text-decoration: none;
}

.wt-logo__text {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.wt-logo__dot {
  color: var(--color-text);
}

@media (min-width: 990px) {
  .wt-logo__text {
    font-size: 32px;
  }
}

/* Search Bar */
.wt-header__search {
  flex: 1;
  max-width: 600px;
}

.wt-search-form {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border-radius: 100px;
  overflow: hidden;
  height: 52px;
}

.wt-search-form__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 24px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-text);
  outline: none;
  height: 100%;
}

.wt-search-form__input::placeholder {
  color: #666;
}

.wt-search-form__btn {
  background: var(--color-text);
  border: none;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 50%;
  margin: 0;
  transition: opacity 0.2s ease;
}

.wt-search-form__btn:hover {
  opacity: 0.8;
}

.wt-search-form__btn svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  fill: none;
}

@media (max-width: 990px) {
  .wt-header__search {
    display: none;
  }
}

/* Header Icons */
.wt-header__icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.wt-header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 44px;
  height: 44px;
  color: var(--color-text);
  transition: opacity 0.2s ease;
}

.wt-header__icon:hover {
  opacity: 0.7;
}

.wt-header__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-text);
  stroke-width: 1.5;
  fill: none;
}

.wt-header__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-text);
  color: #ffffff;
  font-size: 10px;
  font-weight: var(--font-weight-semibold);
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
}

/* ==================== NAVIGATION ==================== */
.wt-nav {
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
}

.wt-nav__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 50px;
  max-width: 1600px;
  margin: 0 auto;
}

/* Forzar visibilidad del menú PrestaShop dentro de wt-nav */
.wt-nav .menu,
.wt-nav #_desktop_top_menu {
  display: block !important;
}

.wt-nav .hidden-sm-down {
  display: block !important;
}

/* Estilos del menú */
.wt-nav #top-menu,
.wt-nav .top-menu[data-depth="0"] {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: none;
}

.wt-nav #top-menu > li {
  margin: 0;
  padding: 0;
  position: static;
}

.wt-nav #top-menu > li > a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  text-decoration: none;
}

.wt-nav #top-menu > li > a:hover {
  opacity: 0.7;
}

/* Ocultar iconos expand y submenús */
.wt-nav .collapse-icons,
.wt-nav .sub-menu,
.wt-nav .popover {
  display: none !important;
}

@media (max-width: 990px) {
  .wt-nav {
    display: none;
  }
}

/* ==================== BODY & CONTAINER FULL WIDTH ==================== */
body {
  padding-top: 0 !important;
  overflow-x: hidden;
}

#wrapper {
  padding-top: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

#wrapper > .row {
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

#content-wrapper,
#content-wrapper.js-content-wrapper,
.js-content-wrapper.col-xs-12 {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 0 0 100% !important;
}

#main,
.page-home,
#content {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.page-home .container,
#content .container,
#main .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

/* Legacy container override */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px;
}

@media (max-width: 990px) {
  .container {
    padding: 0 20px;
  }
}

/* ==================== FOOTER ==================== */
.wt-footer {
  background: #ffffff;
  border-top: 1px solid var(--color-border);
}

.wt-footer__main {
  padding: 60px 40px 50px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .wt-footer__main {
    padding: 40px 20px 30px;
  }
}

.wt-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

@media (max-width: 990px) {
  .wt-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .wt-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.wt-footer__column {
  display: flex;
  flex-direction: column;
}

.wt-footer__title {
  font-size: 15px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin: 0 0 20px 0;
}

.wt-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wt-footer__links li a {
  font-size: 14px;
  color: var(--color-text);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.wt-footer__links li a:hover {
  opacity: 1;
}

.wt-footer__text {
  font-size: 14px;
  color: var(--color-text);
  opacity: 0.7;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.wt-footer__newsletter-wrapper {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  overflow: hidden;
  padding: 4px;
}

.wt-footer__newsletter-input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  background: transparent;
}

.wt-footer__newsletter-input::placeholder {
  color: #888;
}

.wt-footer__newsletter-btn {
  padding: 12px 24px;
  background: var(--color-text);
  color: #ffffff;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-body);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.wt-footer__newsletter-btn:hover {
  opacity: 0.85;
}

/* Footer Bottom */
.wt-footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: 24px 40px;
}

@media (max-width: 768px) {
  .wt-footer__bottom {
    padding: 20px;
  }
}

.wt-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .wt-footer__bottom-inner {
    flex-direction: column;
    gap: 20px;
  }
}

.wt-footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.wt-footer__locale {
  font-size: 14px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.wt-footer__social {
  display: flex;
  gap: 12px;
}

.wt-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--color-text);
  transition: opacity 0.2s ease;
}

.wt-footer__social-link:hover {
  opacity: 0.6;
}

.wt-footer__social-link svg {
  width: 20px;
  height: 20px;
}

.wt-footer__bottom-right {
  display: flex;
  align-items: center;
}

.wt-footer__payments {
  display: flex;
  gap: 8px;
  align-items: center;
}

.wt-footer__payments img {
  height: 24px;
  width: auto;
  opacity: 0.8;
}

.wt-footer__copyright {
  text-align: center;
  padding-top: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.wt-footer__copyright p {
  font-size: 12px;
  color: var(--color-text);
  opacity: 0.5;
  margin: 0;
}

/* ==================== HERO SLIDER ==================== */
.wt-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: auto;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  background: #000;
}

@media (max-width: 990px) {
  .wt-hero {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 576px) {
  .wt-hero {
    aspect-ratio: 3 / 4;
  }
}

.wt-hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.wt-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

.wt-hero__slide--active {
  opacity: 1;
  visibility: visible;
}

.wt-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wt-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wt-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
  pointer-events: none;
}

.wt-hero__content {
  position: absolute;
  bottom: 80px;
  left: 60px;
  max-width: 600px;
  color: #ffffff;
  z-index: 2;
}

@media (max-width: 990px) {
  .wt-hero__content {
    bottom: 60px;
    left: 40px;
    right: 40px;
    max-width: none;
  }
}

@media (max-width: 576px) {
  .wt-hero__content {
    bottom: 40px;
    left: 20px;
    right: 20px;
  }
}

.wt-hero__subtitle {
  display: block;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  color: #ffffff;
  opacity: 0.9;
}

.wt-hero__title {
  font-size: 64px;
  font-weight: var(--font-weight-bold);
  line-height: 1.05;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  color: #ffffff;
}

@media (max-width: 990px) {
  .wt-hero__title {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .wt-hero__title {
    font-size: 36px;
  }
}

.wt-hero__text {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 24px 0;
  color: #ffffff;
  opacity: 0.9;
  max-width: 400px;
}

@media (max-width: 576px) {
  .wt-hero__text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.wt-hero__btn {
  display: inline-block;
  padding: 18px 36px;
  background: #ffffff;
  color: #000000;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.wt-hero__btn:hover {
  background: #000000;
  color: #ffffff;
}

/* Navigation Dots */
.wt-hero__dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.wt-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wt-hero__dot--active,
.wt-hero__dot:hover {
  background: #ffffff;
}

/* Navigation Arrows */
.wt-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s ease;
}

.wt-hero__arrow:hover {
  background: #ffffff;
}

.wt-hero__arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-text);
}

.wt-hero__arrow--prev {
  left: 20px;
}

.wt-hero__arrow--next {
  right: 20px;
}

@media (max-width: 768px) {
  .wt-hero__arrow {
    width: 40px;
    height: 40px;
  }
  
  .wt-hero__arrow--prev {
    left: 10px;
  }
  
  .wt-hero__arrow--next {
    right: 10px;
  }
}

/* Hero Split Layout (2 images) */
.wt-hero__slide--split {
  background: #f5f5f5;
}

.wt-hero__split {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

.wt-hero__split-left,
.wt-hero__split-right {
  flex: 1;
  overflow: hidden;
}

.wt-hero__split-left img,
.wt-hero__split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wt-hero__split-left {
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.wt-hero__split-right {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -15%;
}

/* Content centered for both layouts */
.wt-hero__content--center {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%);
}

.wt-hero__content--center .wt-hero__text {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .wt-hero__split {
    flex-direction: column;
  }
  
  .wt-hero__split-left,
  .wt-hero__split-right {
    clip-path: none;
    margin: 0;
  }
  
  .wt-hero__split-left {
    height: 50%;
  }
  
  .wt-hero__split-right {
    height: 50%;
  }
}

/* ==================== CATEGORIES ROW ==================== */
.wt-categories {
  width: 100%;
  padding: 40px 0 24px;
}

.wt-categories__header {
  text-align: center;
  margin-bottom: 24px;
  padding: 0 20px;
}

.wt-categories__title {
  font-size: 22px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin: 0;
}

.wt-categories__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 0 40px;
  width: 100%;
}

@media (max-width: 990px) {
  .wt-categories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .wt-categories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 0 12px;
  }
}

.wt-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.wt-category-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.wt-category-card__image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.wt-category-card__content {
  text-align: center;
}

.wt-category-card__title {
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-body);
  color: var(--color-text);
  margin: 0;
  letter-spacing: -0.01em;
}

@media (max-width: 576px) {
  .wt-category-card__title {
    font-size: 13px;
  }
}

/* Force white background everywhere */
body,
#wrapper,
#content-wrapper,
#main,
#content,
.page-home,
.wt-categories {
  background-color: #ffffff !important;
}

/* ==================== PROMOTIONAL BANNERS ==================== */
.wt-promo-banners {
  width: 100%;
  padding: 40px 40px 60px;
  background-color: #ffffff;
}

@media (max-width: 990px) {
  .wt-promo-banners {
    padding: 30px 20px 40px;
  }
}

.wt-promo-banners__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  width: 100%;
}

@media (max-width: 990px) {
  .wt-promo-banners__grid {
    grid-template-columns: 1fr;
  }
}

.wt-promo-banners__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wt-promo-banner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
}

.wt-promo-banner--large {
  min-height: 500px;
}

.wt-promo-banner--small {
  flex: 1;
  min-height: 240px;
}

@media (max-width: 990px) {
  .wt-promo-banner--large {
    min-height: 400px;
  }

  .wt-promo-banner--small {
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .wt-promo-banner--large {
    min-height: 350px;
  }

  .wt-promo-banner--small {
    min-height: 250px;
  }
}

.wt-promo-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wt-promo-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wt-promo-banner:hover .wt-promo-banner__image img {
  transform: scale(1.05);
}

.wt-promo-banner__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
  color: #ffffff;
}

.wt-promo-banner--large .wt-promo-banner__content {
  padding: 40px;
}

@media (max-width: 576px) {
  .wt-promo-banner__content {
    padding: 20px;
  }

  .wt-promo-banner--large .wt-promo-banner__content {
    padding: 24px;
  }
}

.wt-promo-banner__label {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.wt-promo-banner__title {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.wt-promo-banner--large .wt-promo-banner__title {
  font-size: 36px;
}

@media (max-width: 990px) {
  .wt-promo-banner--large .wt-promo-banner__title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .wt-promo-banner__title {
    font-size: 20px;
  }

  .wt-promo-banner--large .wt-promo-banner__title {
    font-size: 24px;
  }
}

.wt-promo-banner__text {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.wt-promo-banner--small .wt-promo-banner__text {
  margin-bottom: 12px;
}

.wt-promo-banner__link {
  display: inline-block;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.wt-promo-banner:hover .wt-promo-banner__link {
  border-color: #ffffff;
}

/* ==================== FEATURED PRODUCTS SLIDER ==================== */
.wt-featured {
  width: 100%;
  padding: 60px 0;
  background-color: #ffffff;
}

.wt-featured__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  margin-bottom: 32px;
  gap: 12px;
}

@media (max-width: 576px) {
  .wt-featured__header {
    padding: 0 20px;
    margin-bottom: 24px;
  }
}

.wt-featured__title {
  font-size: 28px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin: 0;
}

@media (max-width: 576px) {
  .wt-featured__title {
    font-size: 22px;
  }
}

.wt-featured__link {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.wt-featured__link:hover {
  opacity: 0.7;
}

.wt-featured__slider-wrapper {
  position: relative;
  padding: 0 40px;
}

@media (max-width: 576px) {
  .wt-featured__slider-wrapper {
    padding: 0 20px;
  }
}

.wt-featured__slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 10px;
}

.wt-featured__slider::-webkit-scrollbar {
  display: none;
}

.wt-featured__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s ease;
}

.wt-featured__arrow:hover {
  background: var(--color-text);
  border-color: var(--color-text);
}

.wt-featured__arrow:hover svg {
  stroke: #ffffff;
}

.wt-featured__arrow svg {
  stroke: var(--color-text);
}

.wt-featured__arrow--prev {
  left: 8px;
}

.wt-featured__arrow--next {
  right: 8px;
}

@media (max-width: 768px) {
  .wt-featured__arrow {
    display: none;
  }
}

/* Product Card - Wonder Theme Style */
.wt-product-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

@media (max-width: 990px) {
  .wt-product-card {
    flex: 0 0 280px;
  }
}

@media (max-width: 576px) {
  .wt-product-card {
    flex: 0 0 240px;
  }
}

.wt-product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.wt-product-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.wt-product-card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
}

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

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

/* Badge */
.wt-product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  border-radius: 4px;
  z-index: 2;
}

.wt-product-card__badge--trending {
  background: #1b4d3e;
  color: #ffffff;
}

.wt-product-card__badge--sale {
  background: #c41e3a;
  color: #ffffff;
}

.wt-product-card__badge--new {
  background: #222321;
  color: #ffffff;
}

/* Hover Button */
.wt-product-card__hover-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 14px 20px;
  background: #ffffff;
  color: var(--color-text);
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  text-align: center;
  border-radius: 40px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 2;
}

.wt-product-card__link:hover .wt-product-card__hover-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Content */
.wt-product-card__content {
  text-align: left;
}

.wt-product-card__vendor {
  font-size: 11px;
  font-weight: var(--font-weight-normal);
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px 0;
}

.wt-product-card__name {
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.wt-product-card__price {
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.wt-product-card__price-sale {
  color: #c41e3a;
}

.wt-product-card__discount {
  font-size: 12px;
  color: #c41e3a;
  font-weight: var(--font-weight-medium);
}

/* Color Swatches */
.wt-product-card__swatches {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.wt-product-card__swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  cursor: pointer;
}

.wt-product-card__swatch--beige { background: #e8dcc4; }
.wt-product-card__swatch--pink { background: #e8a0a0; }
.wt-product-card__swatch--black { background: #222321; }
.wt-product-card__swatch--wood { background: #a67c52; }
.wt-product-card__swatch--blue { background: #4a90a4; }
.wt-product-card__swatch--green { background: #7fa37f; }
.wt-product-card__swatch--gray { background: #c0c0c0; }
.wt-product-card__swatch--white { background: #ffffff; }

/* ==================== WAVE SEPARATOR ==================== */
.wt-separator {
  width: 100%;
  line-height: 0;
  margin: 0;
  padding: 0;
  background: #ffffff;
}

.wt-separator svg {
  width: 100%;
  height: 60px;
  display: block;
}

@media (max-width: 768px) {
  .wt-separator svg {
    height: 40px;
  }
}

/* ==================== VIDEO PROMO SECTION ==================== */
.wt-video-promo {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .wt-video-promo {
    height: 400px;
  }
}

.wt-video-promo__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wt-video-promo__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wt-video-promo__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 77, 62, 0.7);
}

.wt-video-promo__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 40px 20px;
  max-width: 600px;
}

.wt-video-promo__label {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  opacity: 0.9;
}

.wt-video-promo__title {
  font-size: 56px;
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .wt-video-promo__title {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .wt-video-promo__title {
    font-size: 32px;
  }
}

.wt-video-promo__text {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 28px 0;
  opacity: 0.9;
}

.wt-video-promo__btn {
  display: inline-block;
  padding: 16px 36px;
  background: #ffffff;
  color: #1b4d3e;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.wt-video-promo__btn:hover {
  background: #222321;
  color: #ffffff;
}

/* ==================== FEATURES BAR ==================== */
.wt-features {
  width: 100%;
  padding: 80px 40px;
  background-color: #f9f9f9;
}

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

.wt-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 990px) {
  .wt-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

@media (max-width: 576px) {
  .wt-features__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.wt-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wt-feature__icon {
  width: 70px;
  height: 70px;
  border: 1.5px solid #c5d1db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.wt-feature__icon svg {
  width: 32px;
  height: 32px;
  stroke: #5a7a8a;
}

.wt-feature__title {
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin: 0 0 8px 0;
}

.wt-feature__text {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* ==================== CATEGORY PAGE ==================== */
.wt-category-page {
  width: 100%;
  max-width: 100%;
}

/* Category Header / Hero Banner */
.wt-category-header {
  width: 100%;
  margin-bottom: 40px;
}

.wt-category-header__inner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.wt-category-header__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wt-category-header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wt-category-header__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  color: #fff;
}

.wt-category-header__title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: var(--font-weight-normal);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.wt-category-header__description {
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  opacity: 0.9;
}

.wt-category-header__description p {
  margin: 0;
}

@media (max-width: 768px) {
  .wt-category-header__inner {
    height: 300px;
  }

  .wt-category-header__content {
    padding: 30px 20px;
  }

  .wt-category-header__title {
    font-size: 32px;
  }
}

/* Products Section */
.wt-products-section {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px 60px;
}

@media (max-width: 768px) {
  .wt-products-section {
    padding: 0 16px 40px;
  }
}

/* Products Toolbar (Sort, View options) */
.wt-products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #e8e8e1;
}

.wt-products-toolbar__count {
  font-size: 14px;
  color: #666;
}

.wt-products-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wt-products-toolbar__sort label {
  font-size: 14px;
  color: #666;
}

.wt-products-toolbar__sort select {
  padding: 10px 36px 10px 16px;
  font-size: 14px;
  border: 1px solid #e8e8e1;
  border-radius: 4px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  cursor: pointer;
}

/* Products Grid - 4 columns */
.wt-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1200px) {
  .wt-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .wt-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .wt-products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Product Card - Category Page Style */
.wt-products-grid .wt-product-card {
  width: 100%;
}

.wt-products-grid .wt-product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 4px;
  margin-bottom: 16px;
}

.wt-products-grid .wt-product-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.wt-products-grid .wt-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.wt-products-grid .wt-product-card:hover .wt-product-card__img {
  transform: scale(1.05);
}

/* Product Badge */
.wt-products-grid .wt-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  border-radius: 4px;
  z-index: 2;
}

.wt-products-grid .wt-product-card__badge--sale {
  background: #dc3545;
  color: #fff;
}

.wt-products-grid .wt-product-card__badge--new {
  background: #1b4d3e;
  color: #fff;
}

/* Quick View Overlay */
.wt-product-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.wt-product-card:hover .wt-product-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.wt-product-card__quickview {
  width: 100%;
  padding: 12px 20px;
  background: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: background 0.3s ease;
}

.wt-product-card__quickview:hover {
  background: #222321;
  color: #fff;
}

/* Product Info */
.wt-product-card__info {
  text-align: left;
}

.wt-product-card__brand {
  display: block;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.wt-product-card__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: var(--font-weight-normal);
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.wt-product-card__title a {
  color: var(--color-text);
  text-decoration: none;
}

.wt-product-card__title a:hover {
  color: #1b4d3e;
}

.wt-product-card__price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.wt-product-card__price-old {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
}

.wt-product-card__price-current {
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

/* Active Filters */
.wt-active-filters {
  margin-bottom: 20px;
}

/* No Products Message */
.wt-no-products {
  padding: 80px 20px;
  text-align: center;
}

.wt-no-products__content {
  max-width: 400px;
  margin: 0 auto;
}

.wt-no-products__content svg {
  color: #ccc;
  margin-bottom: 20px;
}

.wt-no-products__content h4 {
  font-size: 20px;
  margin: 0 0 10px 0;
}

.wt-no-products__content p {
  color: #666;
  margin: 0;
}

/* Pagination */
.wt-products .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e8e8e1;
}

.wt-products .pagination .page-item {
  list-style: none;
}

.wt-products .pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
  border: 1px solid #e8e8e1;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.wt-products .pagination .page-link:hover {
  border-color: var(--color-text);
}

.wt-products .pagination .page-item.active .page-link {
  background: var(--color-text);
  border-color: var(--color-text);
  color: #fff;
}

.wt-products .pagination .page-item.disabled .page-link {
  opacity: 0.4;
  pointer-events: none;
}

/* Back to Top */
.wt-back-to-top {
  text-align: center;
  margin-top: 40px;
}

.wt-back-to-top a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
