:root{
  --bg:#ffffff;
  --text:#000000;
  --muted:#666666;
  --line:#e5e5e5;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html,body{ 
  height:100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

body{
  margin:0;
  font-family:var(--font);
  background: var(--bg);
  color:var(--text);
  font-size: 14px;
  line-height: 1.5;
  box-sizing: border-box;
}

a{ 
  color:inherit; 
  text-decoration:none;
  transition: opacity 0.2s ease;
}

a:hover{ opacity: 0.7; }

button{ 
  font-family:inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Header */
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.header__inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 40px;
  max-width: 100%;
}

.brand{
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
}

.brand__name{ 
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  mix-blend-mode: difference;
}

.nav{
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav--right {
  justify-self: end;
}

.nav a{
  font-weight: 500;
  mix-blend-mode: difference;
}

.nav__search,
.nav__cart,
.nav__account {
  padding: 8px;
  display: flex;
  align-items: center;
  position: relative;
}

.nav__search svg,
.nav__cart svg,
.nav__account svg {
  stroke: #ffffff;
}

.nav__account {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav__account:hover {
  opacity: 0.7;
}

.cart-badge{
  position: absolute;
  top: 2px;
  right: 2px;
  background: #ffffff;
  color: #000000;
  font-size: 9px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.cart-badge:empty{
  display: none;
}

/* Header variant for light backgrounds */
.header--light {
  color: #000000;
}

.header--light .brand__name,
.header--light .nav a {
  mix-blend-mode: normal;
  color: #000000;
}

.header--light .nav__search svg,
.header--light .nav__cart svg,
.header--light .nav__account svg {
  stroke: #000000;
}

.header--light .nav__account {
  color: #000000;
}

/* Logo Variants for Different Backgrounds */
.brand__logo--light {
  display: inline-block;
}

.brand__logo--dark {
  display: none;
}

.header--light .brand__logo--light {
  display: none;
}

.header--light .brand__logo--dark {
  display: inline-block;
}

/* Hamburger Menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  transition: all 0.3s ease;
}

.header--light .nav__hamburger span {
  background: #000000;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  visibility: visible;
  opacity: 1;
}

.mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__head {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
}

.mobile-menu__close {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.2s;
}

.mobile-menu__close:hover {
  background: var(--line);
}

.mobile-menu__nav {
  flex: 1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu__currency {
  padding: 0 0 24px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}

.mobile-menu__currency-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 12px;
}

.mobile-menu__currency-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.mobile-menu__currency-select:focus {
  outline: none;
  border-color: var(--text);
}

.mobile-menu__link {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.2s;
}

.mobile-menu__link:hover {
  opacity: 0.6;
}

.mobile-menu__section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu__section-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  padding: 12px 0 8px 0;
}

.mobile-menu__section .mobile-menu__link {
  font-size: 14px;
  padding: 10px 0 10px 12px;
}

.mobile-menu__link--social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu__link--social i {
  font-size: 18px;
}

/* Search Modal */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(4px);
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

.search-modal__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 40px;
}

.search-modal__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.search-modal__input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-modal__input {
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.05em;
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 0 8px 0;
  color: var(--text);
  font-family: var(--font);
  text-transform: uppercase;
}

.search-modal__input::placeholder {
  color: var(--muted);
  opacity: 0.5;
}

.search-modal__icon {
  position: absolute;
  right: 0;
  stroke: var(--muted);
  display: none;
}

.search-modal__close {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.2s;
}

.search-modal__close:hover {
  background: var(--line);
}

.search-modal__body {
  flex: 1;
  overflow-y: auto;
  padding-top: 20px;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
}

.search-result-item {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.search-result-item:hover {
  opacity: 0.7;
}

.search-result-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  margin-bottom: 8px;
}

.search-result-info {
  padding: 8px 0;
}

.search-result-name {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  color: var(--text);
}

.search-result-price {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.search-no-results,
.search-error {
  text-align: center;
  padding: 40px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Responsive Search */
@media (max-width: 1024px) {
  .search-results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

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

  .search-modal__header {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .search-modal__input {
    font-size: 16px;
  }

  .search-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .search-modal__close {
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .search-modal__content {
    padding: 16px;
  }

  .search-modal__header {
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .search-modal__input {
    font-size: 14px;
  }

  .search-results-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .search-result-name {
    font-size: 11px;
  }

  .search-result-price {
    font-size: 11px;
  }
}

.header--light .nav__account {
  color: #000000;
}

/* Main Content */
.main{
  position: relative;
  min-height: 100vh;
  overflow-y: scroll;
  height: 100vh;
  scroll-snap-type: y mandatory;
  width: 100%;
  overflow-x: hidden;
}

/* Scrolling Image Gallery */
.scroll-gallery{
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.gallery-item{
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img{
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  filter: none;
  display: block;
}

.gallery-item:hover img{
  transform: scale(1.02);
}

/* Slide Navigation */
.slide-nav {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.slide-nav--hidden {
  opacity: 0;
  visibility: hidden;
}

.slide-nav-item {
  background: transparent;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: #000;
  transition: height 0.3s ease;
}

.slide-nav-item:hover::before {
  height: 100%;
}

.slide-nav-item.active::before {
  height: 100%;
}

.slide-nav-number {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #999;
  transition: color 0.3s ease;
  margin-left: 8px;
  font-weight: 300;
}

.slide-nav-item:hover .slide-nav-number,
.slide-nav-item.active .slide-nav-number {
  color: #000;
  font-weight: 400;
}

/* Loading State */
.gallery-loading, .gallery-error {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Slide Content Overlay */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: #ffffff;
  pointer-events: none;
}

.slide-title {
  font-size: clamp(40px, 8vw, 120px);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-subtitle {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-cta {
  padding: 16px 48px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #ffffff;
  color: #000000;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.slide-cta:hover {
  background: #000000;
  color: #ffffff;
}

/* Content Overlay */
.content-overlay{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
  mix-blend-mode: difference;
  transition: opacity 0.3s ease;
}

.hero-section{
  color: #ffffff;
}

.hero-title{
  font-size: clamp(40px, 8vw, 120px);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  line-height: 1;
}

.hero-subtitle{
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.cta-btn{
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 16px 48px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  font-weight: 500;
}

.cta-btn:hover{
  background: #ffffff;
  color: #000000;
}

.cta-btn-outline {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
}

.cta-btn-outline:hover {
  background: #000000;
  color: #ffffff;
}

/* Cart Drawer */
.drawer{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  pointer-events: none;
}

.drawer.is-open{
  pointer-events: all;
}

.drawer__panel{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 90vw;
  background: var(--bg);
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.drawer.is-open .drawer__panel{
  transform: translateX(0);
}

.drawer__backdrop{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer.is-open .drawer__backdrop{
  opacity: 1;
}

.drawer__head{
  padding: 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.drawer__body{
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  box-sizing: border-box;
  max-width: 100%;
}

.drawer__body * {
  max-width: 100%;
  box-sizing: border-box;
}

.drawer__foot{
  padding: 24px;
  border-top: 1px solid var(--line);
  box-sizing: border-box;
}

.iconbtn{
  padding: 8px;
  cursor: pointer;
  font-size: 18px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.iconbtn:hover{
  color: var(--text);
}

/* Cart Items */
.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.cart-item-image {
  width: 80px;
  aspect-ratio: 3/4;
  background: #f5f5f5;
  overflow: hidden;
  border-radius: 2px;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item-name {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-item-size,
.cart-item-color {
  font-size: 12px;
  color: var(--muted);
}

.cart-item-price {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  margin-top: 4px;
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--muted);
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.cart-item-remove:hover {
  color: #cc0000;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.cart-checkout {
  width: 100%;
  padding: 16px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s ease;
}

.cart-checkout:hover {
  background: #333;
}

.cart-clear {
  width: 100%;
  padding: 14px;
  background: transparent;
  color: #000;
  border: 1px solid #d0d0d0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 12px;
  transition: all 0.2s ease;
}

.cart-clear:hover {
  background: #f5f5f5;
  border-color: #000;
}

/* Footer Newsletter Section */
.footer-slide{
  width: 100%;
  height: 100vh;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.newsletter-section{
  text-align: center;
  max-width: 600px;
  margin-bottom: 80px;
}

.newsletter-title{
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--text);
}

.newsletter-form{
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--text);
  padding-bottom: 8px;
}

.newsletter-input{
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  color: var(--text);
}

.newsletter-input::placeholder{
  color: var(--muted);
}

.newsletter-btn{
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 12px 0;
  color: var(--text);
  transition: opacity 0.2s ease;
}

.newsletter-btn:hover{
  opacity: 0.7;
}

.newsletter-message {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
}

.newsletter-message--success {
  color: #28a745;
}

.newsletter-message--error {
  color: #dc3545;
}

.footer-links{
  display: flex;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-column{
  text-align: left;
}

.footer-column-title{
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column-title::after{
  content: '▼';
  font-size: 8px;
}

/* Footer Popout Modal Styles */
.footer-popout-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.footer-popout-overlay--active {
  opacity: 1;
  visibility: visible;
}

.footer-popout {
  background: white;
  border-radius: 0;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.footer-popout-overlay--active .footer-popout {
  transform: translateY(0);
}

.footer-popout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid #e0e0e0;
}

.footer-popout-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  color: var(--text);
}

.footer-popout-close {
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.footer-popout-close:hover {
  opacity: 0.6;
}

.footer-popout-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-dropdown-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s;
  display: block;
}

.footer-dropdown-link:hover {
  opacity: 0.6;
}

.footer-dropdown-link--social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-dropdown-link--social i {
  font-size: 16px;
}

.footer-copyright{
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  .header__inner{
    padding: 12px 16px;
    grid-template-columns: 1fr auto 1fr;
  }
  
  .brand__name {
    font-size: 16px;
    letter-spacing: 0.08em;
  }
  
  .nav{
    gap: 16px;
    font-size: 12px;
  }
  
  .nav__hamburger {
    display: flex;
  }
  
  .nav--left a {
    display: none;
  }
  
  .nav__search,
  .nav__cart,
  .nav__account {
    padding: 4px;
  }
  
  .nav__search svg,
  .nav__cart svg,
  .nav__account svg {
    width: 18px;
    height: 18px;
  }
  
  .cart-badge {
    font-size: 8px;
    min-width: 14px;
    height: 14px;
    top: 0;
    right: 0;
  }

  .main {
    overflow-x: hidden;
    width: 100%;
  }

  .scroll-gallery {
    width: 100%;
    max-width: 100vw;
  }

  .gallery-item {
    width: 100%;
    max-width: 100vw;
  }
  
  .hero-title,
  .slide-title {
    font-size: clamp(32px, 10vw, 48px);
    padding: 0 20px;
  }
  
  .hero-subtitle,
  .slide-subtitle {
    font-size: clamp(12px, 3vw, 16px);
    padding: 0 20px;
    margin-bottom: 24px;
  }
  
  .cta-btn,
  .slide-cta {
    padding: 12px 24px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .slide-content,
  .content-overlay {
    width: 90%;
    max-width: 100%;
    padding: 0 16px;
  }

  .drawer__panel {
    width: 320px;
    max-width: 85vw;
  }

  .drawer__head,
  .drawer__body,
  .drawer__foot {
    padding: 20px 16px;
  }

  .cart-item {
    flex-direction: column;
    gap: 12px;
  }

  .cart-item-image {
    width: 100%;
    max-width: 100%;
  }
  
  .hero-title{
    font-size: 48px;
  }
  
  .hero-subtitle{
    font-size: 14px;
  }
  
  .cta-btn{
    padding: 12px 32px;
    font-size: 11px;
  }
  
  .footer-links{
    flex-direction: row;
    gap: 40px;
    justify-content: center;
  }
  
  .footer-slide{
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .header__inner{
    padding: 10px 12px;
  }
  
  .brand__name {
    font-size: 14px;
    letter-spacing: 0.06em;
  }
  
  .nav{
    gap: 12px;
  }
  
  .nav__search,
  .nav__cart,
  .nav__account {
    padding: 2px;
  }
  
  .nav__search svg,
  .nav__cart svg,
  .nav__account svg {
    width: 16px;
    height: 16px;
  }
  
  .cart-badge {
    font-size: 7px;
    min-width: 12px;
    height: 12px;
  }
}
/* ========== COLLECTIONS PAGE ========== */
.collections-page {
  padding-top: 80px;
  min-height: 100vh;
  background: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

.page-header {
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  box-sizing: border-box;
}

.page-title {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-subtitle {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.collections-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  width: 100%;
  box-sizing: border-box;
}

.collection-card {
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.collection-card:hover {
  opacity: 0.85;
}

.collection-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 20px;
  background: #f5f5f5;
}

.collection-info {
  text-align: center;
  padding: 0 10px;
}

.collection-name {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.collection-description {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
  white-space: pre-line;
}

.collection-count {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.loading-state {
  text-align: center;
  padding: 80px 20px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 768px) {
  .collections-page {
    padding-top: 60px;
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 30px 16px;
  }

  .page-header {
    padding: 30px 16px 20px;
  }

  .page-title {
    font-size: 24px;
    letter-spacing: 0.15em;
  }

  .page-subtitle {
    font-size: 12px;
  }

  .collection-card {
    max-width: 100%;
  }

  .collection-image {
    width: 100%;
    margin-bottom: 12px;
  }

  .collection-name {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .collection-description {
    font-size: 11px;
    white-space: pre-line;
  }
}

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

/* ========== ZARA-STYLE COLLECTION DETAIL PAGE ========== */
.collection-detail-page {
  width: 100%;
  min-height: 100vh;
  background: #fff;
  padding-top: 60px;
}

.collection-nav {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8e8e8;
}

.nav-back {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.nav-back:hover {
  opacity: 0.6;
}

.collection-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 100px 20px;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid #e8e8e8;
  border-top: 2px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.error-message {
  text-align: center;
  padding: 60px 20px;
  font-size: 14px;
  color: #666;
  letter-spacing: 0.5px;
}

/* Hero Section */
.zara-hero {
  max-width: 1200px;
  margin: 100px auto 80px;
  padding: 0 40px;
  text-align: center;
}

.zara-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.zara-title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #000;
  line-height: 1.2;
}

.zara-description {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
  white-space: pre-line;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.shop-collection-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.shop-collection-btn:hover {
  background: #333;
  gap: 15px;
}

.shop-collection-btn .btn-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.shop-collection-btn:hover .btn-arrow {
  transform: translateX(5px);
}

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

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.products-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
}

.products-count {
  font-size: 13px;
  color: #666;
  letter-spacing: 0.5px;
}

.zara-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px 20px;
}

.zara-product-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity 0.2s;
}

.zara-product-card:hover {
  opacity: 0.8;
}

.zara-product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  background: #f8f8f8;
  margin-bottom: 12px;
  overflow: hidden;
}

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

.zara-product-card:hover .zara-product-image img {
  transform: scale(1.03);
}

.zara-product-info {
  padding: 0 4px;
}

.zara-product-name {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.zara-product-price {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  margin: 0;
}

/* Gallery Section */
.zara-gallery {
  max-width: 1600px;
  margin: 0 auto 100px;
  padding: 0 40px;
}

.gallery-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.gallery-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
}

.zara-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.zara-gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #f8f8f8;
  cursor: pointer;
}

.zara-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.zara-gallery-item:hover .zara-gallery-image {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 40px;
  height: 40px;
}

.lightbox-close:hover {
  opacity: 0.6;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 50%;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .zara-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px 15px;
  }
}

@media (max-width: 968px) {
  .collection-nav {
    padding: 15px 20px;
  }

  .zara-hero {
    margin: 80px auto 60px;
    padding: 0 20px;
  }
  
  .slide-nav {
    left: 15px;
    gap: 6px;
  }
  
  .slide-nav-item {
    padding: 6px 10px;
  }
  
  .slide-nav-number {
    font-size: 12px;
    margin-left: 6px;
  }

  .zara-title {
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }

  .zara-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .shop-collection-btn {
    padding: 12px 28px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .collection-products,
  .zara-gallery {
    padding: 0 20px;
    margin-bottom: 60px;
  }

  .zara-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }

  .zara-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .products-header,
  .gallery-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
  }

  .products-title,
  .gallery-title {
    font-size: 16px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 640px) {
  .collection-detail-page {
    padding-top: 50px;
  }

  .collection-nav {
    top: 50px;
    padding: 12px 16px;
  }

  .nav-back {
    font-size: 11px;
  }

  .zara-hero {
    margin: 60px auto 40px;
    padding: 0 16px;
  }

  .zara-title {
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .zara-description {
    font-size: 13px;
    line-height: 1.6;
  }

  .collection-products,
  .zara-gallery {
    padding: 0 16px;
    margin-bottom: 40px;
  }

  .products-header,
  .gallery-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .products-title,
  .gallery-title {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .products-count {
    font-size: 11px;
  }

  .zara-products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .zara-product-name {
    font-size: 13px;
  }

  .zara-product-price {
    font-size: 13px;
  }

  .zara-gallery-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    font-size: 28px;
  }
}

/* ========== SHOP/PRODUCT LISTING PAGE ========== */
.shop-page {
  padding-top: 80px;
  min-height: 100vh;
  background: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

.shop-header {
  padding: 60px 40px 40px;
  max-width: 1600px;
  margin: 0 auto;
  border-bottom: 1px solid #e5e5e5;
  box-sizing: border-box;
}

.shop-header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sort-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  white-space: nowrap;
}

.sort-select {
  padding: 10px 36px 10px 16px;
  border: 1px solid var(--line);
  background: #ffffff;
  font-size: 13px;
  font-family: var(--font);
  color: var(--text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  min-width: 180px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: border-color 0.2s ease;
}

.sort-select:focus {
  outline: none;
  border-color: var(--text);
}

.sort-select:hover {
  border-color: #999;
}

.shop-title {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.shop-count {
  font-size: 13px;
  color: #666;
  letter-spacing: 0.05em;
}

.shop-filters {
  display: flex;
  gap: 12px;
  padding: 32px 40px;
  max-width: 1600px;
  margin: 0 auto;
  border-bottom: 1px solid #e5e5e5;
  flex-wrap: wrap;
}

.filter-button {
  padding: 10px 18px;
  border: 1px solid #e5e5e5;
  background: transparent;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 400;
}

.filter-button:hover {
  border-color: #000;
}

.filter-button.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.products-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.product-card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}

.product-card:hover .product-image {
  opacity: 0.85;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #f5f5f5;
  transition: opacity 0.3s ease;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-overlay-text {
  width: 100%;
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
}

.product-info {
  padding: 16px 0;
  padding-top: 12px;
}

.product-name {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.product-price {
  font-size: 13px;
  color: #000;
  font-weight: 500;
}

.product-price.sale {
  color: #cc0000;
}

.product-price .original {
  text-decoration: line-through;
  margin-right: 8px;
  color: #999;
}

/* Responsive shop */
@media (max-width: 1400px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 40px 30px;
  }
  
  .shop-header {
    padding: 50px 30px 35px;
  }
  
  .shop-filters {
    padding: 24px 30px;
  }
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 30px 20px;
  }
  
  .shop-header {
    padding: 40px 20px 30px;
  }
  
  .shop-title {
    font-size: 26px;
  }
  
  .shop-filters {
    padding: 20px;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .shop-page {
    padding-top: 60px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px 16px;
  }
  
  .shop-header {
    padding: 30px 16px 20px;
  }

  .shop-header-content {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .shop-sort {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .sort-label {
    font-size: 11px;
  }

  .sort-select {
    width: 100%;
    min-width: auto;
    padding: 12px 36px 12px 16px;
    font-size: 12px;
  }
  
  .shop-title {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .shop-count {
    font-size: 12px;
  }
  
  .shop-filters {
    padding: 16px 16px;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .filter-button {
    padding: 8px 14px;
    font-size: 11px;
    flex-shrink: 0;
  }
  
  .product-overlay-text {
    font-size: 12px;
    padding: 12px;
  }

  .product-card {
    max-width: 100%;
  }

  .product-image {
    width: 100%;
  }

  .product-name,
  .product-price {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px 10px;
  }
  
  .shop-header {
    padding: 20px 10px 15px;
  }
  
  .shop-title {
    font-size: 18px;
    letter-spacing: 0.5px;
  }
  
  .shop-filters {
    padding: 12px 10px;
    gap: 6px;
  }
  
  .filter-button {
    padding: 6px 12px;
    font-size: 10px;
  }
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-page {
  padding-top: 80px;
  min-height: 100vh;
  background: #ffffff;
}

.product-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 100%;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-gallery .gallery-main {
  width: 100%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-gallery .main-product-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #f5f5f5;
  animation: fadeIn 0.3s ease-in;
}

.product-gallery .gallery-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 5px;
  scroll-behavior: smooth;
}

.product-gallery .gallery-thumbnail {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border: 2px solid #ddd;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  opacity: 0.7;
}

.product-gallery .gallery-thumbnail:hover {
  opacity: 1;
  border-color: #999;
}

.product-gallery .gallery-thumbnail.active {
  border-color: #000;
  opacity: 1;
}

.product-gallery .gallery-images-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-gallery .gallery-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #f5f5f5;
  animation: fadeIn 0.3s ease-in;
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #f5f5f5;
}

.product-details {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 0 40px;
}

.product-breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  grid-column: 1 / -1;
}

.product-breadcrumb a {
  color: var(--muted);
}

.product-breadcrumb a:hover {
  color: var(--text);
}

.product-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.product-options {
  margin-bottom: 32px;
}

.option-group {
  margin-bottom: 24px;
}

.option-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 500;
}

.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-btn {
  padding: 10px 20px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-btn:hover {
  border-color: var(--text);
}

.option-btn.active {
  background: var(--text);
  color: #ffffff;
  border-color: var(--text);
}

.option-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.add-to-cart-btn {
  width: 100%;
  background: var(--text);
  color: #ffffff;
  padding: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-bottom: 16px;
  font-weight: 500;
  text-align: center;
  border: none;
}

.add-to-cart-btn:hover {
  opacity: 0.8;
}

.add-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wishlist-btn {
  width: 100%;
  padding: 16px 32px;
  margin-top: 12px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wishlist-btn:hover {
  background: #f5f5f5;
}

.wishlist-btn.active {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.product-info-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.info-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.info-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  padding-top: 0;
}

.info-item-content.open {
  max-height: 1500px;
  padding-top: 12px;
}

.stock-info {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}

.stock-info.in-stock {
  color: #00aa00;
}

.stock-info.low-stock {
  color: #ff9900;
}

.stock-info.out-of-stock {
  color: #cc0000;
}

/* Size Guide Styling */
.size-guide-section {
  margin-bottom: 30px;
}

.size-guide-title {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 15px 0;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.size-guide-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 320px;
}

.size-guide-table thead tr {
  background: #f5f5f5;
}

.size-guide-table th,
.size-guide-table td {
  padding: 10px;
  border: 1px solid var(--line);
  text-align: center;
}

.size-guide-table th:first-child,
.size-guide-table td:first-child {
  font-weight: 500;
  text-align: left;
}

.size-guide-table tr.section-header td {
  background: #f5f5f5;
  font-weight: 500;
  text-align: center;
}

.size-guide-note {
  margin-top: 15px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========== CHECKOUT PAGE ========== */
.checkout-page {
  padding-top: 80px;
  min-height: 100vh;
  background: #fafafa;
  width: 100%;
  overflow-x: hidden;
}

.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  width: 100%;
  box-sizing: border-box;
}

.checkout-header {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 20px;
}

.checkout-title {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.checkout-form {
  background: #ffffff;
  padding: 40px;
  border: 1px solid var(--line);
}

.form-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: var(--font);
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.order-summary {
  background: #ffffff;
  padding: 40px;
  border: 1px solid var(--line);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.summary-title {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.summary-items {
  margin-bottom: 24px;
  max-height: 400px;
  overflow-y: auto;
}

.summary-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.summary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-item-image {
  width: 80px;
  height: 106px;
  object-fit: cover;
  background: #f5f5f5;
}

.summary-item-details {
  flex: 1;
}

.summary-item-name {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-item-variant {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.summary-item-price {
  font-size: 13px;
  font-weight: 500;
}

.summary-totals {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.summary-row.total {
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.place-order-btn {
  width: 100%;
  background: var(--text);
  color: #ffffff;
  padding: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: opacity 0.2s ease;
  font-weight: 500;
}

.place-order-btn:hover {
  opacity: 0.8;
}

.place-order-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.empty-cart {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}

.empty-cart-title {
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--muted);
}

.empty-cart-btn {
  padding: 16px 48px;
  background: var(--text);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.empty-cart-btn:hover {
  opacity: 0.8;
}

.loading-checkout {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========== TABLET BREAKPOINT ========== */
@media (max-width: 1024px) {
  .product-container {
    gap: 40px;
  }

  .product-details {
    padding: 0 32px;
  }
}

/* ========== MOBILE BREAKPOINT ========== */
@media (max-width: 768px) {
  .product-page {
    padding-top: 60px;
  }

  .product-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-breadcrumb {
    padding: 16px 20px;
    margin-bottom: 0;
    order: -1;
  }

  .product-gallery {
    width: 100vw;
    margin-left: 0;
    gap: 8px;
  }

  .gallery-main {
    width: 100%;
  }

  .gallery-thumbnails {
    padding: 0 20px;
    gap: 6px;
  }

  .gallery-thumbnail {
    flex: 0 0 70px;
    height: 90px;
  }

  .product-details {
    position: relative;
    top: 0;
    padding: 24px 20px;
  }

  .product-name {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
  }

  .product-price {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .stock-info {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .product-description {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
    border-bottom: 1px solid var(--line);
  }

  .product-options {
    margin-bottom: 20px;
  }

  .option-label {
    font-size: 11px;
  }

  .option-buttons {
    gap: 8px;
  }

  .option-btn {
    padding: 12px 16px;
    font-size: 12px;
    min-width: 44px;
  }

  .add-to-cart-btn {
    padding: 16px;
    font-size: 12px;
    width: 100%;
  }

  .wishlist-btn {
    padding: 14px 20px;
    font-size: 12px;
    margin-top: 10px;
  }

  .product-info {
    margin-top: 24px;
  }

  .product-info-item {
    padding: 16px 0;
  }

  .info-item-header {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .info-item-content {
    font-size: 12px;
    line-height: 1.6;
  }

  .info-item-content table {
    font-size: 11px;
    min-width: 320px;
  }

  .info-item-content th,
  .info-item-content td {
    padding: 8px;
  }

  /* Checkout Mobile Styles */
  .checkout-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 16px;
  }

  .checkout-page {
    padding-top: 60px;
  }

  .checkout-header {
    padding: 0 16px;
  }

  .checkout-title {
    font-size: 22px;
    letter-spacing: 0.1em;
  }

  .order-summary {
    position: relative;
    top: 0;
    order: -1;
    padding: 24px;
  }

  .checkout-form {
    padding: 24px 20px;
  }

  .checkout-form * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .form-input,
  .form-select {
    width: 100%;
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-title {
    font-size: 14px;
  }

  .form-label {
    font-size: 11px;
  }

  .summary-title {
    font-size: 14px;
  }

  .summary-item-image {
    width: 60px;
    height: 80px;
  }

  .place-order-btn {
    padding: 16px;
    font-size: 12px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
    padding: 24px 12px;
  }

  .shop-filters {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 12px;
  }

  .filter-button {
    flex-shrink: 0;
  }
}

/* Order Timeline Styles */
.timeline {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #000000 0%, #e5e5e5 100%);
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-content {
  padding-top: 4px;
  flex: 1;
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #000000;
}

.timeline-content p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

.timeline-item.completed .timeline-marker {
  background-color: #10b981;
}

.timeline-item.current .timeline-marker {
  background-color: #3b82f6;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.6);
  }
}

@media (max-width: 768px) {
  .timeline {
    gap: 0;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-marker {
    width: 34px !important;
    height: 34px !important;
    font-size: 14px !important;
  }

  .timeline-item {
    gap: 16px;
    margin-bottom: 24px;
  }

  .timeline-content h4 {
    font-size: 14px;
  }

  .timeline-content p {
    font-size: 12px;
  }
}
/* ========== CUSTOMER PAGES RESPONSIVE ========== */
@media (max-width: 1024px) {
  .checkout-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 20px;
  }

  .order-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .checkout-page {
    padding-top: 80px;
  }

  .checkout-container {
    padding: 24px 16px;
    gap: 24px;
  }

  .checkout-title {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }

  .checkout-form,
  .order-summary {
    padding: 24px 16px;
  }

  .form-section {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Account Navigation - Horizontal Scroll on Mobile */
  .form-section > div:has(a[href*="customer"]) {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0 !important;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0;
    margin: 0 -16px;
    padding: 0 16px;
  }

  .form-section > div:has(a[href*="customer"])::-webkit-scrollbar {
    display: none;
  }

  .form-section > div:has(a[href*="customer"]) a,
  .form-section > div:has(a[href*="customer"]) form,
  .form-section > div:has(a[href*="customer"]) button {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 12px 16px !important;
    font-size: 11px !important;
  }

  /* Account Stats Grid */
  div[style*="grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Recent Orders Grid */
  div[style*="display: grid"][style*="gap: 24px"] {
    gap: 16px !important;
  }

  /* Order Card */
  div[style*="border: 1px solid var(--line)"][style*="padding: 24px"] {
    padding: 16px !important;
  }

  /* Order Header Flex */
  div[style*="display: flex"][style*="justify-content: space-between"][style*="align-items: center"] {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }

  /* Order Items Grid */
  div[style*="grid-template-columns: 80px 1fr auto"] {
    grid-template-columns: 60px 1fr !important;
    gap: 12px !important;
  }

  /* Order Item Price - Stack Below */
  div[style*="grid-template-columns: 80px 1fr auto"] > div:last-child {
    grid-column: 2;
    text-align: left !important;
  }

  /* Profile Form Sections */
  .checkout-main > div[style*="display: grid"][style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Order Detail Sections */
  div[style*="display: grid"][style*="grid-template-columns: 1fr 1fr"][style*="gap: 32px"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Action Buttons */
  div[style*="display: flex"][style*="gap: 16px"][style*="flex-wrap: wrap"] {
    flex-direction: column;
  }

  div[style*="display: flex"][style*="gap: 16px"][style*="flex-wrap: wrap"] a,
  div[style*="display: flex"][style*="gap: 16px"][style*="flex-wrap: wrap"] button {
    width: 100%;
  }

  .place-order-btn,
  .cart-checkout {
    padding: 14px 24px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 480px) {
  .checkout-page {
    padding-top: 70px;
  }

  .checkout-container {
    padding: 20px 12px;
  }

  .checkout-title {
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .checkout-form,
  .order-summary {
    padding: 20px 12px;
  }

  .form-label {
    font-size: 11px;
  }

  .form-input {
    padding: 10px 12px;
    font-size: 13px;
  }

  .section-title {
    font-size: 13px;
  }

  .form-section > div:has(a[href*="customer"]) a,
  .form-section > div:has(a[href*="customer"]) form,
  .form-section > div:has(a[href*="customer"]) button {
    padding: 10px 12px !important;
    font-size: 10px !important;
  }

  /* Order Card */
  div[style*="border: 1px solid var(--line)"][style*="padding: 24px"],
  div[style*="border: 1px solid var(--line)"][style*="padding: 16px"] {
    padding: 12px !important;
  }

  /* Order Items Grid */
  div[style*="grid-template-columns: 80px 1fr auto"],
  div[style*="grid-template-columns: 60px 1fr"] {
    grid-template-columns: 50px 1fr !important;
    gap: 8px !important;
  }

  /* Font Sizes */
  div[style*="font-size: 16px"] {
    font-size: 14px !important;
  }

  div[style*="font-size: 14px"] {
    font-size: 12px !important;
  }

  div[style*="font-size: 13px"] {
    font-size: 11px !important;
  }

  div[style*="font-size: 12px"] {
    font-size: 10px !important;
  }

  .place-order-btn {
    padding: 12px 20px !important;
    font-size: 11px !important;
  }
}
/* Account Navigation and Stats Responsive - Fixed */
@media (max-width: 768px) {
  .account-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    margin: 0 -16px;
    padding: 0 16px;
    display: flex;
    flex-wrap: nowrap;
  }

  .account-nav::-webkit-scrollbar {
    display: none;
  }

  .account-nav a,
  .account-nav form,
  .account-nav button {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 12px 16px;
    font-size: 11px;
  }

  .account-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .account-nav a,
  .account-nav form,
  .account-nav button {
    padding: 10px 12px;
    font-size: 10px;
  }
}

/* Professional Account Navigation Styles */
.account-nav {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}

.account-nav a,
.account-nav button {
  padding: 12px 24px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  text-decoration: none;
  transition: opacity 0.2s;
  border-bottom: 2px solid transparent;
}

.account-nav a.active,
.account-nav button.active {
  color: var(--text);
  border-bottom: 2px solid var(--text);
}

.account-nav form {
  display: inline;
  margin: 0;
}

.account-nav a:hover,
.account-nav button:hover {
  opacity: 0.7;
}

/* Responsive Navigation - 2 Column Grid on Mobile */
@media (max-width: 768px) {
  .account-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: none;
  }

  .account-nav a,
  .account-nav button {
    padding: 16px 12px;
    font-size: 11px;
    text-align: center;
    border: 1px solid var(--line);
    border-bottom: none;
  }

  .account-nav a:nth-child(odd),
  .account-nav form:nth-child(odd) button {
    border-right: none;
  }

  .account-nav a:nth-last-child(-n+2),
  .account-nav form:nth-last-child(-n+2) button,
  .account-nav a:last-child,
  .account-nav form:last-child button {
    border-bottom: 1px solid var(--line);
  }

  .account-nav a.active,
  .account-nav button.active {
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.02);
  }
}

/* Modern Footer Styles (Non-Homepage) */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  padding: 60px 0;
}

.footer-newsletter {
  border-bottom: 1px solid var(--line);
}

.footer-newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.footer-newsletter-left {
  flex: 1;
  min-width: 300px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding-bottom: 12px;
}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  color: var(--text);
  letter-spacing: 0.05em;
}

.newsletter-input::placeholder {
  color: #999;
  letter-spacing: 0.05em;
}

.newsletter-submit {
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 0 12px 20px;
  color: #000;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.newsletter-submit:hover {
  opacity: 0.6;
}

.footer-newsletter-message {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-align: left;
}

.footer-newsletter-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 60px;
}

.footer-nav-group {
  position: relative;
}

.footer-nav-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  transition: opacity 0.2s ease;
}

.footer-nav-trigger:hover {
  opacity: 0.6;
}

.footer-nav-trigger svg {
  transition: transform 0.3s ease;
  width: 12px;
  height: 8px;
}

.footer-nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  min-width: 200px;
  display: none;
  flex-direction: column;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.footer-nav-menu.active {
  display: flex;
}

.footer-nav-link {
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-nav-link:last-child {
  border-bottom: none;
}

.footer-nav-link:hover {
  background: var(--gray-50);
}

.footer-nav-link i {
  font-size: 12px;
}

.footer-copyright {
  padding: 24px 0;
  text-align: right;
  font-size: 11px;
  color: #999;
  letter-spacing: 0.05em;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0;
  }

  .footer-newsletter-content {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }

  .footer-newsletter-left {
    min-width: auto;
  }

  .footer-newsletter-right {
    flex-direction: column;
    gap: 0;
  }

  .footer-nav-group {
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
  }

  .footer-nav-group:first-child {
    padding-top: 0;
  }

  .footer-nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0;
  }

  .footer-nav-menu {
    position: static;
    border: none;
    box-shadow: none;
    background: var(--gray-50);
    margin-top: 12px;
    min-width: auto;
    display: none !important;
  }

  .footer-nav-menu.active {
    display: flex !important;
  }

  .footer-nav-trigger svg {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }

  .footer-nav-group:has(.footer-nav-menu.active) .footer-nav-trigger svg {
    transform: rotate(180deg);
  }

  .footer-copyright {
    text-align: center;
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .account-nav a,
  .account-nav button {
    padding: 14px 8px;
    font-size: 10px;
  }
}
