@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --white: #FFFFFF;
  --teal: #0F766E;
  --teal-light: #14B8A6;
  --teal-dark: #0D5F58;
  --orange: #F59E0B;
  --orange-light: #FCD34D;
  --slate: #334155;
  --slate-light: #64748B;
  --sand: #F5E6D3;
  --sand-dark: #E8D0B5;
  --light-gray: #F8FAFC;
  --border: #E2E8F0;
  --text-dark: #1E293B;
  --text-medium: #475569;
  --text-light: #94A3B8;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15, 118, 110, 0.08);
  --shadow-md: 0 8px 40px rgba(15, 118, 110, 0.12);
  --shadow-hover: 0 16px 48px rgba(15, 118, 110, 0.18);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { line-height: 1.7; color: var(--text-medium); }

.serif { font-family: 'Playfair Display', serif; }
.text-teal { color: var(--teal); }
.text-orange { color: var(--orange); }
.text-slate { color: var(--slate); }
.text-light { color: var(--text-light); }
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.section-title { margin-bottom: 48px; }
.section-title h2 { margin-bottom: 12px; }
.section-title p { font-size: 1.05rem; max-width: 640px; }
.section-title.centered { text-align: center; }
.section-title.centered p { margin: 0 auto; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; align-items: center; gap: 12px; }
.flex-wrap { flex-wrap: wrap; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.9375rem;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--teal); color: var(--white); border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,118,110,0.35); }

.btn-secondary {
  background: var(--white); color: var(--teal); border-color: var(--teal);
}
.btn-secondary:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

.btn-orange {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.btn-orange:hover { background: #D97706; border-color: #D97706; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.35); }

.btn-ghost {
  background: transparent; color: var(--slate); border-color: var(--border);
}
.btn-ghost:hover { background: var(--light-gray); border-color: var(--slate-light); }

.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 40px; font-size: 1.0625rem; }
.btn-icon { padding: 10px; border-radius: 50%; width: 40px; height: 40px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.header-top {
  background: var(--teal); color: var(--white);
  padding: 8px 0; font-size: 0.8125rem;
}
.header-top .container { display: flex; align-items: center; justify-content: space-between; }
.header-top a { color: rgba(255,255,255,0.85); }
.header-top a:hover { color: var(--white); }
.header-top-links { display: flex; gap: 20px; align-items: center; }

.header-main { padding: 16px 0; }
.header-main .container { display: flex; align-items: center; gap: 32px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px; background: var(--teal); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 1.25rem;
}
.logo-text { font-size: 1.5rem; font-weight: 800; color: var(--teal); letter-spacing: -0.02em; }
.logo-text span { color: var(--orange); }

.search-bar {
  flex: 1; max-width: 520px;
  display: flex; align-items: center;
  background: var(--light-gray); border: 2px solid var(--border);
  border-radius: 50px; overflow: hidden; transition: var(--transition);
}
.search-bar:focus-within { border-color: var(--teal); background: white; box-shadow: 0 0 0 4px rgba(15,118,110,0.08); }
.search-bar input {
  flex: 1; padding: 10px 20px; background: none; border: none; outline: none;
  font-size: 0.9375rem; color: var(--text-dark);
}
.search-bar button {
  padding: 10px 20px; background: var(--teal); color: white; border-radius: 0 50px 50px 0;
  font-weight: 600; font-size: 0.875rem; transition: var(--transition);
}
.search-bar button:hover { background: var(--teal-dark); }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.header-action-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 12px; border-radius: var(--radius-sm); transition: var(--transition);
  color: var(--text-medium); font-size: 0.75rem; font-weight: 500; position: relative;
}
.header-action-btn:hover { background: var(--light-gray); color: var(--teal); }
.header-action-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: 4px; right: 8px;
  background: var(--orange); color: white; font-size: 0.625rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

.header-nav { border-top: 1px solid var(--border); }
.header-nav .container { display: flex; align-items: center; gap: 4px; padding-top: 0; padding-bottom: 0; }
.nav-item {
  position: relative; display: flex; align-items: center; gap: 4px;
  padding: 14px 16px; font-size: 0.9rem; font-weight: 500; color: var(--text-medium);
  transition: var(--transition); white-space: nowrap; cursor: pointer;
}
.nav-item:hover, .nav-item.active { color: var(--teal); }
.nav-item::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--teal); transition: var(--transition);
}
.nav-item:hover::after, .nav-item.active::after { left: 0; right: 0; }
.nav-item svg { width: 14px; height: 14px; transition: var(--transition); }
.nav-item:hover svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 280px;
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: var(--transition); z-index: 100;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  border-radius: var(--radius-sm); color: var(--text-medium); font-size: 0.875rem;
  transition: var(--transition);
}
.dropdown-link:hover { background: var(--light-gray); color: var(--teal); }
.dropdown-link-icon { width: 32px; height: 32px; background: var(--sand); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dropdown-link-icon svg { width: 16px; height: 16px; color: var(--teal); }

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  background: none; border: none; cursor: pointer;
}
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--slate); border-radius: 2px; transition: var(--transition); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: white; z-index: 2000; overflow-y: auto; padding: 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.mobile-nav-link { display: block; padding: 14px 0; font-size: 1rem; font-weight: 500; color: var(--text-dark); border-bottom: 1px solid var(--border); }
.mobile-nav-link:hover { color: var(--teal); }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 14px 0; background: var(--light-gray); border-bottom: 1px solid var(--border); }
.breadcrumb ol { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb li { font-size: 0.8125rem; color: var(--text-light); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 8px; }
.breadcrumb a { color: var(--text-medium); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .current { color: var(--teal); font-weight: 500; }

/* ===== FOOTER ===== */
.site-footer { background: var(--slate); color: rgba(255,255,255,0.8); }
.footer-main { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-mark { background: var(--teal); }
.footer-desc { margin-top: 16px; font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.social-btn:hover { background: var(--teal); color: white; transform: translateY(-2px); }
.social-btn svg { width: 16px; height: 16px; }

.footer-col h4 { color: white; font-size: 0.9375rem; font-weight: 600; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-links a:hover { color: var(--teal-light); padding-left: 4px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.875rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--teal-light); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8125rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--teal-light); }

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: white; border-radius: var(--radius); border: 1px solid var(--border);
  overflow: hidden; transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: transparent; }

.product-card-img {
  position: relative; overflow: hidden; background: var(--light-gray);
  aspect-ratio: 4/3;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
}
.badge-new { background: var(--teal); color: white; }
.badge-sale { background: var(--orange); color: white; }
.badge-top { background: var(--slate); color: white; }
.badge-eco { background: #22C55E; color: white; }

.product-wishlist-btn {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px;
  background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12); transition: var(--transition); opacity: 0;
}
.product-wishlist-btn svg { width: 16px; height: 16px; color: var(--text-light); }
.product-card:hover .product-wishlist-btn { opacity: 1; }
.product-wishlist-btn:hover svg { color: #EF4444; }
.product-wishlist-btn.active svg { color: #EF4444; fill: #EF4444; }

.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-category-tag { font-size: 0.75rem; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.product-name { font-size: 0.9375rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
.product-name a:hover { color: var(--teal); }
.product-desc { font-size: 0.8125rem; color: var(--text-light); line-height: 1.5; margin-bottom: 12px; flex: 1; }
.product-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.spec-tag { padding: 3px 8px; background: var(--light-gray); border-radius: 20px; font-size: 0.7rem; color: var(--text-medium); font-weight: 500; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: var(--orange); font-size: 0.8rem; }
.rating-count { font-size: 0.75rem; color: var(--text-light); }
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.price-current { font-size: 1.25rem; font-weight: 800; color: var(--teal); }
.price-old { font-size: 0.9rem; color: var(--text-light); text-decoration: line-through; }
.price-discount { font-size: 0.75rem; font-weight: 700; color: var(--orange); background: rgba(245,158,11,0.1); padding: 2px 6px; border-radius: 4px; }
.product-card-actions { display: flex; gap: 8px; }
.product-card-actions .btn { flex: 1; }

/* ===== CATEGORY CARDS ===== */
.category-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; display: flex; flex-direction: column; justify-content: flex-end;
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.category-card:hover img { transform: scale(1.05); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,118,110,0.85) 0%, rgba(15,118,110,0.2) 50%, transparent 100%);
}
.category-card-body { position: relative; z-index: 1; padding: 24px 20px; }
.category-card-body h3 { color: white; font-size: 1.125rem; margin-bottom: 4px; }
.category-card-body p { color: rgba(255,255,255,0.8); font-size: 0.8125rem; margin-bottom: 12px; }
.category-card-body .btn { font-size: 0.8125rem; padding: 8px 18px; }

/* ===== COMPARISON TABLE ===== */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; background: white; }
.compare-table th {
  background: var(--teal); color: white; padding: 16px 20px; text-align: left;
  font-size: 0.875rem; font-weight: 600; white-space: nowrap;
}
.compare-table th:first-child { min-width: 200px; }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--light-gray); }
.compare-table tr:hover td { background: rgba(15,118,110,0.04); }
.compare-table .feature-name { font-weight: 600; color: var(--text-dark); }
.check-yes { color: #22C55E; font-weight: 700; }
.check-no { color: #EF4444; }
.check-partial { color: var(--orange); }

/* ===== FILTERS SIDEBAR ===== */
.page-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; }
.sidebar { flex-shrink: 0; }
.filter-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; }
.filter-card h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 7px 0; cursor: pointer; }
.filter-option input[type="checkbox"] {
  width: 17px; height: 17px; accent-color: var(--teal); cursor: pointer;
}
.filter-option label { font-size: 0.875rem; color: var(--text-medium); cursor: pointer; flex: 1; }
.filter-option .filter-count { font-size: 0.75rem; color: var(--text-light); }
.price-range-inputs { display: flex; gap: 10px; align-items: center; margin-top: 12px; }
.price-range-inputs input {
  flex: 1; padding: 8px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.875rem; outline: none; transition: var(--transition);
}
.price-range-inputs input:focus { border-color: var(--teal); }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden; min-height: 620px;
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,118,110,0.88) 0%, rgba(15,118,110,0.55) 55%, rgba(15,118,110,0.1) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 620px; }
.hero-eyebrow { font-size: 0.875rem; font-weight: 600; color: var(--orange-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.hero-title { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 20px; }
.hero-desc { font-size: 1.075rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; }
.hero-stat-value { font-size: 1.75rem; font-weight: 800; color: white; }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* ===== FEATURE STRIP ===== */
.feature-strip { background: var(--sand); border-top: 1px solid var(--sand-dark); border-bottom: 1px solid var(--sand-dark); }
.feature-strip .container { display: flex; justify-content: space-between; padding: 20px 24px; gap: 16px; }
.feature-item { display: flex; align-items: center; gap: 12px; }
.feature-item-icon { width: 42px; height: 42px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-item-icon svg { width: 20px; height: 20px; color: white; }
.feature-item-title { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); }
.feature-item-desc { font-size: 0.75rem; color: var(--text-light); }

/* ===== PRODUCT GRID TOOLBAR ===== */
.grid-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding: 16px 20px; background: white; border: 1px solid var(--border); border-radius: var(--radius); }
.toolbar-left { font-size: 0.875rem; color: var(--text-medium); }
.toolbar-right { display: flex; align-items: center; gap: 12px; }
.sort-select { padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.875rem; outline: none; cursor: pointer; transition: var(--transition); }
.sort-select:focus { border-color: var(--teal); }
.view-toggle { display: flex; gap: 4px; }
.view-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); transition: var(--transition); color: var(--text-light); }
.view-btn.active, .view-btn:hover { background: var(--teal); color: white; }
.view-btn svg { width: 16px; height: 16px; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white; border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow); position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-quote { font-size: 3rem; line-height: 1; color: var(--teal); opacity: 0.3; margin-bottom: -10px; font-family: Georgia, serif; }
.testimonial-text { font-size: 0.9375rem; color: var(--text-medium); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--sand); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.author-meta { font-size: 0.8rem; color: var(--text-light); }

/* ===== BLOG / ARTICLE CARDS ===== */
.article-card {
  background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  transition: var(--transition); display: flex; flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.article-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--light-gray); }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.article-tag { font-size: 0.75rem; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.article-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.45; }
.article-title a:hover { color: var(--teal); }
.article-excerpt { font-size: 0.8375rem; color: var(--text-medium); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 14px; font-size: 0.75rem; color: var(--text-light); }
.article-meta svg { width: 13px; height: 13px; }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--teal); padding: 64px 0; }
.newsletter-section h2 { color: white; margin-bottom: 12px; }
.newsletter-section p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; border-radius: 50px; border: none; outline: none;
  font-size: 0.9375rem;
}
.newsletter-form input::placeholder { color: var(--text-light); }
.newsletter-form .btn { flex-shrink: 0; background: var(--orange); color: white; border-color: var(--orange); }
.newsletter-form .btn:hover { background: #D97706; }

/* ===== CONTACT FORM ===== */
.contact-form { background: white; border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.9375rem; color: var(--text-dark);
  background: white; outline: none; transition: var(--transition);
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(15,118,110,0.08); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 140px; }

.success-message {
  display: none; background: #D1FAE5; border: 1px solid #6EE7B7; border-radius: var(--radius);
  padding: 16px 20px; color: #065F46; font-weight: 500; margin-top: 16px;
  align-items: center; gap: 10px;
}
.success-message.show { display: flex; }
.success-message svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ===== PRODUCT DETAIL ===== */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-gallery { position: sticky; top: 100px; }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1; background: var(--light-gray); margin-bottom: 12px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb { width: 70px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--border); cursor: pointer; transition: var(--transition); }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--teal); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info h1 { margin-bottom: 12px; }
.product-detail-price { font-size: 2rem; font-weight: 800; color: var(--teal); margin-bottom: 20px; }
.product-short-desc { font-size: 0.9375rem; line-height: 1.75; color: var(--text-medium); margin-bottom: 24px; }
.product-qty { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.qty-control { display: flex; align-items: center; border: 2px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--light-gray); font-size: 1.2rem; transition: var(--transition); }
.qty-btn:hover { background: var(--teal); color: white; }
.qty-input { width: 56px; text-align: center; border: none; outline: none; font-size: 1rem; font-weight: 600; padding: 8px 4px; }
.product-add-actions { display: flex; gap: 12px; margin-bottom: 24px; }
.product-add-actions .btn { flex: 1; }
.product-meta-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.meta-tag { padding: 6px 14px; background: var(--light-gray); border-radius: 20px; font-size: 0.8125rem; color: var(--text-medium); }
.meta-tag strong { color: var(--text-dark); }

/* ===== ACCORDION / TABS ===== */
.tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 28px; }
.tab-btn {
  padding: 12px 22px; font-size: 0.9rem; font-weight: 500; color: var(--text-medium);
  border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition);
}
.tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); font-weight: 600; }
.tab-btn:hover { color: var(--teal); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 8px; overflow: hidden; }
.accordion-header {
  padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 500; background: white; transition: var(--transition);
}
.accordion-header:hover { background: var(--light-gray); }
.accordion-header svg { width: 16px; height: 16px; transition: transform 0.25s ease; flex-shrink: 0; }
.accordion-item.open .accordion-header svg { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-body-inner { padding: 0 20px 20px; font-size: 0.9rem; line-height: 1.7; color: var(--text-medium); }
.accordion-item.open .accordion-body { max-height: 600px; }

/* ===== STATS ===== */
.stat-card {
  text-align: center; padding: 32px 20px; background: white; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.875rem; color: var(--text-medium); }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: 0.875rem; font-weight: 500;
  transition: var(--transition); color: var(--text-medium); background: white;
}
.page-btn:hover, .page-btn.active { background: var(--teal); color: white; border-color: var(--teal); }
.page-btn.dots { border: none; background: none; cursor: default; }

/* ===== BADGES / TAGS ===== */
.tag { padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.tag-teal { background: rgba(15,118,110,0.1); color: var(--teal); }
.tag-orange { background: rgba(245,158,11,0.1); color: #B45309; }
.tag-slate { background: rgba(51,65,85,0.1); color: var(--slate); }
.tag-green { background: #D1FAE5; color: #065F46; }
.tag-red { background: #FEE2E2; color: #991B1B; }

/* ===== INFO CARDS ===== */
.info-card {
  padding: 28px; border-radius: var(--radius); background: white;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.info-card-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(15,118,110,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.info-card-icon svg { width: 26px; height: 26px; color: var(--teal); }
.info-card h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.info-card p { font-size: 0.875rem; line-height: 1.65; }

/* ===== POLICY PAGES ===== */
.policy-header { background: var(--light-gray); border-bottom: 1px solid var(--border); padding: 48px 0; }
.policy-header h1 { margin-bottom: 12px; }
.policy-header p { font-size: 0.9375rem; }
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-content h2 { font-size: 1.375rem; margin: 36px 0 14px; color: var(--text-dark); border-bottom: 2px solid var(--sand-dark); padding-bottom: 10px; }
.policy-content h3 { font-size: 1.125rem; margin: 24px 0 10px; color: var(--text-dark); }
.policy-content p { margin-bottom: 14px; font-size: 0.9375rem; line-height: 1.8; }
.policy-content ul { margin: 12px 0 20px 20px; list-style: disc; }
.policy-content ul li { font-size: 0.9375rem; line-height: 1.8; color: var(--text-medium); margin-bottom: 6px; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.policy-content table th { background: var(--teal); color: white; padding: 12px 16px; text-align: left; font-size: 0.875rem; }
.policy-content table td { padding: 11px 16px; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.policy-content table tr:nth-child(even) td { background: var(--light-gray); }
.policy-info-box { background: rgba(15,118,110,0.06); border: 1px solid rgba(15,118,110,0.2); border-radius: var(--radius); padding: 20px 24px; margin: 24px 0; }
.policy-info-box p { margin: 0; font-size: 0.9rem; }

/* ===== CART ===== */
.cart-item { display: flex; align-items: center; gap: 20px; padding: 20px; background: white; border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 12px; }
.cart-item-img { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; margin-bottom: 4px; }
.cart-item-meta { font-size: 0.8125rem; color: var(--text-light); }
.cart-item-price { font-size: 1.125rem; font-weight: 700; color: var(--teal); }
.cart-summary { background: white; border-radius: var(--radius); border: 1px solid var(--border); padding: 28px; }
.cart-summary h3 { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.9rem; }
.summary-row.total { font-weight: 700; font-size: 1.1rem; color: var(--teal); border-top: 2px solid var(--border); margin-top: 8px; padding-top: 16px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px; z-index: 9999;
  background: white; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: 28px 32px; display: flex; align-items: center; gap: 24px;
  border: 1px solid var(--border); max-width: 960px; margin: 0 auto;
}
.cookie-banner p { font-size: 0.875rem; flex: 1; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .grid-5 { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 240px 1fr; }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { gap: 20px; }
  .feature-strip .container { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .section-lg { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .sidebar.open { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .search-bar { max-width: 200px; }
  .header-top .header-top-links { display: none; }
  .hero { min-height: 520px; }
  .hero-stats { gap: 16px; }
  .hero-stat-value { font-size: 1.25rem; }
  .newsletter-form { flex-direction: column; }
  .cookie-banner { flex-direction: column; gap: 16px; }
  .cookie-banner-actions { width: 100%; }
  .compare-table th, .compare-table td { padding: 10px 14px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.875rem; }
  .grid-5 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
}
