@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;
  --blue: #3B82F6;
  --blue-dark: #2563EB;
  --blue-light: #EFF6FF;
  --green: #10B981;
  --green-light: #ECFDF5;
  --beige: #F5E6D3;
  --beige-dark: #E8D0B5;
  --charcoal: #374151;
  --charcoal-light: #6B7280;
  --gray-light: #F8FAFC;
  --gray-border: #E5E7EB;
  --gray-mid: #D1D5DB;
  --red: #EF4444;
  --orange: #F97316;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }

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

/* HEADER */
.site-header { background: var(--white); border-bottom: 1px solid var(--gray-border); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); }
.header-top { background: var(--charcoal); color: var(--white); font-size: 0.8rem; padding: 6px 0; }
.header-top .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.header-top a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.header-top a:hover { color: var(--white); }
.header-top-contact { display: flex; gap: 20px; align-items: center; }
.header-top-right { display: flex; gap: 16px; align-items: center; }

.header-main { padding: 14px 0; }
.header-main .container { display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--blue), var(--green)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 26px; height: 26px; fill: none; stroke: white; stroke-width: 2; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.logo-tagline { font-size: 0.68rem; color: var(--charcoal-light); text-transform: uppercase; letter-spacing: 0.08em; }

.header-search { flex: 1; max-width: 480px; margin: 0 auto; }
.search-wrap { position: relative; display: flex; }
.search-wrap input { width: 100%; padding: 10px 48px 10px 16px; border: 2px solid var(--gray-border); border-radius: 50px; font-size: 0.9rem; outline: none; transition: border-color 0.2s; background: var(--gray-light); }
.search-wrap input:focus { border-color: var(--blue); background: var(--white); }
.search-wrap button { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: var(--blue); color: white; border: none; border-radius: 50px; padding: 6px 14px; font-size: 0.82rem; font-weight: 600; transition: background 0.2s; }
.search-wrap button:hover { background: var(--blue-dark); }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-action-btn { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 12px; border-radius: var(--radius-md); border: 1px solid transparent; transition: all 0.2s; color: var(--charcoal); font-size: 0.7rem; font-weight: 500; position: relative; }
.header-action-btn:hover { background: var(--gray-light); border-color: var(--gray-border); }
.header-action-btn svg { width: 22px; height: 22px; }
.cart-badge { position: absolute; top: 4px; right: 8px; background: var(--blue); color: white; border-radius: 50%; width: 18px; height: 18px; font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }

.header-nav { background: var(--gray-light); border-top: 1px solid var(--gray-border); }
.nav-list { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 5px; padding: 12px 16px; font-size: 0.88rem; font-weight: 500; color: var(--charcoal); white-space: nowrap; transition: all 0.2s; border-bottom: 2px solid transparent; }
.nav-link:hover, .nav-link.active { color: var(--blue); border-bottom-color: var(--blue); }
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 1px); left: 0; background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-md); min-width: 220px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(8px); transition: all 0.2s; z-index: 999; }
.nav-item:hover .dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 16px; font-size: 0.88rem; transition: background 0.15s; }
.dropdown-menu a:hover { background: var(--blue-light); color: var(--blue); }
.dropdown-menu a span.icon { font-size: 1.1rem; }

/* MOBILE MENU */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 10px; cursor: pointer; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s; }
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--gray-border); padding: 16px 0; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 10px 24px; font-size: 0.95rem; border-bottom: 1px solid var(--gray-border); }
.mobile-nav a:hover { background: var(--gray-light); }

/* BREADCRUMB */
.breadcrumb-bar { background: var(--gray-light); border-bottom: 1px solid var(--gray-border); padding: 10px 0; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--charcoal-light); }
.breadcrumb .current { color: var(--charcoal-light); }

/* HERO */
.hero-section { background: linear-gradient(135deg, #EFF6FF 0%, #F0FDF4 50%, var(--beige) 100%); padding: 80px 0 70px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-content { }
.hero-label { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--gray-border); border-radius: 50px; padding: 6px 14px; font-size: 0.78rem; font-weight: 600; color: var(--charcoal-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
.hero-label .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; color: var(--charcoal); line-height: 1.15; margin-bottom: 20px; }
.hero-title em { font-style: normal; color: var(--blue); }
.hero-description { font-size: 1.05rem; color: var(--charcoal-light); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat { }
.hero-stat-number { font-size: 1.6rem; font-weight: 800; color: var(--charcoal); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: var(--charcoal-light); margin-top: 4px; }
.hero-image { position: relative; }
.hero-image img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 50px; font-weight: 600; font-size: 0.92rem; transition: all 0.2s; border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(59,130,246,0.35); }
.btn-secondary { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-secondary:hover { background: var(--blue); color: var(--white); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: #059669; transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--charcoal); border-color: var(--gray-border); }
.btn-white:hover { border-color: var(--charcoal); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-icon { padding: 10px; border-radius: 50%; }

/* SECTIONS */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-gray { background: var(--gray-light); }
.section-beige { background: var(--beige); }
.section-charcoal { background: var(--charcoal); color: var(--white); }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-label { display: inline-block; background: var(--blue-light); color: var(--blue); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 14px; border-radius: 50px; margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--charcoal); margin-bottom: 14px; line-height: 1.25; }
.section-title-white { color: var(--white); }
.section-desc { color: var(--charcoal-light); font-size: 1rem; line-height: 1.65; }

/* CATEGORY GRID */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.category-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; text-decoration: none; color: var(--charcoal); display: flex; flex-direction: column; }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.category-card-image { height: 160px; overflow: hidden; background: var(--gray-light); }
.category-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.category-card:hover .category-card-image img { transform: scale(1.05); }
.category-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.category-card-icon { font-size: 1.5rem; margin-bottom: 4px; }
.category-card-name { font-weight: 700; font-size: 0.95rem; }
.category-card-count { font-size: 0.8rem; color: var(--charcoal-light); }
.category-card-arrow { margin-top: auto; color: var(--blue); font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* PRODUCT CARDS */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card-image { height: 220px; overflow: hidden; background: var(--gray-light); position: relative; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-wishlist { position: absolute; top: 12px; right: 12px; background: var(--white); border: 1px solid var(--gray-border); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
.product-card-wishlist:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.product-card-wishlist svg { width: 18px; height: 18px; }
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-card-brand { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue); font-weight: 600; margin-bottom: 6px; }
.product-card-name { font-weight: 700; font-size: 0.95rem; line-height: 1.35; margin-bottom: 8px; color: var(--charcoal); }
.product-card-name a { color: inherit; }
.product-card-name a:hover { color: var(--blue); }
.product-card-specs { font-size: 0.8rem; color: var(--charcoal-light); line-height: 1.5; margin-bottom: 12px; }
.product-card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { display: flex; gap: 2px; color: #F59E0B; }
.stars svg { width: 14px; height: 14px; fill: currentColor; }
.rating-count { font-size: 0.78rem; color: var(--charcoal-light); }
.product-card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { }
.product-price-current { font-size: 1.15rem; font-weight: 800; color: var(--charcoal); }
.product-price-old { font-size: 0.82rem; color: var(--charcoal-light); text-decoration: line-through; }
.product-price-discount { font-size: 0.75rem; background: var(--green-light); color: var(--green); font-weight: 700; padding: 2px 6px; border-radius: 4px; }

/* PRODUCT LAYOUT PAGE */
.product-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.filters-sidebar { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 90px; }
.filter-group { margin-bottom: 24px; border-bottom: 1px solid var(--gray-border); padding-bottom: 24px; }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; }
.filter-title button { font-size: 0.75rem; color: var(--blue); font-weight: 400; }
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-option { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.87rem; }
.filter-option input[type=checkbox], .filter-option input[type=radio] { width: 16px; height: 16px; accent-color: var(--blue); }
.filter-option-count { margin-left: auto; font-size: 0.75rem; color: var(--charcoal-light); background: var(--gray-light); padding: 1px 7px; border-radius: 50px; }
.price-range { display: flex; flex-direction: column; gap: 12px; }
.price-inputs { display: flex; gap: 10px; }
.price-inputs input { width: 100%; padding: 8px 10px; border: 1px solid var(--gray-border); border-radius: var(--radius-sm); font-size: 0.85rem; }

.product-list-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.product-list-count { font-size: 0.9rem; color: var(--charcoal-light); }
.product-list-count strong { color: var(--charcoal); }
.sort-select { padding: 8px 12px; border: 1px solid var(--gray-border); border-radius: var(--radius-sm); font-size: 0.87rem; background: var(--white); }

/* COMPARISON TABLE */
.compare-table-wrap { overflow-x: auto; margin: 32px 0; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 0.87rem; }
.compare-table th, .compare-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--gray-border); }
.compare-table thead th { background: var(--charcoal); color: var(--white); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.compare-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.compare-table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.compare-table tbody tr:nth-child(even) { background: var(--gray-light); }
.compare-table tbody tr:hover { background: var(--blue-light); }
.compare-table .feature-label { font-weight: 600; color: var(--charcoal); white-space: nowrap; }
.compare-table .check { color: var(--green); font-weight: 700; }
.compare-table .cross { color: var(--red); font-weight: 700; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-image { height: 200px; overflow: hidden; background: var(--gray-light); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 20px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--charcoal-light); margin-bottom: 12px; }
.blog-card-tag { background: var(--blue-light); color: var(--blue); padding: 3px 10px; border-radius: 50px; font-weight: 600; }
.blog-card-title { font-weight: 700; font-size: 1rem; line-height: 1.35; margin-bottom: 10px; }
.blog-card-title a { color: var(--charcoal); }
.blog-card-title a:hover { color: var(--blue); }
.blog-card-excerpt { font-size: 0.87rem; color: var(--charcoal-light); line-height: 1.55; margin-bottom: 16px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-read-more { color: var(--blue); font-weight: 600; font-size: 0.85rem; display: flex; align-items: center; gap: 4px; }
.blog-read-more:hover { text-decoration: underline; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.feature-card { padding: 28px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--gray-border); }
.feature-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon-blue { background: var(--blue-light); }
.feature-icon-green { background: var(--green-light); }
.feature-icon-beige { background: var(--beige); }
.feature-icon svg { width: 26px; height: 26px; }
.feature-title { font-weight: 700; margin-bottom: 8px; font-size: 0.95rem; }
.feature-desc { font-size: 0.87rem; color: var(--charcoal-light); line-height: 1.55; }

/* NEWSLETTER */
.newsletter-wrap { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); border-radius: var(--radius-xl); padding: 56px 48px; text-align: center; color: var(--white); }
.newsletter-title { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; margin-bottom: 12px; }
.newsletter-desc { opacity: 0.85; font-size: 1rem; margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 13px 18px; border: 2px solid rgba(255,255,255,0.3); border-radius: 50px; background: rgba(255,255,255,0.15); color: white; font-size: 0.92rem; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.65); }
.newsletter-form input:focus { border-color: white; }
.newsletter-form button { background: var(--white); color: var(--blue); padding: 13px 26px; border-radius: 50px; font-weight: 700; font-size: 0.92rem; white-space: nowrap; transition: all 0.2s; }
.newsletter-form button:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
#newsletter-success { display: none; background: rgba(255,255,255,0.2); border-radius: var(--radius-md); padding: 16px 24px; font-weight: 600; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); padding: 24px; }
.testimonial-stars { display: flex; gap: 3px; color: #F59E0B; margin-bottom: 12px; }
.testimonial-text { font-size: 0.92rem; color: var(--charcoal); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; color: var(--blue); flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.88rem; }
.testimonial-pet { font-size: 0.78rem; color: var(--charcoal-light); }

/* INFO BOXES */
.info-box { border-radius: var(--radius-md); padding: 20px 24px; margin: 24px 0; }
.info-box-blue { background: var(--blue-light); border-left: 4px solid var(--blue); }
.info-box-green { background: var(--green-light); border-left: 4px solid var(--green); }
.info-box-beige { background: var(--beige); border-left: 4px solid var(--beige-dark); }
.info-box-title { font-weight: 700; margin-bottom: 8px; font-size: 0.95rem; }
.info-box p { font-size: 0.9rem; color: var(--charcoal); line-height: 1.55; }

/* SPECS TABLE */
.specs-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.specs-table tr { border-bottom: 1px solid var(--gray-border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table th { width: 35%; padding: 11px 14px; background: var(--gray-light); font-weight: 600; text-align: left; color: var(--charcoal-light); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
.specs-table td { padding: 11px 14px; color: var(--charcoal); }

/* PAGINATION */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; }
.page-btn { width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid var(--gray-border); display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 500; transition: all 0.2s; }
.page-btn:hover, .page-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* FOOTER */
.site-footer { background: #1F2937; color: rgba(255,255,255,0.75); }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }
.footer-about { font-size: 0.88rem; line-height: 1.65; margin-top: 14px; color: rgba(255,255,255,0.6); }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
.footer-col-title { font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* COOKIE BANNER */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--charcoal); color: var(--white); padding: 16px 0; z-index: 9999; transform: translateY(100%); transition: transform 0.4s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: 0.85rem; line-height: 1.5; color: rgba(255,255,255,0.85); }
.cookie-text a { color: var(--blue); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept { background: var(--green); color: white; border: none; padding: 9px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; cursor: pointer; }
.btn-cookie-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); padding: 9px 20px; border-radius: 50px; font-size: 0.85rem; cursor: pointer; }

/* ARTICLE / BLOG POST */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.article-header { margin-bottom: 32px; }
.article-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 0.82rem; color: var(--charcoal-light); margin-bottom: 16px; }
.article-category { background: var(--blue-light); color: var(--blue); padding: 3px 12px; border-radius: 50px; font-weight: 600; }
.article-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--charcoal); line-height: 1.25; margin-bottom: 16px; }
.article-lead { font-size: 1.05rem; color: var(--charcoal-light); line-height: 1.7; border-left: 3px solid var(--blue); padding-left: 18px; margin-bottom: 28px; }
.article-image { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-xl); margin-bottom: 32px; }
.article-content h2 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--charcoal); margin: 32px 0 14px; }
.article-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin: 24px 0 10px; }
.article-content p { font-size: 0.95rem; line-height: 1.75; color: var(--charcoal); margin-bottom: 18px; }
.article-content ul, .article-content ol { padding-left: 22px; margin-bottom: 18px; }
.article-content li { font-size: 0.95rem; line-height: 1.65; color: var(--charcoal); margin-bottom: 6px; list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-sidebar { position: sticky; top: 90px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 22px; }
.sidebar-widget-title { font-weight: 700; font-size: 0.92rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-border); }
.sidebar-product { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-border); }
.sidebar-product:last-child { border-bottom: none; }
.sidebar-product img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.sidebar-product-info { flex: 1; }
.sidebar-product-name { font-size: 0.85rem; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.sidebar-product-price { font-size: 0.88rem; color: var(--blue); font-weight: 700; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-xl); padding: 36px; }
.form-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.form-desc { color: var(--charcoal-light); font-size: 0.9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 7px; }
.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-border); border-radius: var(--radius-sm); font-size: 0.9rem; outline: none; transition: border-color 0.2s; background: var(--gray-light); }
.form-control:focus { border-color: var(--blue); background: var(--white); }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-success { display: none; background: var(--green-light); border: 1px solid var(--green); border-radius: var(--radius-md); padding: 16px 20px; color: #065F46; font-weight: 600; font-size: 0.92rem; margin-top: 16px; text-align: center; }
.contact-info-wrap { }
.contact-info-card { background: var(--gray-light); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.contact-info-title { font-weight: 700; font-size: 1rem; margin-bottom: 18px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-icon { width: 42px; height: 42px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--blue-light); }
.contact-icon svg { width: 20px; height: 20px; color: var(--blue); }
.contact-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--charcoal-light); font-weight: 600; margin-bottom: 2px; }
.contact-value { font-size: 0.9rem; font-weight: 600; color: var(--charcoal); }
.map-embed { width: 100%; height: 240px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-border); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ABOUT PAGE */
.about-hero { background: linear-gradient(135deg, var(--blue-light), var(--green-light)); padding: 64px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image { border-radius: var(--radius-xl); overflow: hidden; }
.about-image img { width: 100%; height: 420px; object-fit: cover; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.team-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); overflow: hidden; text-align: center; }
.team-card-image { height: 200px; overflow: hidden; background: var(--gray-light); }
.team-card-image img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 18px; }
.team-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.team-desc { font-size: 0.82rem; color: var(--charcoal-light); line-height: 1.5; }

/* SITEMAP */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 32px; }
.sitemap-section { }
.sitemap-section-title { font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--charcoal-light); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--blue); }
.sitemap-links { display: flex; flex-direction: column; gap: 8px; }
.sitemap-links a { font-size: 0.9rem; color: var(--charcoal); display: flex; align-items: center; gap: 8px; }
.sitemap-links a::before { content: '→'; color: var(--blue); font-size: 0.85rem; }
.sitemap-links a:hover { color: var(--blue); }

/* POLICY PAGES */
.policy-layout { max-width: 820px; margin: 0 auto; padding: 56px 24px; }
.policy-header { margin-bottom: 40px; }
.policy-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.policy-updated { font-size: 0.85rem; color: var(--charcoal-light); }
.policy-toc { background: var(--gray-light); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 40px; }
.policy-toc-title { font-weight: 700; margin-bottom: 14px; font-size: 0.92rem; }
.policy-toc ol { padding-left: 18px; }
.policy-toc li { font-size: 0.87rem; line-height: 1.6; list-style: decimal; }
.policy-toc li a { color: var(--blue); }
.policy-toc li a:hover { text-decoration: underline; }
.policy-section { margin-bottom: 36px; }
.policy-section h2 { font-size: 1.25rem; font-weight: 700; color: var(--charcoal); margin-bottom: 14px; padding-top: 8px; border-top: 2px solid var(--gray-border); }
.policy-section p { font-size: 0.92rem; line-height: 1.75; color: var(--charcoal); margin-bottom: 14px; }
.policy-section ul, .policy-section ol { padding-left: 20px; margin-bottom: 14px; }
.policy-section li { font-size: 0.92rem; line-height: 1.65; color: var(--charcoal); margin-bottom: 6px; list-style: disc; }
.policy-section ol li { list-style: decimal; }
.policy-section strong { color: var(--charcoal); }
.policy-section a { color: var(--blue); text-decoration: underline; }
.policy-section table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.88rem; }
.policy-section table th { background: var(--gray-light); padding: 10px 14px; text-align: left; font-weight: 600; border: 1px solid var(--gray-border); }
.policy-section table td { padding: 9px 14px; border: 1px solid var(--gray-border); }

/* CART / ORDER */
.cart-panel { position: fixed; right: 0; top: 0; bottom: 0; width: 400px; background: var(--white); box-shadow: -4px 0 32px rgba(0,0,0,0.12); z-index: 2000; transform: translateX(100%); transition: transform 0.3s ease; display: flex; flex-direction: column; }
.cart-panel.open { transform: translateX(0); }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1999; display: none; }
.cart-overlay.show { display: block; }
.cart-header { padding: 20px 24px; border-bottom: 1px solid var(--gray-border); display: flex; align-items: center; justify-content: space-between; }
.cart-title { font-weight: 700; font-size: 1.05rem; }
.cart-close { background: var(--gray-light); border: none; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; }
.cart-close:hover { background: var(--gray-border); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; padding: 40px 0; color: var(--charcoal-light); font-size: 0.92rem; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--gray-border); }
.cart-item-img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.88rem; line-height: 1.3; margin-bottom: 4px; }
.cart-item-price { font-size: 0.9rem; font-weight: 700; color: var(--blue); }
.cart-item-remove { font-size: 0.75rem; color: var(--charcoal-light); cursor: pointer; }
.cart-item-remove:hover { color: var(--red); }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--gray-border); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 16px; font-weight: 700; font-size: 1rem; }

/* ORDER PAGE */
.order-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; }
.order-form-section { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.order-section-title { font-weight: 700; font-size: 1rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.order-summary { background: var(--gray-light); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 90px; }

/* MISC */
.badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-green { background: var(--green-light); color: var(--green); }
.badge-beige { background: var(--beige); color: #92400E; }
.badge-red { background: #FEF2F2; color: var(--red); }

.divider { border: none; border-top: 1px solid var(--gray-border); margin: 32px 0; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.gap-8 { gap: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-layout { grid-template-columns: 240px 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .order-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { display: none; }
  .header-search { display: none; }
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .filters-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .newsletter-wrap { padding: 36px 24px; }
  .cart-panel { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .hero-section { padding: 48px 0; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
