
/* Closer Clothing Design System */
:root {
  --color-bg: #faf9f7;
  --color-surface: #ffffff;
  --color-surface-alt: #f5f3f0;
  --color-surface-light: #ede9e4;
  --color-border: #e2ddd7;
  --color-border-focus: #c4bdb4;

  --color-text-primary: #1a1a1a;
  --color-text-secondary: #4a4a4a;
  --color-text-muted: #8a8580;

  --color-accent: #c47b5a;
  --color-accent-hover: #b06a4a;
  --color-accent-light: rgba(196, 123, 90, 0.08);
  --color-accent-fg: #ffffff;

  --color-success: #5a8a5a;
  --color-success-bg: rgba(90, 138, 90, 0.1);
  --color-warning: #d4a548;
  --color-error: #c44a4a;

  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.10);

  --space-xs: 4px; --space-sm: 8px; --space-md: 16px; --space-lg: 24px;
  --space-xl: 40px; --space-2xl: 64px; --space-3xl: 96px;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;

  --nav-height: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-bg);
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 16px;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; background: none; border: none; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--color-accent); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  line-height: 1.3;
  font-weight: 600;
}

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 var(--space-md); }
.section { padding: var(--space-2xl) 0; }
.section-alt { background-color: var(--color-surface-alt); padding: var(--space-2xl) 0; }
.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-title { font-size: 2rem; margin-bottom: var(--space-sm); }
.section-subtitle { color: var(--color-text-muted); max-width: 600px; margin: 0 auto; }

.grid-2, .grid-3, .grid-4 { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media(min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media(min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 var(--space-lg); height: 46px;
  font-family: var(--font-heading); font-weight: 500; font-size: 0.95rem;
  border-radius: var(--radius-full); transition: var(--transition-base);
  gap: var(--space-sm); white-space: nowrap; border: 1px solid transparent;
}
.btn-primary { background-color: var(--color-text-primary); color: var(--color-bg); }
.btn-primary:hover { background-color: var(--color-accent); color: var(--color-accent-fg); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background-color: transparent; color: var(--color-text-primary); border-color: var(--color-border); }
.btn-secondary:hover { border-color: var(--color-text-primary); background-color: var(--color-surface-alt); }
.btn-ghost { color: var(--color-accent); padding: 0; height: auto; border-radius: 0; }
.btn-ghost:hover { color: var(--color-text-primary); }
.btn-block { width: 100%; }
.btn-sm { height: 36px; padding: 0 var(--space-md); font-size: 0.875rem; }
.btn-lg { height: 54px; font-size: 1.05rem; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.badge { display: inline-block; padding: 3px 10px; border-radius: var(--radius-full); font-size: 0.7rem; font-weight: 600; font-family: var(--font-heading); }
.badge-sale { background-color: var(--color-accent); color: white; }
.badge-new { background-color: var(--color-success); color: white; }

.announcement-bar { background-color: var(--color-text-primary); color: var(--color-bg); text-align: center; padding: var(--space-xs) var(--space-md); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em; }
.header { background-color: var(--color-surface); border-bottom: 1px solid var(--color-border); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.nav-logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--color-text-primary); display: flex; align-items: center; gap: var(--space-sm); white-space: nowrap; }
.nav-logo span { color: var(--color-accent); }
.nav-links { display: none; gap: var(--space-lg); }
.nav-links a { font-family: var(--font-heading); font-weight: 500; color: var(--color-text-primary); font-size: 0.9rem; }
.nav-links a:hover { color: var(--color-accent); }
.nav-actions { display: flex; align-items: center; gap: var(--space-md); }
.action-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; color: var(--color-text-primary); border-radius: var(--radius-full); transition: var(--transition-fast); position: relative; }
.action-btn:hover { background-color: var(--color-surface-alt); color: var(--color-accent); }
.cart-count { position: absolute; top: -2px; right: -2px; background-color: var(--color-accent); color: white; font-size: 0.65rem; font-weight: 700; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.hamburger { display: block; }
@media(min-width: 1024px) { .nav-links { display: flex; } .hamburger { display: none; } }

.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; visibility: hidden; transition: var(--transition-base); }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; top: 0; left: -320px; width: 300px; height: 100%; background: var(--color-surface); border-right: 1px solid var(--color-border); z-index: 1001; transition: transform var(--transition-base); padding: var(--space-lg); display: flex; flex-direction: column; }
.mobile-menu.active { transform: translateX(320px); }
.mobile-menu-close { align-self: flex-end; background: none; border: none; color: var(--color-text-primary); font-size: 1.5rem; margin-bottom: var(--space-lg); }
.mobile-nav-links { display: flex; flex-direction: column; gap: var(--space-md); }
.mobile-nav-links a { font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-text-primary); border-bottom: 1px solid var(--color-border); padding-bottom: var(--space-sm); display: block; }

.hero { position: relative; min-height: 78vh; display: flex; align-items: center; background-color: var(--color-surface-alt); overflow: hidden; }
.hero-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.45) 45%, rgba(26,26,26,0.15) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 620px; padding: var(--space-2xl) 0; }
.hero-eyebrow { color: var(--color-accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: var(--space-md); font-size: 0.8rem; display: inline-block; padding: 6px 16px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-full); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.hero-title { font-size: 2.75rem; margin-bottom: var(--space-md); color: #ffffff; line-height: 1.1; font-weight: 700; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
@media(min-width: 768px) { .hero-title { font-size: 4.25rem; } .hero-content { padding: var(--space-3xl) 0; } }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.88); margin-bottom: var(--space-xl); line-height: 1.6; max-width: 520px; text-shadow: 0 1px 10px rgba(0,0,0,0.25); }
.hero-actions { display: flex; gap: var(--space-md); flex-wrap: wrap; }

.product-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition-base); display: flex; flex-direction: column; height: 100%; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-border-focus); }
.card-img-wrap { position: relative; padding-bottom: 100%; background-color: var(--color-surface-alt); overflow: hidden; }
.card-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.product-card:hover .card-img { transform: scale(1.04); }
.card-badges { position: absolute; top: var(--space-sm); left: var(--space-sm); display: flex; flex-direction: column; gap: 4px; }
.card-content { padding: var(--space-md); display: flex; flex-direction: column; flex-grow: 1; }
.card-vendor { font-size: 0.7rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.card-title { font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--color-text-primary); margin-bottom: var(--space-xs); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex-grow: 1; }
.card-price-wrap { display: flex; align-items: baseline; gap: var(--space-sm); margin-bottom: var(--space-md); }
.card-price { color: var(--color-text-primary); font-weight: 700; font-size: 1.05rem; }
.card-compare { color: var(--color-text-muted); text-decoration: line-through; font-size: 0.85rem; }

.collection-card { display: block; position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/5; }
.collection-img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.collection-card:hover .collection-img { transform: scale(1.04); }
.collection-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.05) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-lg); }
.collection-title { font-size: 1.4rem; margin-bottom: 4px; color: white; }
.collection-link { color: white; font-weight: 500; font-family: var(--font-heading); font-size: 0.85rem; display: flex; align-items: center; gap: 4px; opacity: 0.9; }
.collection-card:hover .collection-link { gap: 8px; opacity: 1; }

.product-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); margin-top: var(--space-lg); }
@media(min-width: 992px) { .product-layout { grid-template-columns: 1fr 1fr; align-items: start; } }
.gallery-main { width: 100%; aspect-ratio: 1/1; background: var(--color-surface-alt); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: var(--space-sm); }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: var(--space-sm); overflow-x: auto; padding-bottom: var(--space-sm); }
.gallery-thumb { flex: 0 0 72px; height: 72px; background: var(--color-surface-alt); border: 2px solid transparent; border-radius: var(--radius-sm); cursor: pointer; overflow: hidden; opacity: 0.6; transition: var(--transition-base); }
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb.active { opacity: 1; border-color: var(--color-accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { display: flex; flex-direction: column; gap: var(--space-md); }
.product-meta { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--color-border); padding-bottom: var(--space-md); }
.product-title-lg { font-size: 1.75rem; margin-bottom: var(--space-xs); }
.product-price-lg { font-size: 1.5rem; font-weight: 700; color: var(--color-accent); }
.product-compare-lg { font-size: 1.1rem; color: var(--color-text-muted); text-decoration: line-through; margin-left: var(--space-sm); }

.option-group { margin-bottom: var(--space-md); }
.option-label { display: block; margin-bottom: var(--space-xs); font-family: var(--font-heading); font-weight: 500; color: var(--color-text-primary); font-size: 0.85rem; }
.option-btns { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.option-btn { padding: 6px 16px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-full); color: var(--color-text-secondary); font-size: 0.85rem; transition: var(--transition-fast); }
.option-btn:hover { border-color: var(--color-text-primary); color: var(--color-text-primary); }
.option-btn.active { background: var(--color-text-primary); border-color: var(--color-text-primary); color: var(--color-bg); font-weight: 600; }

.qty-wrap { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-md); }
.qty-control { display: flex; align-items: center; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-full); height: 44px; }
.qty-btn { width: 36px; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--color-text-primary); font-size: 1.1rem; }
.qty-btn:hover { color: var(--color-accent); }
.qty-input { width: 44px; text-align: center; font-weight: 600; color: var(--color-text-primary); }

.product-actions { display: flex; flex-direction: column; gap: var(--space-sm); padding-bottom: var(--space-lg); border-bottom: 1px solid var(--color-border); }
.product-desc { margin-top: var(--space-md); }
.product-desc h1, .product-desc h2, .product-desc h3 { margin: var(--space-lg) 0 var(--space-sm); font-size: 1.15rem; }
.product-desc p { margin-bottom: var(--space-md); }
.product-desc ul { list-style: disc; margin-left: var(--space-lg); margin-bottom: var(--space-md); }
.product-desc li { margin-bottom: var(--space-xs); }

.breadcrumb { display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: var(--space-lg); }
.breadcrumb a:hover { color: var(--color-text-primary); }
.breadcrumb-separator { font-size: 0.7rem; }

.trust-bar { background: var(--color-surface); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: var(--space-md) 0; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); text-align: center; }
@media(min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: var(--space-sm); }
.trust-icon { color: var(--color-accent); width: 28px; height: 28px; }
.trust-title { font-family: var(--font-heading); font-size: 0.85rem; color: var(--color-text-primary); font-weight: 600; }
.trust-desc { font-size: 0.75rem; color: var(--color-text-muted); }

.footer { background: var(--color-surface); border-top: 1px solid var(--color-border); padding: var(--space-2xl) 0 var(--space-lg); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
@media(min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-grid-4 { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
@media(min-width: 768px) { .footer-grid-4 { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand-col { max-width: 320px; }
.footer-col h3 { font-size: 1rem; margin-bottom: var(--space-md); }
.footer-links { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-links a { color: var(--color-text-secondary); font-size: 0.9rem; }
.footer-links a:hover { color: var(--color-accent); }
.social-links { display: flex; gap: var(--space-md); margin-top: var(--space-md); }
.social-icon { width: 22px; height: 22px; color: var(--color-text-primary); transition: var(--transition-fast); }
.social-icon:hover { color: var(--color-accent); }
.footer-bottom { padding-top: var(--space-lg); border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: var(--space-md); align-items: center; text-align: center; font-size: 0.8rem; color: var(--color-text-muted); }
@media(min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.payment-icons { display: flex; gap: var(--space-xs); }
.payment-icon { width: 38px; height: 24px; background: white; border-radius: 3px; padding: 2px; border: 1px solid var(--color-border); }

.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(2px); z-index: 2000; opacity: 0; visibility: hidden; transition: var(--transition-base); }
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: -420px; width: 100%; max-width: 400px; height: 100%; background: var(--color-bg); border-left: 1px solid var(--color-border); z-index: 2001; transition: transform var(--transition-base); display: flex; flex-direction: column; }
.cart-drawer.active { transform: translateX(-420px); }
.cart-header { padding: var(--space-md) var(--space-lg); border-bottom: 1px solid var(--color-border); display: flex; justify-content: space-between; align-items: center; }
.cart-header h2 { margin: 0; font-size: 1.2rem; display: flex; align-items: center; gap: var(--space-sm); }
.cart-close { background: none; border: none; color: var(--color-text-primary); font-size: 1.5rem; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.cart-close:hover { background: var(--color-surface-alt); }
.cart-body { flex-grow: 1; overflow-y: auto; padding: var(--space-md); display: flex; flex-direction: column; gap: var(--space-md); }
.cart-empty { text-align: center; padding: var(--space-2xl) 0; color: var(--color-text-muted); }
.cart-item { display: flex; gap: var(--space-md); padding-bottom: var(--space-md); border-bottom: 1px solid var(--color-border); }
.cart-item-img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); background: var(--color-surface-alt); border: 1px solid var(--color-border); }
.cart-item-info { flex-grow: 1; display: flex; flex-direction: column; }
.cart-item-title { font-size: 0.9rem; color: var(--color-text-primary); font-weight: 500; margin-bottom: 2px; }
.cart-item-variant { font-size: 0.75rem; color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.cart-item-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.cart-item-price { font-weight: 600; color: var(--color-text-primary); }
.cart-item-remove { background: none; border: none; color: var(--color-error); font-size: 0.75rem; text-decoration: underline; padding: 0; }
.cart-footer { padding: var(--space-lg); border-top: 1px solid var(--color-border); background: var(--color-surface); }
.cart-subtotal-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-sm); font-size: 1.05rem; font-weight: 600; color: var(--color-text-primary); }
.cart-tax-note { font-size: 0.75rem; color: var(--color-text-muted); margin-bottom: var(--space-lg); text-align: center; }

.toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--color-surface); border: 1px solid var(--color-border); color: var(--color-text-primary); padding: var(--space-md) var(--space-lg); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: var(--space-md); transform: translateY(100px); opacity: 0; transition: var(--transition-base); }
.toast.show { transform: translateY(0); opacity: 1; }
.toast-success { border-left: 4px solid var(--color-success); }
.toast-error { border-left: 4px solid var(--color-error); }

.form-group { margin-bottom: var(--space-md); }
.form-label { display: block; margin-bottom: var(--space-xs); font-size: 0.875rem; color: var(--color-text-primary); font-weight: 500; }
.form-control { width: 100%; height: 46px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 0 var(--space-md); color: var(--color-text-primary); font-family: var(--font-body); transition: var(--transition-fast); }
.form-control:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 2px var(--color-accent-light); }
textarea.form-control { height: auto; padding: var(--space-md); min-height: 120px; resize: vertical; }

.blog-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: var(--transition-base); }
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card:hover .card-img { transform: scale(1.04); }
.blog-content { padding: var(--space-md); flex-grow: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.blog-title { font-size: 1.15rem; margin-bottom: var(--space-sm); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-excerpt { color: var(--color-text-secondary); margin-bottom: var(--space-lg); flex-grow: 1; font-size: 0.85rem; }
.blog-readmore { font-family: var(--font-heading); color: var(--color-accent); font-weight: 500; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 4px; }
.blog-card:hover .blog-readmore { gap: 8px; }

.empty-state { text-align: center; padding: var(--space-3xl) var(--space-md); }
.checkout-wrap { max-width: 600px; margin: var(--space-3xl) auto; text-align: center; }
.loader { border: 4px solid var(--color-surface-alt); border-top: 4px solid var(--color-accent); border-radius: 50%; width: 48px; height: 48px; animation: spin 1s linear infinite; margin: 0 auto var(--space-lg); }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Responsive logo */
.nav-logo { font-size: 1.3rem; white-space: nowrap; }
@media(min-width: 768px) { .nav-logo { font-size: 1.5rem; } }
@media(max-width: 480px) { .nav-logo { font-size: 1.15rem; } .nav-logo svg { width: 22px; height: 22px; } }
@media(max-width: 375px) { .nav-logo { font-size: 1.05rem; } .nav-logo svg { width: 20px; height: 20px; } }

/* ===== Visual Quality Improvements ===== */

/* Better section spacing */
.section { padding: var(--space-2xl) 0; }
.section-alt { padding: var(--space-2xl) 0; }
.section-header { margin-bottom: var(--space-xl); }

/* Improved typography hierarchy */
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }
@media(min-width: 768px) { h1 { font-size: 2.5rem; } }

/* Better product cards */
.product-card { border-radius: var(--radius-md); transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.10); border-color: var(--color-border-focus); }
.card-content { padding: var(--space-md); }
.card-title { line-height: 1.4; }
.card-price { font-size: 1rem; }

/* Improved buttons */
.btn { transition: all 200ms ease; }
.btn-primary:hover { box-shadow: 0 4px 12px rgba(196, 123, 90, 0.3); }
.btn-secondary:hover { border-color: var(--color-text-primary); }

/* Better form inputs */
.form-control { transition: border-color 150ms ease, box-shadow 150ms ease; }
.form-control:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(196, 123, 90, 0.12); }
.form-control::placeholder { color: var(--color-text-muted); opacity: 0.7; }
select.form-control { cursor: pointer; }

/* Improved section backgrounds */
.section-alt { background-color: var(--color-surface-alt); }
.hero { background-color: var(--color-surface-alt); }

/* Better image cropping */
.card-img-wrap { background-color: var(--color-surface-alt); }
.card-img { transition: transform 600ms ease; }

/* Header polish */
.header { box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.announcement-bar { letter-spacing: 0.08em; font-size: 0.78rem; padding: 6px var(--space-md); }

/* Footer polish */
.footer { border-top: 1px solid var(--color-border); }
.footer-col h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: var(--space-md); }
.footer-links a { font-size: 0.88rem; transition: color 150ms ease; }

/* Trust bar polish */
.trust-bar { background: var(--color-surface); }
.trust-title { font-size: 0.82rem; }
.trust-desc { font-size: 0.72rem; }

/* Better blog cards */
.blog-card { transition: transform 250ms ease, box-shadow 250ms ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.blog-title { line-height: 1.35; }

/* Breadcrumb polish */
.breadcrumb { padding: var(--space-md) 0; margin-bottom: var(--space-md); }

/* Product page polish */
.product-title-lg { font-size: 1.6rem; line-height: 1.3; }
@media(min-width: 768px) { .product-title-lg { font-size: 1.85rem; } }
.product-price-lg { font-size: 1.35rem; }
.option-btn { transition: all 150ms ease; }
.option-btn:hover { border-color: var(--color-text-primary); }
.qty-control { border-radius: var(--radius-full); }

/* Cart drawer polish */
.cart-drawer { box-shadow: -4px 0 24px rgba(0,0,0,0.12); }
.cart-item-img { border-radius: var(--radius-sm); }

/* Checkout polish */
.checkout-form-section { border-radius: var(--radius-md); }
.order-summary { border-radius: var(--radius-md); }

/* Mobile responsiveness improvements */
@media(max-width: 768px) {
  .section { padding: var(--space-xl) 0; }
  .section-alt { padding: var(--space-xl) 0; }
  .section-title { font-size: 1.6rem; }
  .hero { min-height: 55vh; }
  .hero-title { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1.05rem; }
  .product-layout { gap: var(--space-lg); }
  .grid-3, .grid-4 { gap: var(--space-md); }
  .footer-grid, .footer-grid-4 { gap: var(--space-lg); }
}

@media(max-width: 480px) {
  .section { padding: var(--space-lg) 0; }
  .section-title { font-size: 1.4rem; }
  .hero-title { font-size: 1.85rem; }
  .btn { height: 42px; font-size: 0.88rem; }
  .btn-lg { height: 48px; }
  .card-content { padding: var(--space-sm) var(--space-md); }
  .product-title-lg { font-size: 1.3rem; }
  .product-price-lg { font-size: 1.2rem; }
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

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

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