/* TryOn - Premium Clothing Brand Styles */

/* CSS Custom Properties */
:root {
  --color-primary: #0f172a;
  --color-secondary: #f8fafc;
  --color-accent: #10b981;
  --color-accent-light: #34d399;
  --color-light-gray: #f1f5f9;
  --color-dark-gray: #1e293b;
  --color-border: #cbd5e1;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-success: #10b981;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --transition-fast: 0.2s ease-in-out;
  --transition-medium: 0.35s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  --transition-smooth: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.16);
  --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.2);
  --shadow-accent: 0 4px 15px rgba(16, 185, 129, 0.25);

  --color-emerald: #10b981;
  --color-teal: #14b8a6;
  --color-blue: #3b82f6;
  --color-purple: #8b5cf6;
  --color-rose: #f43f5e;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --container-width: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-xxl: 8rem;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-secondary);
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--color-text-muted);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-secondary);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-medium);
  box-shadow: none;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text);
  position: relative;
  padding: var(--spacing-xs) 0;
  transition: color var(--transition-fast);
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-medium);
}

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

.cart-link {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -12px;
  right: -16px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 0.625rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition-fast);
  border-radius: 1px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
  animation: glow 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes glow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-content {
  max-width: 700px;
  padding: var(--spacing-lg);
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.hero h1 {
  margin-bottom: var(--spacing-md);
  color: var(--color-secondary);
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.85);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-gray) 100%);
  color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1rem;
}

/* Section Styles */
.section {
  padding: var(--spacing-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-header h2 {
  margin-bottom: var(--spacing-sm);
  background: linear-gradient(135deg, var(--color-primary) 0%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
}

.section-header p {
  max-width: 500px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.feature-card {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.feature-card h4 {
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
  font-size: 1.125rem;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.testimonial-card {
  padding: var(--spacing-lg);
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.testimonial-card .stars {
  font-size: 0.875rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.testimonial-card p {
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--color-text-muted);
}

.testimonial-author {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: var(--spacing-md);
}

.author-info h5 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
}

.author-info span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--color-secondary);
  transition: all var(--transition-smooth);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
}

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

.product-card:hover .product-card-image img {
  transform: scale(1.08) rotate(1deg);
}

.product-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-md);
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-medium);
  display: flex;
  align-items: flex-end;
  min-height: 150px;
}

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

.product-card-overlay .btn {
  width: 100%;
}

.product-card-info {
  padding: var(--spacing-md);
  background: var(--color-secondary);
}

.product-card-info h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  font-size: 1rem;
}

.product-card-info .price {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.125rem;
}

/* Brand Story Section */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.brand-story-content {
  padding: var(--spacing-lg) 0;
}

.brand-story-content h2 {
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--color-primary) 0%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-story-content p {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  font-size: 1.0625rem;
}

.brand-story-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.brand-story-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  z-index: 1;
}

.brand-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.brand-story:hover .brand-story-image img {
  transform: scale(1.05);
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
  color: var(--color-secondary);
  text-align: center;
  padding: var(--spacing-xxl) var(--spacing-md);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.newsletter h3 {
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.newsletter p {
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
  font-size: 1.0625rem;
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-sm);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-secondary);
  transition: all var(--transition-medium);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--color-primary) 0%, #051a2a 100%);
  color: var(--color-secondary);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand .logo {
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.footer h5 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--spacing-md);
  color: var(--color-accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-links a {
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
  font-weight: 600;
}

.social-links a:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
  background: var(--color-secondary);
  color: var(--color-text);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Product Detail Page */
.product-detail {
  padding-top: calc(70px + var(--spacing-lg));
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.product-gallery {
  position: sticky;
  top: calc(70px + var(--spacing-md));
  height: fit-content;
}

.product-main-image {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  margin-bottom: var(--spacing-lg);
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

.product-main-image:hover img {
  transform: scale(1.05);
}

.product-thumbnails {
  display: flex;
  gap: var(--spacing-md);
}

.product-thumbnail {
  width: 100px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  cursor: pointer;
  opacity: 0.6;
  transition: all var(--transition-fast);
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  opacity: 1;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

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

.product-info {
  padding: var(--spacing-lg) 0;
}

.product-info h1 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.product-price {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--color-accent);
}

.product-description {
  margin-bottom: var(--spacing-lg);
  line-height: 1.9;
  font-size: 1.0625rem;
  color: var(--color-text-muted);

  margin-bottom: var(--spacing-sm);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.product-description {
  margin-bottom: var(--spacing-lg);
  line-height: 1.9;
  font-size: 1.0625rem;
  color: var(--color-text-muted);
}

/* Product Details Box */
.product-details-box {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.product-details-box h5 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
  font-size: 0.875rem;
}

.details-list {
  display: grid;
  gap: var(--spacing-sm);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.detail-label {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.9375rem;
}

.detail-value {
  color: var(--color-text-muted);
}

/* Product Features */
.product-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 2px solid var(--color-border);
}

.feature-item {
  text-align: center;
  padding: var(--spacing-lg);
  position: relative;
}

.feature-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.3;
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-heading);
}

.feature-item h4 {
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.feature-item p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Size Selector */
.size-selector {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md) 0;
}

.size-selector label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.size-options {
  display: flex;
  gap: var(--spacing-md);
}

.size-btn {
  width: 60px;
  height: 60px;
  border: 2px solid var(--color-border);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  border-radius: var(--radius-md);
  background: var(--color-secondary);
  color: var(--color-text);
  cursor: pointer;
}

.size-btn:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.size-btn.active {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

/* Quantity Selector */
.quantity-selector {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md) 0;
}

.quantity-selector label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 2px solid var(--color-border);
  width: fit-content;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.quantity-btn {
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
  background: var(--color-secondary);
  color: var(--color-text);
  font-weight: 600;
}

.quantity-btn:hover {
  background: var(--color-light-gray);
}

.quantity-value {
  width: 70px;
  text-align: center;
  font-weight: 700;
  padding: 0.75rem 0;
  border-left: 2px solid var(--color-border);
  border-right: 2px solid var(--color-border);
}

.add-to-cart-btn {
  width: 100%;
  margin-top: var(--spacing-lg);
}

/* Try-On Section */
.try-on-section {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.try-on-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.try-on-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.try-on-header .badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, #e8c547 100%);
  color: var(--color-primary);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 50px;
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-gold);
}

.try-on-header h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.try-on-header p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
}

.try-on-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.upload-box {
  border: 3px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-medium);
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(248,248,248,0.8) 100%);
}

.upload-box:hover {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(212,175,55,0.05) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.upload-icon {
  font-size: 3.5rem;
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
}

.upload-box h4 {
  margin-bottom: var(--spacing-xs);
  color: var(--color-primary);
}

.upload-box p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.upload-box input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 3px);
}

.clothing-preview {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  border: 1px solid var(--color-border);
}

.clothing-preview h4 {
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
}

.clothing-preview img {
  max-height: 350px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.try-on-actions {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

#tryOnBtn {
  padding: 1.25rem 3.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--color-accent) 0%, #e8c547 100%);
  color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-gold);
}

#tryOnBtn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

#tryOnBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

#status {
  margin-top: var(--spacing-md);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  min-height: 1.5rem;
}

.result-section {
  margin-top: var(--spacing-md);
  text-align: center;
}

#resultImage {
  max-width: 100%;
  max-height: 500px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
}

#resultImage.visible {
  display: block;
}

/* Cart Page */
.cart-page {
  padding-top: calc(70px + var(--spacing-lg));
  min-height: 80vh;
}

.cart-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.cart-header h1 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.cart-header p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

.cart-empty {
  text-align: center;
  padding: var(--spacing-xxl) var(--spacing-lg);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-state {
  max-width: 500px;
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: var(--spacing-lg);
}

.empty-state h2 {
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.empty-state p {
  margin-bottom: var(--spacing-lg);
  font-size: 1.0625rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--spacing-lg);
}

.cart-table th {
  text-align: left;
  padding: var(--spacing-md);
  border-bottom: 2px solid var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}

.cart-table td {
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.cart-product-image {
  width: 80px;
  height: 100px;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  overflow: hidden;
  border-radius: var(--radius-md);
}

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

.cart-quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cart-quantity button {
  width: 35px;
  height: 35px;
  font-size: 1rem;
  background: var(--color-light-gray);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cart-quantity button:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.cart-quantity span {
  width: 50px;
  text-align: center;
  font-weight: 600;
}

.remove-btn {
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.remove-btn:hover {
  color: var(--color-primary);
}

.cart-summary {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: var(--spacing-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  margin-bottom: var(--spacing-lg);
  color: var(--color-primary);
  font-size: 1.25rem;
}

.summary-content {
  margin-bottom: var(--spacing-lg);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
  font-size: 0.9375rem;
}

.summary-divider {
  border-top: 2px solid var(--color-border);
  margin: var(--spacing-md) 0;
}

.summary-row.total {
  border-top: none;
  padding-top: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}

.checkout-btn {
  width: 100%;
}

.promo-section {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
  border: 1px solid var(--color-border);
}

.promo-section h4 {
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.promo-section input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast);
}

.promo-section input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.cart-benefits {
  display: grid;
  gap: var(--spacing-md);
}

.benefit {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
}

.benefit-icon {
  font-size: 1.75rem;
}

.benefit strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-primary);
}

.benefit small {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
}

/* About Page */
.about-hero {
  padding-top: calc(70px + var(--spacing-lg));
  text-align: center;
  padding-bottom: var(--spacing-lg);
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  padding: var(--spacing-lg) 0;
}

.about-section.reverse {
  direction: rtl;
}

.about-section.reverse > * {
  direction: ltr;
}

.about-content h3 {
  margin-bottom: var(--spacing-md);
}

.about-content p {
  margin-bottom: var(--spacing-sm);
}

.about-image {
  aspect-ratio: 4/3;
  background: var(--color-light-gray);
  overflow: hidden;
  border-radius: var(--radius-md);
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.value-card {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-medium);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.value-card h4 {
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

/* Impact Grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.impact-stat {
  text-align: center;
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.impact-stat:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.impact-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.impact-stat:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.impact-stat p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Contact Page */
.contact-page {
  padding-top: calc(70px + var(--spacing-lg));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.contact-form {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.contact-form h2 {
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: var(--color-secondary);
  color: var(--color-text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
  font-family: inherit;
}

.contact-info {
  padding: var(--spacing-xl) 0;
}

.contact-info h2 {
  margin-bottom: var(--spacing-lg);
  color: var(--color-primary);
}

.contact-info h3 {
  margin-top: var(--spacing-lg);
  color: var(--color-primary);
}

.contact-details {
  margin-bottom: var(--spacing-lg);
}

.contact-item {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item-icon {
  font-size: 1.75rem;
  min-width: 50px;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.contact-item p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-item a {
  color: var(--color-accent);
  transition: color var(--transition-fast);
}

.contact-item a:hover {
  color: var(--color-primary);
}

/* Page Header */
.page-header {
  padding-top: calc(70px + var(--spacing-lg));
  padding-bottom: var(--spacing-lg);
  text-align: center;
  background: var(--color-light-gray);
}

.page-header h1 {
  margin-bottom: var(--spacing-xs);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-secondary);
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 999;
  }
  
  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links a {
    font-size: 1.25rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid,
  .testimonials-grid,
  .values-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }
  
  .brand-story,
  .product-detail-grid,
  .about-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-section.reverse {
    direction: ltr;
  }
  
  .try-on-grid,
  .product-features {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .size-options {
    gap: var(--spacing-sm);
  }
  
  .cart-table {
    font-size: 0.875rem;
  }
  
  .cart-product-image {
    width: 60px;
    height: 75px;
  }
  
  h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
  h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    padding: var(--spacing-md);
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.75rem;
  }
  
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 0.875rem;
  }
  
  .filter-btn {
    padding: 0.75rem 1.5rem;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .cart-table th:nth-child(4),
  .cart-table td:nth-child(4) {
    display: none;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .contact-grid {
    display: block;
  }
  
  .feature-card,
  .value-card,
  .testimonial-card {
    padding: var(--spacing-md);
  }
  
  .product-thumbnails {
    gap: var(--spacing-sm);
  }
  
  .product-thumbnail {
    width: 80px;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

/* Loading Animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Product card animation */
.product-card {
  animation: slideUp 0.6s ease-out;
}

/* Page transitions */
.page-transition {
  animation: slideIn 0.4s ease-in-out;
}

/* Scroll to top button styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Focus states */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* Code blocks */
code {
  background: var(--color-light-gray);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

/* ===== ADVANCED SHOP FEATURES ===== */

/* Shop Layout */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

/* Filter Sidebar */
.filter-sidebar {
  background: var(--color-light-gray);
  padding: 2rem;
  border-radius: var(--radius-lg);
  height: fit-content;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-border);
}

.filter-header h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
}

.filter-close {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-group h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.filter-group label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Search Box */
.search-box {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.search-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.suggestion-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background var(--transition-fast);
  font-size: 0.9rem;
  color: var(--color-text);
}

.suggestion-item:hover {
  background: var(--color-light-gray);
  color: var(--color-accent);
}

/* Filter Options */
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.filter-option:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-accent);
}

.filter-option input {
  cursor: pointer;
  accent-color: var(--color-accent);
  width: 18px;
  height: 18px;
}

/* Price Filter */
.price-filter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--color-border);
  outline: none;
  -webkit-appearance: none;
}

.price-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.price-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
}

.price-display {
  font-weight: 600;
  color: var(--color-accent);
  font-size: 1rem;
}

/* Size Filter */
.size-filter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.size-btn {
  padding: 0.75rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-text);
}

.size-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.size-btn.active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-primary);
}

/* Color Filter */
.color-filter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.color-btn {
  width: 50px;
  height: 50px;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.color-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.color-btn.active {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.color-btn.active::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Sort Select */
.sort-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-text);
}

.sort-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Filter Bar & View Options */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-border);
}

.filter-toggle {
  display: none;
  background: var(--color-light-gray);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.filter-toggle:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.view-options {
  display: flex;
  gap: 0.5rem;
}

.view-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-secondary);
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-btn.active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-primary);
}

.view-btn:hover {
  border-color: var(--color-accent);
}

.results-count {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Product Card Enhancements */
.product-card {
  position: relative;
  transition: all var(--transition-medium);
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.95) 100%);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100px;
}

.product-card:hover .product-card-overlay {
  transform: translateY(0);
}

.wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--color-secondary);
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 5;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-btn:hover,
.wishlist-btn.active {
  background: var(--color-accent);
  transform: scale(1.1);
}

.wishlist-btn.active {
  color: var(--color-primary);
}

.quick-view-btn {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--color-secondary);
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 5;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-view-btn:hover {
  background: var(--color-accent);
  transform: scale(1.1);
  color: var(--color-primary);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.stars {
  color: #ffc107;
  letter-spacing: 0.1em;
}

.rating-count {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.color-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.color-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.color-dot:hover {
  transform: scale(1.15);
  border-color: var(--color-accent);
}

/* Quick View Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  animation: fadeIn 0.3s ease-out;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--color-secondary);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.4s ease-out;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-accent);
}

.quick-view-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.quick-view-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.quick-view-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.quick-view-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.quick-view-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.quick-view-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-view-actions .btn {
  padding: 1rem;
}

/* Page Actions */
.page-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.wishlist-count {
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

/* Shop Main */
.shop-main {
  flex: 1;
}

/* Responsive Design for Filters */
@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .filter-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    z-index: 999;
    border-radius: 0;
    transition: left var(--transition-medium);
    box-shadow: var(--shadow-lg);
  }

  .filter-sidebar.active {
    left: 0;
  }

  .filter-close {
    display: block;
  }

  .filter-toggle {
    display: inline-flex;
  }

  .size-filter {
    grid-template-columns: repeat(4, 1fr);
  }

  .color-filter {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .quick-view-content {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 2rem;
  }

  .size-filter {
    grid-template-columns: repeat(3, 1fr);
  }

  .color-filter {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-actions {
    flex-direction: column;
  }

  .page-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .filter-sidebar {
    max-width: 100%;
  }

  .size-filter {
    grid-template-columns: repeat(2, 1fr);
  }

  .color-filter {
    grid-template-columns: repeat(2, 1fr);
  }

  .sort-select {
    font-size: 1rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== PRODUCT PAGE ENHANCEMENTS ===== */

/* Size Guide Section */
.size-guide-section {
  background: linear-gradient(135deg, var(--color-light-gray) 0%, #f0f0f0 100%);
}

.size-guide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

.size-chart {
  overflow-x: auto;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.size-table thead {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.size-table th,
.size-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.size-table th {
  font-weight: 600;
  color: var(--color-primary);
}

.size-table thead th {
  color: var(--color-secondary);
  background: var(--color-primary);
}

.size-table tbody tr:hover {
  background: var(--color-light-gray);
}

.fit-guide h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.fit-option {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.fit-option:last-of-type {
  border-bottom: none;
}

.fit-option strong {
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.fit-option p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.measurement-tips {
  background: var(--color-secondary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  margin-top: 1.5rem;
}

.measurement-tips h5 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.measurement-tips p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
  background: var(--color-secondary);
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
}

.reviews-header h2 {
  margin-bottom: 0.5rem;
}

.overall-rating {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  background: var(--color-light-gray);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.rating-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rating-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.rating-stars {
  font-size: 1.5rem;
  color: #ffc107;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rating-bar {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  gap: 1rem;
  align-items: center;
}

.rating-bar > span:first-child {
  color: #ffc107;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.rating-bar .bar {
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent) 0%, #e8c547 100%);
  border-radius: 4px;
}

.rating-bar .count {
  text-align: right;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.reviews-list {
  margin-bottom: 2rem;
}

.review-item {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.review-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.review-rating {
  color: #ffc107;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.review-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.review-title {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.review-text {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.review-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.helpful-btn {
  background: var(--color-light-gray);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  color: var(--color-text-muted);
}

.helpful-btn:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

/* Related Products */
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.related-product {
  text-align: center;
  transition: all var(--transition-medium);
}

.related-product:hover {
  transform: translateY(-8px);
}

.related-product img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  transition: all var(--transition-fast);
}

.related-product:hover img {
  box-shadow: var(--shadow-lg);
}

.related-product h5 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.related-product .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}

/* Purchase Options */
.purchase-options-section {
  background: var(--color-light-gray);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

.purchase-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.purchase-option {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.purchase-option:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.option-checkbox {
  width: 24px;
  height: 24px;
  cursor: pointer;
  accent-color: var(--color-accent);
  margin-top: 2px;
}

.purchase-option label {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.purchase-option strong {
  color: var(--color-primary);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.purchase-option .price {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.purchase-option p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Section Subtitle */
.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .size-guide-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overall-rating {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-header {
    flex-direction: column;
  }

  .review-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .purchase-option {
    grid-template-columns: 1fr;
  }

  .option-checkbox {
    display: none;
  }

  .purchase-option label {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

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

  .size-table {
    font-size: 0.8rem;
  }

  .size-table th,
  .size-table td {
    padding: 0.5rem;
  }

  .rating-bar {
    grid-template-columns: 50px 1fr 40px;
  }

  .review-item {
    padding: 1.5rem;
  }
}

/* ===== WISHLIST PAGE ===== */

.wishlist-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: var(--color-light-gray);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  gap: 2rem;
}

.wishlist-info {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.wishlist-info span {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.2rem;
}

.wishlist-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.empty-state h3 {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.empty-state p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.wishlist-grid {
  margin-bottom: 3rem;
}

.wishlist-item .product-card-info {
  padding: 1.5rem;
}

/* Wishlist Tips */
.wishlist-tips {
  background: linear-gradient(135deg, var(--color-accent) 0%, #e8c547 100%);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  margin-top: 3rem;
}

.wishlist-tips h3 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.75rem;
  color: var(--color-primary);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.tip-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tip-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tip-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tip-card h4 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.tip-card p {
  color: rgba(26, 26, 26, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Wishlist responsive */
@media (max-width: 1024px) {
  .wishlist-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wishlist-controls {
    padding: 1.5rem;
  }

  .wishlist-actions {
    flex-direction: column;
    width: 100%;
  }

  .wishlist-actions .btn {
    width: 100%;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .empty-state {
    padding: 2rem;
  }

  .empty-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .wishlist-info {
    width: 100%;
  }

  .wishlist-tips {
    padding: 2rem 1.5rem;
  }

  .wishlist-tips h3 {
    font-size: 1.35rem;
  }

  .tip-card {
    padding: 1.5rem;
  }

  .tip-icon {
    font-size: 2.5rem;
  }
}

/* ===== CART ENHANCEMENTS ===== */

/* Save for Later Section */
.save-for-later-section {
  background: linear-gradient(135deg, var(--color-light-gray) 0%, #f5f5f5 100%);
}

/* Premium Offers */
.premium-offers {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.offer-card {
  background: var(--color-secondary);
  padding: 2rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.offer-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.offer-card h4 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.offer-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.offer-card .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.checkbox-label:hover {
  color: var(--color-accent);
}

.offer-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--color-accent);
}

/* Responsive Cart Enhancements */
@media (max-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .save-for-later-section {
    margin-top: 3rem;
  }
}

@media (max-width: 480px) {
  .offer-card {
    padding: 1.5rem;
  }

  .offer-icon {
    font-size: 2rem;
  }

  .offer-card h4 {
    font-size: 1rem;
  }
}
