/*
Theme Name: Iyi Fashion
Theme URI: https://iyiofficial.com
Author: Iyi Team
Author URI: https://iyiofficial.com
Description: A premium WordPress theme for Iyi Fashion e-commerce brand. Fully integrated with WooCommerce, featuring a transparent sticky header, elegant product grids, and precise design matching veiled.com aesthetics.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iyi-fashion
Domain Path: /languages
Tags: e-commerce, woocommerce, fashion, responsive, custom-header, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready

WC requires at least: 7.0
WC tested up to: 8.0
*/

/* ============================================
   CSS VARIABLES - Design System
   Exact measurements from veiled.com
   ============================================ */
:root {
  /* Colors */
  --color-primary: #000000;
  --color-secondary: #ffffff;
  --color-background: #f5f5f5;
  --color-background-warm: #f8f6f3;
  --color-text: #1a1a1a;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-border: #e5e5e5;
  --color-accent: #4a1a3d;
  --color-sale: #8b1538;
  --color-stock-low: #e67e22;
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 48px;
  --font-size-4xl: 64px;
  
  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;
  
  /* Letter Spacing */
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-wider: 0.1em;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  
  /* Layout */
  --container-max: 1440px;
  --container-narrow: 1200px;
  --section-padding: 80px;
  --grid-gap: 16px;
  
  /* Header */
  --header-height: 60px;
  --announcement-height: 36px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-full: 9999px;
}

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background-warm);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--announcement-height);
  background-color: var(--color-accent);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.announcement-bar__content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.announcement-bar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.announcement-bar__btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.announcement-bar__btn:hover {
  opacity: 1;
}

.announcement-bar__text {
  text-align: center;
  min-width: 300px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: var(--announcement-height);
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color var(--transition-normal), 
              box-shadow var(--transition-normal);
}

.site-header--transparent {
  background-color: transparent;
  color: var(--color-primary);
}

.site-header--solid {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header Left - Menu */
.site-header__left {
  display: flex;
  align-items: center;
  flex: 1;
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  padding: var(--space-sm);
  margin-left: calc(-1 * var(--space-sm));
}

.menu-toggle__icon {
  width: 18px;
  height: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle__icon span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: transform var(--transition-normal), 
              opacity var(--transition-normal);
}

/* Header Center - Logo */
.site-header__center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  transition: font-size var(--transition-normal);
}

.site-header--solid .site-logo {
  font-size: 24px;
}

.site-logo a {
  display: block;
}

/* Header Right - Actions */
.site-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: var(--space-md);
}

.header-action {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  padding: var(--space-sm);
}

.header-action--currency {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.currency-flag {
  width: 16px;
  height: 12px;
  object-fit: cover;
}

.header-action__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-action__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

/* ===== DESKTOP IMAGE LOGO SIZE FIX ===== */
@media (min-width: 1024px) {

  .site-header .site-logo img {
    max-height: 90px !important;
    width: auto !important;
  }

}

/* ===== PERFECT MOBILE HEADER CENTER ===== */
@media (max-width: 768px) {

  .site-header__inner {
    position: relative;
  }

  /* Center logo absolutely */
  .site-header__center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex: unset;
  }

  /* Prevent logo resizing */
  .site-logo {
    font-size: 18px !important;
    white-space: nowrap;
  }

  .site-logo img {
    max-height: 40px !important;
    width: auto;
  }

  /* Make left & right hug edges */
  .site-header__left {
    flex: 0 0 auto;
  }

  .site-header__right {
    flex: 0 0 auto;
    margin-left: auto;
    gap: 8px;
  }

  .header-action {
    padding: 4px;
  }

}

/* ============================================
   FULL-SCREEN MENU
   ============================================ */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-secondary);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.fullscreen-menu--open {
  transform: translateX(0);
}

.fullscreen-menu__header {
  height: calc(var(--header-height) + var(--announcement-height));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.menu-close {
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  padding: var(--space-sm);
}

.fullscreen-menu__content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
}

.menu-main-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.menu-main-nav a {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.menu-main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width var(--transition-normal);
}

.menu-main-nav a:hover::after {
  width: 100%;
}

.menu-column h4 {
  font-family: var(--font-body);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  color: var(--color-text-light);
}

.menu-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.menu-column a {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  transition: color var(--transition-fast);
}

.menu-column a:hover {
  color: var(--color-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.1) 50%,
    rgba(0,0,0,0.3) 100%
  );
  z-index: 2;
}

.hero-section__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-secondary);
  padding: var(--space-lg);
}

.hero-section__title {
  font-size: clamp(var(--font-size-2xl), 5vw, var(--font-size-4xl));
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.hero-section__subtitle {
  font-size: var(--font-size-sm);
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}

.hero-section__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  font-weight: 500;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.btn--primary:hover {
  background-color: #333;
}

.btn--outline {
  background-color: transparent;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

.btn--outline:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.btn--outline-dark {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn--outline-dark:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.btn--full {
  width: 100%;
}

.btn--small {
  padding: 10px 20px;
  font-size: 10px;
}

/* ============================================
   CATEGORY BANNERS
   ============================================ */
.category-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  padding: var(--grid-gap);
}

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

.category-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-banner:hover .category-banner__image {
  transform: scale(1.05);
}

.category-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.1) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

.category-banner__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  color: var(--color-secondary);
}

.category-banner__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.category-banner__link {
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.products-section {
  padding: var(--space-3xl) var(--space-lg);
  max-width: var(--container-max);
  margin: 0 auto;
}

.products-section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.products-section__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.products-section__link {
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.product-card {
  position: relative;
  background-color: #ebebeb;
}

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

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-card__badge {
  position: absolute;
  top: var(--space-md);
  left: 0;
  background-color: var(--color-sale);
  color: var(--color-secondary);
  padding: 4px 8px;
  font-size: 9px;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.product-card__wishlist {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-fast);
}

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

.product-card__quick-add {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.product-card:hover .product-card__quick-add {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card__info {
  padding: var(--space-md);
  text-align: center;
  background-color: var(--color-background-warm);
}

.product-card__name {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.product-card__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
}

.product-card__price--sale {
  color: var(--color-sale);
}

.product-card__price--regular {
  text-decoration: line-through;
  color: var(--color-text-muted);
}

/* ============================================
   PRODUCT TABS
   ============================================ */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-md);
}

.product-tab {
  font-size: var(--font-size-sm);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-text-light);
  position: relative;
  padding-bottom: var(--space-md);
  margin-bottom: calc(-1 * var(--space-md) - 1px);
}

.product-tab--active {
  color: var(--color-primary);
}

.product-tab--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-primary);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: var(--space-3xl) var(--space-lg);
  max-width: var(--container-max);
  margin: 0 auto;
}

.testimonials-section__header {
  margin-bottom: var(--space-2xl);
}

.testimonials-section__title {
  font-size: var(--font-size-xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.testimonial-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.testimonial-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0) 50%
  );
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.testimonial-card:hover .testimonial-card__overlay {
  opacity: 1;
}

.testimonial-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  color: var(--color-secondary);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.testimonial-card:hover .testimonial-card__content {
  transform: translateY(0);
  opacity: 1;
}

.testimonial-card__author {
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.testimonial-card__text {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-relaxed);
  opacity: 0.9;
}

/* ============================================
   FLAGSHIP STORE SECTION
   ============================================ */
.flagship-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.flagship-section__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flagship-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

.flagship-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-secondary);
  padding: var(--space-lg);
}

.flagship-section__title {
  font-size: clamp(var(--font-size-xl), 4vw, var(--font-size-3xl));
  margin-bottom: var(--space-md);
}

.flagship-section__text {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-xl);
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  padding: var(--space-2xl) var(--space-lg);
  max-width: var(--container-max);
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}

.feature-item {
  text-align: center;
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.feature-item__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xs);
}

.feature-item__text {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  line-height: var(--line-height-relaxed);
}

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

.footer-main {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-2xl);
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-column a {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-primary);
}

.footer-column--about p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: var(--line-height-relaxed);
}

.footer-newsletter__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.footer-newsletter__form {
  display: flex;
  gap: var(--space-sm);
}

.footer-newsletter__input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  font-size: var(--font-size-sm);
  background-color: transparent;
}

.footer-newsletter__input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.footer-newsletter__btn {
  padding: 12px 24px;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: background-color var(--transition-fast);
}

.footer-newsletter__btn:hover {
  background-color: #333;
}

.footer-newsletter__note {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg);
}

.footer-bottom__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-currency {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.footer-copyright {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ============================================
   WOOCOMMERCE PRODUCT PAGE
   ============================================ */
.product-page {
  padding-top: calc(var(--header-height) + var(--announcement-height));
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.product-page__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + var(--announcement-height) + var(--space-lg));
}

.product-gallery__main {
  position: relative;
  aspect-ratio: 3/4;
  background-color: #ebebeb;
  overflow: hidden;
}

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

.product-gallery__zoom {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-text-light);
}

.product-info__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.product-info__badge {
  display: inline-block;
  background-color: var(--color-sale);
  color: var(--color-secondary);
  padding: 4px 8px;
  font-size: 9px;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.product-info__price {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.product-info__price--sale {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
}

.product-info__price--regular {
  font-family: var(--font-heading);
  font-size: var(--font-size-md);
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.product-info__tax {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.product-info__tax a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-size-guide {
  margin-bottom: var(--space-lg);
}

.product-size-guide__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.product-attributes {
  margin-bottom: var(--space-lg);
}

.product-attribute {
  margin-bottom: var(--space-md);
}

.product-attribute__label {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  display: block;
}

.product-attribute__label strong {
  color: var(--color-primary);
  font-weight: 500;
}

.product-attribute__options {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.attribute-option {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.attribute-option:hover {
  border-color: var(--color-primary);
}

.attribute-option--selected {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  border-color: var(--color-primary);
}

.product-add-to-cart {
  margin-bottom: var(--space-md);
}

.product-add-to-cart__btn {
  width: 100%;
  padding: 16px;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: background-color var(--transition-fast);
}

.product-add-to-cart__btn:hover {
  background-color: #333;
}

.product-payment-options {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.product-payment-options a {
  font-size: var(--font-size-xs);
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--color-text-light);
}

.product-stock {
  margin-bottom: var(--space-lg);
}

.product-stock__text {
  font-size: var(--font-size-xs);
  color: var(--color-stock-low);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.product-stock__text::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--color-stock-low);
  border-radius: 50%);
}

.product-stock__bar {
  height: 3px;
  background-color: var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.product-stock__progress {
  height: 100%;
  background-color: var(--color-stock-low);
  border-radius: var(--radius-full);
}

.product-accordion {
  border-top: 1px solid var(--color-border);
}

.product-accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.product-accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-size: var(--font-size-sm);
  text-align: left;
}

.product-accordion__icon {
  width: 12px;
  height: 12px;
  position: relative;
}

.product-accordion__icon::before,
.product-accordion__icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: transform var(--transition-fast);
}

.product-accordion__icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.product-accordion__icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.product-accordion__item--open .product-accordion__icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.product-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.product-accordion__item--open .product-accordion__content {
  max-height: 500px;
}

.product-accordion__text {
  padding-bottom: var(--space-md);
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: var(--line-height-relaxed);
}

.product-accordion__list {
  padding-bottom: var(--space-md);
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: var(--line-height-relaxed);
  padding-left: var(--space-md);
}

.product-accordion__list li {
  list-style: disc;
  margin-bottom: var(--space-xs);
}

/* ============================================
   WOOCOMMERCE SHOP PAGE
   ============================================ */
.shop-page {
  padding-top: calc(var(--header-height) + var(--announcement-height));
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.shop-page__header {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.shop-page__title {
  font-size: var(--font-size-2xl);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-lg);
}

.shop-toolbar__count {
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.shop-toolbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.shop-toolbar__view {
  display: flex;
  gap: var(--space-xs);
}

.view-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: opacity var(--transition-fast);
}

.view-btn--active,
.view-btn:hover {
  opacity: 1;
}

.shop-toolbar__filter {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
}

/* ============================================
   NEWSLETTER POPUP
   ============================================ */
.newsletter-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.newsletter-popup--active {
  opacity: 1;
  visibility: visible;
}

.newsletter-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
}

.newsletter-popup__content {
  position: relative;
  background-color: var(--color-background-warm);
  padding: var(--space-3xl);
  max-width: 450px;
  width: 90%;
  text-align: center;
  z-index: 1;
}

.newsletter-popup__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
}

.newsletter-popup__logo {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}

.newsletter-popup__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.newsletter-popup__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  line-height: var(--line-height-relaxed);
}

.newsletter-popup__form {
  margin-bottom: var(--space-md);
}

.newsletter-popup__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-primary);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
  text-align: center;
}

.newsletter-popup__input:focus {
  outline: none;
}

.newsletter-popup__btn {
  width: 100%;
  padding: 14px;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: background-color var(--transition-fast);
}

.newsletter-popup__btn:hover {
  background-color: #333;
}

.newsletter-popup__skip {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-banners {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .product-page__inner {
    grid-template-columns: 1fr;
  }
  
  .product-gallery {
    position: relative;
    top: 0;
  }
  
  .fullscreen-menu__content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 50px;
    --announcement-height: 32px;
  }
  
  .site-logo {
    font-size: 20px;
  }
  
  .header-action__text {
    display: none;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-banners {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .features-bar {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .footer-bottom__inner {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .fullscreen-menu__content {
    grid-template-columns: 1fr;
    padding: var(--space-xl);
  }
  
  .menu-main-nav a {
    font-size: var(--font-size-xl);
  }
  
  .hero-section__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    gap: var(--space-sm);
  }
  
  .footer-main {
    grid-template-columns: 1fr;
  }
  
  .footer-newsletter__form {
    flex-direction: column;
  }
  
  .newsletter-popup__content {
    padding: var(--space-xl);
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}