/* ============================================================
   REIS KUYUMCULUK — theme-custom.css
   WooCommerce + WordPress layout overrides that layer on top
   of the original Shopify component CSS files.
   ============================================================ */

/* Font faces are declared in assets/css/fonts.css (loaded separately) */

/* ============================================================
   STICKY HEADER
   ============================================================ */
sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgb(var(--color-background));
  border-bottom: 1px solid rgb(var(--color-border));
  transition: box-shadow 0.3s ease;
}
sticky-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 2rem;
  min-height: 6rem;
}

.header__heading {
  display: flex;
  align-items: center;
}

.header__logo-image {
  max-height: 5rem;
  width: auto;
  display: block;
}

.header__inline-menu {
  display: none;
}
@media screen and (min-width: 1100px) {
  .header__inline-menu {
    display: flex;
    justify-content: center;
  }
}

.header__icons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: rgb(var(--color-foreground));
  position: relative;
  transition: opacity 0.2s;
}
.header__icon:hover { opacity: 0.7; }

.header__cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: rgb(var(--color-button));
  color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.header__cart-count:empty,
.header__cart-count[data-count="0"] { display: none; }

/* ── Mobile menu drawer toggle ── */
header-drawer {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1100px) {
  header-drawer { display: none; }
}

/* ============================================================
   DESKTOP MEGA MENU
   ============================================================ */
.burger-menu__list {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.burger-menu__item,
.burger-menu__link {
  font-family: var(--font-header-menu-family);
  font-weight: var(--font-header-menu-weight);
  font-size: 1.47rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s;
}
.burger-menu__link:hover { opacity: 0.65; }

menu-drawer {
  position: relative;
}
menu-drawer > details > div {
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 0;
  background: rgb(var(--color-background));
  border: 1px solid rgb(var(--color-border));
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  min-width: 700px;
  padding: 3rem;
  z-index: 500;
  display: none;
}
menu-drawer > details[open] > div {
  display: flex;
  gap: 3rem;
}

/* ============================================================
   MOBILE MENU DRAWER
   ============================================================ */
.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(360px, 100vw);
  height: 100vh;
  background: rgb(var(--color-background));
  z-index: 1001;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
details[open] .menu-drawer {
  transform: translateX(0);
}
.menu-drawer__inner-container {
  padding: 2rem;
}
.menu-drawer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-drawer__menu-item {
  display: block;
  padding: 1.2rem 0;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid rgb(var(--color-border));
  cursor: pointer;
}

/* ============================================================
   SEARCH MODAL
   ============================================================ */
.header__search {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.header__search.is-open {
  pointer-events: all;
  opacity: 1;
}
.search__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgb(var(--color-background));
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.header__search.is-open .search__content {
  transform: translateY(0);
}
.search-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: -1;
}
.search__form {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.search__input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgb(var(--color-border));
  padding: 1.5rem 0;
  font-size: 2rem;
  background: transparent;
  outline: none;
}

/* ============================================================
   ACCOUNT / CART MODALS
   ============================================================ */
.header__account,
cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
}
.account__content,
.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 100vw);
  background: rgb(var(--color-background));
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.header__account.is-open .account__content,
cart-drawer.is-open .cart-drawer {
  transform: translateX(0);
}
.cart-drawer__overlay,
.account-modal__overlay,
.banner-popup-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: -1;
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid rgb(var(--color-border));
  position: sticky;
  top: 0;
  background: rgb(var(--color-background));
  z-index: 1;
}
.drawer__heading {
  font-size: 2rem;
  font-weight: 500;
}
.cart-count-bubble {
  width: 2.2rem;
  height: 2.2rem;
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: rgb(var(--color-foreground));
}
.drawer__inner-empty {
  padding: 4rem 2rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.cart__empty-text { font-size: 2rem; }

.drawer__contents {
  flex: 1;
  overflow-y: auto;
  padding: 0 2rem;
}

.drawer__footer {
  padding: 2rem;
  border-top: 1px solid rgb(var(--color-border));
  background: rgb(var(--color-background));
  position: sticky;
  bottom: 0;
}
.totals {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.totals__subtotal { font-size: 1.6rem; }
.totals__subtotal-value { font-size: 1.6rem; font-weight: 500; }

/* Cart items */
.cart-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgb(var(--color-border));
}
.cart-item__image { flex-shrink: 0; }
.cart-item__thumbnail { width: 60px; height: 80px; object-fit: cover; }
.cart-item__details { flex: 1; }
.cart-item__name { font-size: 1.3rem; display: block; }
.cart-item__price { margin-top: 0.4rem; font-size: 1.3rem; font-weight: 500; }
.qty-btn {
  background: none;
  border: 1px solid rgb(var(--color-border));
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-input {
  width: 40px;
  text-align: center;
  border: 1px solid rgb(var(--color-border));
  border-left: none;
  border-right: none;
  height: 28px;
  font-size: 1.3rem;
  background: transparent;
  color: rgb(var(--color-foreground));
}
.cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: rgb(var(--color-foreground-secondary));
  padding: 0;
}

/* ============================================================
   COUNTDOWN TIMER BAR
   ============================================================ */
countdown-timer-bar {
  display: block;
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  text-align: center;
  padding: 0.8rem 2rem;
  position: relative;
}
.countdown-timer-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.countdown-timer-bar__message {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.countdown-timer-bar__timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.countdown-timer-bar__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3.5rem;
}
.countdown-timer-bar__digits {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
.countdown-timer-bar__label {
  font-size: 0.9rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.countdown-timer-bar__separator {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.countdown-timer-bar__link--overlay {
  position: absolute;
  inset: 0;
}

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.section-hp-slideshow {
  position: relative;
  overflow: hidden;
}
.hp-slideshow__swiper {
  width: 100%;
  height: 56rem;
}
@media screen and (max-width: 749px) {
  .hp-slideshow__swiper { height: 40rem; }
}
.hp-slideshow__slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.hp-slideshow__media {
  width: 100%;
  height: 100%;
}
.hp-slideshow__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* .hp-slideshow__info — text overlay on hero slides */
.hp-slideshow__info {
  position: absolute;
  bottom: 10%;
  left: 6%;
  max-width: 50%;
  z-index: 2;
}
.hp-slideshow__heading {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hp-slideshow__button {
  margin-top: 2rem;
}
.hp-slideshow__arrow {
  width: 4.4rem;
  height: 4.4rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
  transition: background 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.hp-slideshow__arrow:hover { background: rgba(255,255,255,0.9); }
.hp-slideshow__arrow--prev { left: 2rem; }
.hp-slideshow__arrow--next { right: 2rem; }

/* Swiper pagination */
.swiper-pagination-bullet {
  background: rgb(var(--color-background));
  opacity: 0.5;
  width: 8px;
  height: 8px;
}
.swiper-pagination-bullet-active { opacity: 1; }

/* ============================================================
   COLLECTION CAROUSEL
   ============================================================ */
.section-collection-carousel {
  padding: 4rem 0;
  overflow: hidden;
}
.collection-carousel__swiper {
  padding: 0 2rem;
}
.collection-carousel__item {
  width: 160px !important;
}
.collection-carousel__image-wrap {
  border-radius: var(--border-radius-media);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.collection-carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collection-carousel__link:hover .collection-carousel__image {
  transform: scale(1.04);
}
.collection-carousel__name {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  position: relative;
}
.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-media);
  background: rgb(var(--color-background-secondary));
  aspect-ratio: 3/4;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}
.product-card__image--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.product-card:hover .product-card__image--hover { opacity: 1; }
.product-card:hover .product-card__image:not(.product-card__image--hover) { opacity: 0; }

.product-card__info {
  padding: 1.2rem 0;
}
.product-card__name {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.product-card__variant-count {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.4rem;
}
.product-card__price {
  font-size: 1.4rem;
  font-weight: 500;
}
.product-card__price del { color: rgb(var(--color-card-price-old)); font-weight: 400; }
.product-card__price ins { text-decoration: none; }

/* Badges */
.product__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Quick add (hover reveal) */
.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(255,255,255,0.95);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 3;
}
.product-card:hover .product-card__quick-add { transform: translateY(0); }
.quick-add-btn {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.2rem;
}

/* Wishlist button */
.product-card__wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  background: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  color: rgb(var(--color-foreground));
}
.product-card:hover .product-card__wishlist { opacity: 1; }
.product-card__wishlist.is-wishlisted svg { fill: currentColor; }

/* ============================================================
   PRODUCT CAROUSEL SECTION
   ============================================================ */
.section-product-carousel,
.section-featured-products {
  padding: 6rem 0;
}
.product-carousel__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.product-carousel__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
.product-carousel__subtitle {
  font-size: 1.4rem;
  margin-top: 0.8rem;
}
.product-carousel__cta {
  font-size: 1.3rem;
  white-space: nowrap;
}

.product-carousel__arrow,
.featured-products__arrow {
  width: 4rem;
  height: 4rem;
  background: rgb(var(--color-background));
  border: 1px solid rgb(var(--color-border));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
  transition: background 0.2s, border-color 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.product-carousel__arrow:hover { background: rgb(var(--color-foreground)); color: rgb(var(--color-background)); }

.product-carousel__arrow--prev,
.featured-products__arrow.swiper-button-prev { left: -2rem; }
.product-carousel__arrow--next,
.featured-products__arrow.swiper-button-next { right: -2rem; }

/* Scrollbar */
.swiper-scrollbar {
  height: 2px;
  background: rgb(var(--color-border));
  margin-top: 2rem;
  border-radius: 0;
}
.swiper-scrollbar-drag {
  background: rgb(var(--color-foreground));
  border-radius: 0;
}

/* ============================================================
   MEDIA BANNER
   ============================================================ */
.section-media-banner {
  overflow: hidden;
}
.media-banner__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media screen and (min-width: 750px) {
  .media-banner__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .media-banner--reverse .media-banner__media { order: 2; }
  .media-banner--reverse .media-banner__content { order: 1; }
}
.media-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}
.media-banner__content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.media-banner__heading { font-size: clamp(2rem, 4vw, 3.5rem); }
.media-banner__text { font-size: 1.4rem; line-height: 1.7; }

/* ============================================================
   RICH TEXT SECTION
   ============================================================ */
.section-rich-text {
  padding: 8rem 0;
  text-align: center;
  background: rgb(var(--color-background-secondary));
}
.rich-text__heading {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 2rem;
}
.rich-text__body {
  font-size: 1.5rem;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 3rem;
}

/* ============================================================
   NEWSLETTER POPUP
   ============================================================ */
.banner-popup-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3000;
  max-width: 800px;
  width: calc(100% - 4rem);
  background: rgb(var(--color-background));
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  display: flex;
  overflow: hidden;
}
.banner-popup-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2999;
}
.banner-popup-modal__media {
  flex: 0 0 40%;
  min-height: 300px;
}
.banner-popup-modal__text {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-popup-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
  color: rgb(var(--color-foreground));
}
.banner-popup-modal__subtitle {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: rgb(var(--color-button));
  margin-bottom: 1rem;
}
.banner-popup-modal__heading { font-size: 2.5rem; margin-bottom: 1.5rem; }
.banner-popup-modal__description { font-size: 1.3rem; line-height: 1.7; margin-bottom: 2rem; }

@media screen and (max-width: 599px) {
  .banner-popup-modal { flex-direction: column; }
  .banner-popup-modal__media { display: none; }
}

/* ============================================================
   WOOCOMMERCE — SHOP / ARCHIVE
   ============================================================ */
.collection-hero {
  position: relative;
  overflow: hidden;
}
.collection-hero__content {
  padding: 4rem 2rem;
}
.collection-hero--no-image .collection-hero__content {
  padding: 3rem 2rem 1rem;
}
.collection-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
}
.collection-hero__desc {
  font-size: 1.4rem;
  max-width: 640px;
}

.collection-toolbar {
  padding: 2rem 2rem;
  border-bottom: 1px solid rgb(var(--color-border));
}
.collection-toolbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.collection-toolbar__count { font-size: 1.2rem; }

.collection-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 6rem;
}
@media screen and (min-width: 990px) {
  .collection-layout {
    grid-template-columns: 240px 1fr;
  }
}

.collection-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (min-width: 750px) {
  .collection-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 990px) {
  .collection-product-grid {
    gap: 2.4rem;
  }
}

/* WooCommerce sorting select */
.woocommerce-ordering select {
  padding: 0.8rem 1.2rem;
  border: 1px solid rgb(var(--color-border));
  background: rgb(var(--color-background));
  font-family: var(--font-body-family);
  font-size: 1.2rem;
  cursor: pointer;
  color: rgb(var(--color-foreground));
}

/* WooCommerce price range */
.price_slider_wrapper { padding: 1rem 0; }
.woocommerce-Price-amount.amount { color: rgb(var(--color-foreground)); }
.woocommerce-Price-currencySymbol { font-size: 0.9em; }

/* WooCommerce pagination */
.woocommerce-pagination { margin-top: 4rem; }

/* ============================================================
   WOOCOMMERCE — SINGLE PRODUCT
   ============================================================ */
.template-product {
  padding: 4rem 0 8rem;
}
.product__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media screen and (min-width: 750px) {
  .product__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 990px) {
  .product__grid {
    grid-template-columns: 55% 1fr;
    gap: 6rem;
  }
}

/* WooCommerce product gallery */
.woocommerce-product-gallery { width: 100%; }
.woocommerce-product-gallery__image { border-radius: var(--border-radius-media); overflow: hidden; }
.woocommerce-product-gallery__image img { width: 100%; }
.flex-viewport img { width: 100%; display: block; }

/* Product title */
.product_title.entry-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 1rem;
}

/* Product price */
.woocommerce-Price-amount { font-size: 2rem; font-weight: 500; }
p.price del { color: rgb(var(--color-card-price-old)); font-size: 1.5rem; }
p.price ins { text-decoration: none; }

/* Add to cart button */
.single_add_to_cart_button {
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border: none;
  padding: 1.8rem 4rem;
  font-family: var(--font-button-family);
  font-weight: var(--font-button-weight);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: var(--font-button-letter-spacing);
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.single_add_to_cart_button:hover {
  background: rgb(var(--color-button-hover));
}

/* Quantity */
.quantity .qty {
  width: 5rem;
  height: 4.8rem;
  border: 1px solid rgb(var(--color-border));
  text-align: center;
  font-size: 1.4rem;
  background: transparent;
  color: rgb(var(--color-foreground));
}

/* Tabs */
.woocommerce-tabs .tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgb(var(--color-border));
}
.woocommerce-tabs .tabs li a {
  display: block;
  padding: 1.2rem 2.4rem;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.woocommerce-tabs .tabs li.active a {
  border-bottom-color: rgb(var(--color-foreground));
}
.woocommerce-tabs .panel {
  padding: 3rem 0;
  font-size: 1.4rem;
  line-height: 1.8;
}

/* Reviews */
.woocommerce-Reviews { padding: 2rem 0; }
#review_form_wrapper { padding-top: 3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid rgb(var(--color-border));
  padding: 6rem 0 0;
}
.footer__blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (min-width: 750px) {
  .footer__blocks {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 990px) {
  .footer__blocks {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }
}

.footer-block__heading {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}
.footer-block__details-content {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.3rem;
  line-height: 2;
}
.footer-block__details-content a:hover { text-decoration: underline; }

/* Accordion */
.accordion summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion[open] .icon-caret { transform: rotate(180deg); }

/* Social icons */
.footer__list-social--icon .list-social__item { margin-bottom: 1rem; }
.footer__list-social--icon .list-social__link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  text-decoration: none;
}
.footer__list-social--icon .list-social__link:hover { opacity: 0.7; }

/* Newsletter */
.newsletter__title { margin-bottom: 1rem; font-size: 1.8rem; }
.newsletter__text { font-size: 1.2rem; margin-bottom: 2rem; line-height: 1.6; }
.newsletter-form__field-wrapper {
  display: flex;
  gap: 0;
}
.newsletter-form__field-wrapper .field { flex: 1; }
.newsletter-form__field-wrapper .field__input {
  height: 4.8rem;
  border-right: none;
  font-size: 1.3rem;
}
.newsletter__button {
  height: 4.8rem;
  padding: 0 2rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 1.2rem;
}

/* Footer bottom */
.footer__content-bottom {
  border-top: 1px solid rgb(var(--color-border));
  margin-top: 4rem;
  padding: 2rem 0;
}
.footer__content-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__copyright { font-size: 1.2rem; }
.footer__payment-icons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.reis-pagination { margin-top: 5rem; }
.reis-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  list-style: none;
  flex-wrap: wrap;
}
.reis-pagination__list a,
.reis-pagination__list span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.3rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.reis-pagination__list a:hover { border-color: rgb(var(--color-border)); }
.reis-pagination__list .is-active span,
.reis-pagination__list .current {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media screen and (max-width: 749px) {
  .product-carousel__header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .media-banner__content { padding: 3rem 2rem; }
  .footer__blocks { grid-template-columns: 1fr; }
  .collection-product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ============================================================
   WOOCOMMERCE DEFAULT RESET
   Remove WooCommerce default notices styling conflicts
   ============================================================ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top: none;
  border-left: 4px solid rgb(var(--color-button));
  background: rgb(var(--color-background-secondary));
  padding: 1.5rem 2rem;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.woocommerce-error { border-left-color: #c0392b; }
.woocommerce-message::before,
.woocommerce-info::before { display: none; }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  sticky-header, .scroll-top, cart-drawer,
  .header__search, .header__account, #newsletter-popup { display: none !important; }
}
