/* Custom styles for Cillago - Embrace Your Curve, Embrace Your Style Design */

/* 修复移动端header滚动跳动问题 */
html,
body {
  margin: 0;
  padding-top: 120px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  background-color: var(--base);
  color: var(--text-primary);
  font-family: sans-serif;
}

/* Banner响应式优化 */
#banner-image {
  transition: transform 0.3s ease-in-out;
  object-fit: contain;
  aspect-ratio: auto;
}

#banner-image:hover {
  transform: scale(1.02);
}

/* 移动端Banner优化 */
@media (max-width: 768px) {
  #banner-image {
    object-fit: contain;
    aspect-ratio: auto;
  }

  /* 确保所有容器在移动端不会溢出 */
  /* 已移除破坏 Swiper 布局的全局 max-width 限制 */
  * {
    box-sizing: border-box !important;
  }

  /* 修复可能的负边距问题 */
  .container {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .row,
  .col {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* 移动端图片比例统一 */
  img {
    object-fit: cover !important;
    max-width: 100% !important;
    max-height: 100% !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  #banner-image {
    object-fit: cover;
    aspect-ratio: 16/8;
  }
}

@media (min-width: 1025px) {
  #banner-image {
    object-fit: cover;
    aspect-ratio: 16/8;
  }
}

/* Account Button - Remove any background and match wishlist/cart icon style */
#btn-account {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 2.5px !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#btn-account::before {
  content: none !important;
}

#btn-account:hover {
  border-color: transparent !important;
  color: var(--accent) !important;
  transform: none !important;
  box-shadow: none !important;
}

#btn-account:hover::before {
  left: -100% !important;
}

#btn-account svg,
#btn-account i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

#btn-account:hover svg,
#btn-account:hover i {
  color: var(--accent) !important;
  transform: none !important;
}

#btn-account span {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

#btn-account:hover span {
  color: var(--accent) !important;
}

/* Hide scrollbar utility */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
:root {
  /* 新配色系统 - 用户提供的方案 */
  --base: #f7f4e9; /* 主背景色 */
  --header-footer-bg: #262626; /* 深色背景 - 页眉与页脚 */
  --primary: #2b523d; /* 强调主色 - CTA、标签、关键图标 */
  --text-primary: #222222; /* 主要文本 - 正文标题、价格文字 */
  --text-secondary: #666666; /* 次要文本 - 辅助说明文字、页脚联系信息 */
  --border: #d4ceb0; /* 边框与修饰 - 产品卡片边框、分割线 */
  --accent: #c2a476; /* 高亮/装饰色 - 导航栏悬停效果、金色细节线条 */

  /* 灰色系统 - 辅助色 */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Product card styling variables - 确保内容完整显示 */
  --product-card-height: auto;
  --product-card-gap-mobile: 16px;
  --product-card-gap-tablet: 24px;
  --product-card-gap-desktop: 24px;
  --product-card-border-radius: 8px;
  --product-card-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  --product-card-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Inter", "Roboto", system-ui, -apple-system, Segoe UI, Helvetica,
    Arial, sans-serif;
  background: var(--base);
  padding-top: 70px; /* 为固定header留出空间 - PC端 */
}

/* 移动端适配 */
@media (max-width: 767px) {
  body {
    padding-top: 70px; /* 移动端header较小 */
  }
}

/* 平板端适配 */
@media (min-width: 768px) and (max-width: 1023px) {
  body {
    padding-top: 90px; /* 平板端header中等 */
  }
}

/* Input styles with Indonesian design */
.input {
  background: var(--base);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  width: 100%;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 64, 46, 0.1);
  transform: translateY(-1px);
}

/* Marquee animation for mobile header */
.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-text {
  padding-right: 100vw;
  flex-shrink: 0;
  white-space: nowrap;
}

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

/* Button styles with Green theme - PeerLess品牌风格 */
.btn-primary {
  background: var(--primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(43, 82, 61, 0.45),
    0 2px 10px rgba(43, 82, 61, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
  z-index: 1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(43, 82, 61, 0.55),
    0 4px 14px rgba(43, 82, 61, 0.4);
  background: var(--primary);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
}

.btn-secondary {
  background: var(--base);
  color: var(--primary);
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 64, 46, 0.3);
  border-color: var(--primary);
}

/* Card styles - PeerLess品牌风格 */
.card {
  background: var(--base);
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 64, 46, 0.08), 0 1px 4px rgba(0, 64, 46, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  box-shadow: 0 12px 40px rgba(0, 64, 46, 0.15), 0 4px 12px rgba(0, 64, 46, 0.1);
  transform: translateY(-6px);
  border-color: var(--border);
}

/* Navigation styles */
.nav-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link.active {
  color: var(--accent);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

/* Background utilities */
.bg-primary {
  background-color: var(--primary);
}

.bg-secondarymain {
  background-color: var(--base);
}

.bg-neutral {
  background-color: var(--base);
}

/* Text utilities */
.text-primary {
  color: var(--primary);
}

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

.text-accent {
  color: var(--accent);
}

/* Border utilities */
.border-primary {
  border-color: var(--primary);
}

.border-neutral {
  border-color: var(--primary);
}

/* 移除所有 Swiper 相关样式，因为已切换为 Grid 布局 */
/* Swiper styles - REMOVED */
/* 轮播容器特殊处理 - REMOVED */
/* 确保 slide 宽度由 Swiper 控制 - REMOVED */
/* Custom Navigation Buttons - REMOVED */

/* Product card styling */
.swiper-slide product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.swiper-slide product-card > div {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.swiper-slide product-card .p-4 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Product grid styling - 统一商品卡片风格 */
#new-products-grid product-card,
.swiper-slide product-card,
#shop-grid product-card,
#related-grid product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--base);
  overflow: hidden;
}

/* Product card hover effects removed - now handled by inline styles */

/* Mobile product card height adjustment - 确保内容完整 */
@media (max-width: 767px) {
  #new-products-grid product-card,
  .swiper-slide product-card,
  #shop-grid product-card,
  #related-grid product-card {
    min-height: auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #new-products-grid product-card,
  .swiper-slide product-card,
  #shop-grid product-card,
  #related-grid product-card {
    min-height: auto;
  }
}

/* 确保网格布局中卡片等高 */
#new-products-grid:not(.swiper-wrapper),
#shop-grid,
#related-grid {
  display: grid;
  align-items: stretch;
}

#new-products-grid:not(.swiper-wrapper) > *,
#shop-grid > *,
#related-grid > * {
  display: flex;
  flex-direction: column;
}

/* 清理旧的强制样式 */
/* .swiper-wrapper { display: flex !important; ... } 已在上方重写 */
/* .swiper-slide { width: auto; ... } 已在上方重写 */

.best-sellers-wrapper {
  /* 最佳销量轮播的专用样式 */
  display: flex !important;
  align-items: stretch;
}

/* Product Card Layout - 等高内容分布 */
#new-products-grid product-card .p-4,
.swiper-slide product-card .p-4,
#shop-grid product-card .p-4,
#related-grid product-card .p-4 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 1.5rem;
  text-align: left;
  min-height: 0;
}

/* 商品卡片内容区域 */
#new-products-grid product-card .category-rating,
.swiper-slide product-card .category-rating,
#shop-grid product-card .category-rating,
#related-grid product-card .category-rating,
#featured-scroll product-card .category-rating {
  margin-bottom: 0.75rem;
}

#new-products-grid product-card h3,
.swiper-slide product-card h3,
#shop-grid product-card h3,
#related-grid product-card h3 {
  margin-bottom: 0.75rem;
  flex-grow: 0;
}

#new-products-grid product-card .price-section,
.swiper-slide product-card .price-section,
#shop-grid product-card .price-section,
#related-grid product-card .price-section,
#featured-scroll product-card .price-section {
  margin-top: auto;
  margin-bottom: 0.75rem;
}

#new-products-grid product-card .product-view-btn,
.swiper-slide product-card .product-view-btn,
#shop-grid product-card .product-view-btn,
#related-grid product-card .product-view-btn,
#featured-scroll product-card .product-view-btn {
  margin-top: 0;
}

/* Product Card Content Sections - Fixed Heights */
#new-products-grid product-card .category-rating,
.swiper-slide product-card .category-rating,
#shop-grid product-card .category-rating,
#related-grid product-card .category-rating,
#featured-scroll product-card .category-rating {
  text-align: left;
  margin-bottom: 0.75rem;
  min-height: 3rem;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

#new-products-grid product-card h4,
.swiper-slide product-card h4,
#shop-grid product-card h4,
#related-grid product-card h4 {
  text-align: left;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--primary);
  height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 0;
}

#new-products-grid product-card .variants-info,
.swiper-slide product-card .variants-info,
#shop-grid product-card .variants-info,
#related-grid product-card .variants-info {
  text-align: left;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
  height: 1.2rem;
  flex-shrink: 0;
}

/* Product Card Price Layout - India Market - Fixed Height */
#new-products-grid product-card .price-section,
.swiper-slide product-card .price-section,
#shop-grid product-card .price-section,
#related-grid product-card .price-section {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  text-align: left;
  height: 3rem;
  flex-shrink: 0;
  justify-content: center;
}

#new-products-grid product-card .price-section .line-through,
.swiper-slide product-card .price-section .line-through,
#shop-grid product-card .price-section .line-through,
#related-grid product-card .price-section .line-through {
  order: 2;
  font-size: 0.875rem;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
  text-align: left;
  height: 1.25rem;
  line-height: 1.25rem;
}

#new-products-grid product-card .price-section .font-bold,
.swiper-slide product-card .price-section .font-bold,
#shop-grid product-card .price-section .font-bold,
#related-grid product-card .price-section .font-bold {
  order: 1;
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 700;
  text-align: left;
  height: 1.5rem;
  line-height: 1.5rem;
}

/* Product Card Button Section - Fixed Height */
#new-products-grid product-card .button-section,
.swiper-slide product-card .button-section,
#shop-grid product-card .button-section,
#related-grid product-card .button-section,
#featured-scroll product-card .button-section {
  margin-top: auto;
  padding-top: 0.75rem;
  text-align: left;
  height: 3.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

#new-products-grid product-card .product-view-btn,
.swiper-slide product-card .product-view-btn,
#shop-grid product-card .product-view-btn,
#related-grid product-card .product-view-btn,
#featured-scroll product-card .product-view-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: white;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(184, 115, 51, 0.3);
}

#new-products-grid product-card .product-view-btn::before,
.swiper-slide product-card .product-view-btn::before,
#shop-grid product-card .product-view-btn::before,
#related-grid product-card .product-view-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

#new-products-grid product-card .product-view-btn:hover::before,
.swiper-slide product-card .product-view-btn:hover::before,
#shop-grid product-card .product-view-btn:hover::before,
#related-grid product-card .product-view-btn:hover::before {
  width: 300px;
  height: 300px;
}

#new-products-grid product-card .product-view-btn .icon,
.swiper-slide product-card .product-view-btn .icon,
#shop-grid product-card .product-view-btn .icon,
#related-grid product-card .product-view-btn .icon,
#featured-scroll product-card .product-view-btn .icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

#new-products-grid product-card .product-view-btn:hover,
.swiper-slide product-card .product-view-btn:hover,
#shop-grid product-card .product-view-btn:hover,
#related-grid product-card .product-view-btn:hover,
#featured-scroll product-card .product-view-btn:hover {
  background: var(--accent);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(184, 115, 51, 0.4),
    0 2px 8px rgba(184, 115, 51, 0.2);
}

#new-products-grid product-card .product-view-btn:hover .icon,
.swiper-slide product-card .product-view-btn:hover .icon,
#shop-grid product-card .product-view-btn:hover .icon,
#related-grid product-card .product-view-btn:hover .icon,
#featured-scroll product-card .product-view-btn:hover .icon {
  transform: scale(1.1);
}

/* Mobile Layout Adjustments - Equal Height */
@media (max-width: 767px) {
  #new-products-grid product-card .p-4,
  .swiper-slide product-card .p-4,
  #shop-grid product-card .p-4,
  #related-grid product-card .p-4 {
    padding: 1rem;
  }

  #new-products-grid product-card .category-rating,
  .swiper-slide product-card .category-rating,
  #shop-grid product-card .category-rating,
  #related-grid product-card .category-rating,
  #featured-scroll product-card .category-rating {
    min-height: 2.5rem;
    margin-bottom: 0.5rem;
    gap: 0.375rem;
  }

  #new-products-grid product-card h4,
  .swiper-slide product-card h4,
  #shop-grid product-card h4,
  #related-grid product-card h4,
  #featured-scroll product-card h4 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    min-height: 2.4em;
  }

  #new-products-grid product-card .variants-info,
  .swiper-slide product-card .variants-info,
  #shop-grid product-card .variants-info,
  #related-grid product-card .variants-info {
    height: 1rem;
    margin-bottom: 0.5rem;
  }

  #new-products-grid product-card .price-section,
  .swiper-slide product-card .price-section,
  #shop-grid product-card .price-section,
  #related-grid product-card .price-section,
  #featured-scroll product-card .price-section {
    min-height: 2.5rem;
    margin-bottom: 1rem;
  }

  #new-products-grid product-card .price-section .line-through,
  .swiper-slide product-card .price-section .line-through,
  #shop-grid product-card .price-section .line-through,
  #related-grid product-card .price-section .line-through {
    font-size: 0.75rem;
    height: 1rem;
    line-height: 1rem;
  }

  #new-products-grid product-card .price-section .font-bold,
  .swiper-slide product-card .price-section .font-bold,
  #shop-grid product-card .price-section .font-bold,
  #related-grid product-card .price-section .font-bold {
    font-size: 1rem;
    height: 1.25rem;
    line-height: 1.25rem;
  }

  #new-products-grid product-card .button-section,
  .swiper-slide product-card .button-section,
  #shop-grid product-card .button-section,
  #related-grid product-card .button-section {
    height: 3rem;
  }

  #new-products-grid product-card .product-view-btn,
  .swiper-slide product-card .product-view-btn,
  #shop-grid product-card .product-view-btn,
  #related-grid product-card .product-view-btn {
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
  }
}

#new-products-grid product-card:hover,
.swiper-slide product-card:hover,
#shop-grid product-card:hover,
#related-grid product-card:hover {
  box-shadow: 0 12px 48px rgba(0, 64, 46, 0.18),
    0 4px 16px rgba(0, 64, 46, 0.12);
  transform: translateY(-10px) scale(1.02);
  border-color: var(--border);
}

/* ========================================
   PRODUCT DETAIL PAGE (PDP) STYLES
   ======================================== */

/* PDP Main Container */
#pdp {
  background: var(--base);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 64, 46, 0.08);
}

/* PDP Image Gallery */
#pdp .space-y-4 > div:first-child {
  background: var(--base);
  border: 2px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 64, 46, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#pdp .space-y-4 > div:first-child:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 64, 46, 0.15);
}

#pdp img {
  border-radius: 16px;
  transition: transform 0.3s ease;
}

#pdp img:hover {
  transform: scale(1.02);
}

/* PDP Thumbnail Grid */
#pdp .grid.grid-cols-4 {
  gap: 0.75rem;
}

#pdp .grid.grid-cols-4 > div {
  background: var(--base);
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

#pdp .grid.grid-cols-4 > div:hover {
  border-color: var(--primary);
  background: var(--base);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 64, 46, 0.2);
}

/* PDP Product Info Card */
#pdp .lg\:sticky > div {
  background: var(--base);
  border: 2px solid rgba(0, 64, 46, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 64, 46, 0.1);
  backdrop-filter: blur(10px);
}

/* PDP Category Badge */
#pdp-category {
  background: var(--primary) !important;
  color: white !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 64, 46, 0.3);
}

/* PDP Rating Stars */
#pdp .flex.items-center.gap-1 svg {
  color: var(--accent) !important;
  filter: drop-shadow(0 1px 2px rgba(184, 115, 51, 0.3));
}

/* PDP Title */
#pdp-title {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

/* PDP Price */
#pdp-price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--accent);
}

/* PDP 原价样式 - 深灰色 */
#pdp-price .line-through {
  color: var(--text-primary) !important;
  text-decoration: line-through;
  text-decoration-thickness: 2px; /* 更粗的删除线 */
  text-decoration-color: var(--text-primary); /* 删除线颜色与文字一致 */
  font-weight: 500; /* 稍微加粗 */
  opacity: 1; /* 完全不透明，确保可见 */
}

/* PDP Variant Selection */
#pdp-sizes {
  gap: 0.75rem;
}

#pdp-sizes button {
  background: var(--base);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#pdp-sizes button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  transition: left 0.3s ease;
  z-index: 0;
}

#pdp-sizes button:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 64, 46, 0.2);
}

#pdp-sizes button.bg-primary {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3);
}

/* =================================================================
   CUSTOM SWIPER NAVIGATION STYLES (Refactored for Premium Look)
   ================================================================= */

/* Hide default Swiper icons */
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

/* Custom Navigation Buttons - REMOVED */
