/* ============================================
   EEPRINTZ — Main Stylesheet
   ============================================ */

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

:root {
  --ink:        #0D1B2A;
  --press:      #FF5C1A;
  --press-dark: #D94400;
  --press-light:#FFF1EB;
  --cream:      #F7F4EF;
  --slate:      #8A95A3;
  --white:      #FFFFFF;
  --border:     rgba(13,27,42,0.1);
  --shadow:     0 4px 24px rgba(13,27,42,0.08);
  --radius:     8px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--ink); line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: 'Inter', sans-serif; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 24px; }
.section-sm { padding: 48px 24px; }
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--press); margin-bottom: 8px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 38px; text-transform: uppercase; color: var(--ink); line-height: 1.05; }
.section-header { max-width: 1140px; margin: 0 auto 36px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.view-all { font-size: 13px; font-weight: 600; color: var(--press); display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; transition: gap 0.2s; }
.view-all:hover { gap: 8px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; font-size: 14px; font-weight: 700; border-radius: var(--radius); border: none; transition: all 0.2s; cursor: pointer; font-family: 'Inter', sans-serif; }
.btn-primary { background: var(--press); color: var(--white); }
.btn-primary:hover { background: var(--press-dark); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #1a2e45; }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline-dark:hover { border-color: var(--ink); }
.btn-white { background: var(--white); color: var(--press); }
.btn-white:hover { opacity: 0.92; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* PROMO BAR */
.promo-bar { background: var(--ink); text-align: center; padding: 10px 16px; font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.promo-bar strong { color: var(--white); }
.promo-code { background: var(--press); color: var(--white); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 4px; letter-spacing: 0.5px; }

/* NAVBAR */
.navbar { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(13,27,42,0.06); }
.navbar-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.nav-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 28px; color: var(--ink); letter-spacing: -0.5px; white-space: nowrap; }
.nav-logo span { color: var(--press); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a, .nav-dropdown > button { padding: 8px 12px; font-size: 13.5px; font-weight: 500; color: var(--ink); border-radius: 6px; transition: all 0.15s; white-space: nowrap; background: none; border: none; display: flex; align-items: center; gap: 4px; font-family: 'Inter', sans-serif; }
.nav-links > a:hover, .nav-dropdown > button:hover { background: var(--cream); color: var(--press); }
.nav-links > a.active { color: var(--press); font-weight: 600; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 12px 40px rgba(13,27,42,0.12); padding: 12px; min-width: 560px; z-index: 100; }
.nav-dropdown:hover .nav-dropdown-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dropdown-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 6px; transition: background 0.15s; }
.dropdown-item:hover { background: var(--cream); }
.dropdown-icon { width: 36px; height: 36px; background: var(--press-light); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dropdown-icon i { font-size: 18px; color: var(--press); }
.dropdown-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--ink); }
.dropdown-text span { font-size: 12px; color: var(--slate); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-icon-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 6px; border: 1px solid var(--border); color: var(--ink); font-size: 18px; transition: all 0.15s; background: none; position: relative; }
.nav-icon-btn:hover { background: var(--cream); border-color: var(--press); color: var(--press); }
.cart-count { position: absolute; top: -5px; right: -5px; background: var(--press); color: var(--white); font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 16px 24px 24px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--ink); }
.mobile-menu a:hover { color: var(--press); }

/* HERO */
.hero { background: var(--ink); padding: 80px 24px 0; overflow: hidden; position: relative; }
.hero-grid-bg { position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: repeating-linear-gradient(90deg, rgba(255,92,26,0.04) 0px, rgba(255,92,26,0.04) 1px, transparent 1px, transparent 44px), repeating-linear-gradient(0deg, rgba(255,92,26,0.04) 0px, rgba(255,92,26,0.04) 1px, transparent 1px, transparent 44px); }
.hero-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; }
.hero-eyebrow { font-size: 12px; font-weight: 700; color: var(--press); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px; }
.hero-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 72px; line-height: 0.92; color: var(--white); text-transform: uppercase; margin-bottom: 22px; }
.hero-title em { font-style: normal; color: var(--press); display: block; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 36px; max-width: 420px; }
.hero-ctas { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; padding-bottom: 48px; }
.stat-item { border-left: 3px solid var(--press); padding-left: 14px; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.hero-visual { padding-top: 24px; position: relative; z-index: 1; }
.hero-showcase { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px 10px 0 0; padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.showcase-card { background: rgba(255,255,255,0.07); border-radius: 8px; padding: 18px 16px; border: 1px solid transparent; transition: all 0.2s; display: block; }
.showcase-card:hover { background: rgba(255,92,26,0.18); border-color: rgba(255,92,26,0.45); }
.showcase-icon { font-size: 30px; color: var(--press); margin-bottom: 10px; }
.showcase-name { font-size: 13px; font-weight: 600; color: var(--white); }
.showcase-price { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 3px; }

/* TRUST BAR */
.trust-bar { background: var(--cream); border-bottom: 1px solid var(--border); }
.trust-inner { max-width: 1140px; margin: 0 auto; padding: 18px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon-wrap { width: 40px; height: 40px; background: var(--press-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon-wrap i { font-size: 20px; color: var(--press); }
.trust-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); }
.trust-text span { font-size: 12px; color: var(--slate); }

/* CATEGORY GRID */
.cat-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat-card { background: var(--cream); border-radius: 10px; padding: 28px 16px 22px; text-align: center; border: 1.5px solid transparent; transition: all 0.2s; position: relative; overflow: hidden; display: block; }
.cat-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--press); transform: scaleX(0); transition: transform 0.25s; }
.cat-card:hover { border-color: var(--press); background: var(--white); transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-icon { font-size: 34px; color: var(--press); margin-bottom: 12px; display: block; }
.cat-name { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.cat-count { font-size: 11px; color: var(--slate); margin-top: 4px; }

/* PRODUCTS */
.products-section { background: var(--cream); }
.product-tabs { max-width: 1140px; margin: 0 auto 32px; display: flex; gap: 0; border-bottom: 2px solid var(--border); overflow-x: auto; scrollbar-width: none; }
.product-tabs::-webkit-scrollbar { display: none; }
.tab-btn { padding: 11px 20px; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--slate); border: none; border-bottom: 2.5px solid transparent; margin-bottom: -2px; background: none; white-space: nowrap; transition: all 0.2s; font-family: 'Inter', sans-serif; }
.tab-btn.active { color: var(--press); border-bottom-color: var(--press); }
.tab-btn:hover:not(.active) { color: var(--ink); }
.products-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); transition: all 0.22s; display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--press); transform: translateY(-3px); box-shadow: var(--shadow); }
.product-img { height: 190px; background: linear-gradient(135deg, #ede9e3 0%, #d8d3cb 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-img i { font-size: 56px; color: rgba(13,27,42,0.13); }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--press); color: var(--white); font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 4px; letter-spacing: 0.6px; }
.product-badge.new-badge { background: #1565C0; }
.product-badge.hot-badge { background: #C62828; }
.product-info { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; line-height: 1.35; }
.product-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.stars { color: #F5A623; font-size: 12px; letter-spacing: -1px; }
.rating-count { font-size: 12px; color: var(--slate); }
.product-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.price-new { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; color: var(--ink); }
.price-old { font-size: 13px; color: var(--slate); text-decoration: line-through; }
.price-save { font-size: 11px; color: #2E7D32; font-weight: 700; background: #E8F5E9; padding: 2px 7px; border-radius: 4px; }
.product-cta { margin-top: auto; }
.btn-customize { width: 100%; background: var(--ink); color: var(--white); border: none; padding: 11px; font-size: 12px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; border-radius: 6px; transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 6px; font-family: 'Inter', sans-serif; cursor: pointer; }
.btn-customize:hover { background: var(--press); }

/* FEATURES */
.features-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: center; }
.features-right { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-card { padding: 22px; border: 1px solid var(--border); border-radius: 10px; transition: all 0.2s; }
.feature-card:hover { border-color: var(--press); box-shadow: 0 6px 20px rgba(255,92,26,0.1); transform: translateY(-2px); }
.feature-icon-wrap { width: 46px; height: 46px; background: var(--press-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feature-icon-wrap i { font-size: 22px; color: var(--press); }
.feature-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.feature-desc { font-size: 13px; color: var(--slate); line-height: 1.65; }
.big-number { font-family: 'Barlow Condensed', sans-serif; font-size: 96px; font-weight: 800; color: var(--ink); line-height: 1; }
.big-number span { color: var(--press); }
.features-sub { font-size: 15px; color: var(--slate); line-height: 1.7; margin-top: 14px; margin-bottom: 28px; }

/* PROCESS */
.process-section { background: var(--ink); padding: 72px 24px; }
.process-title-wrap .section-title { color: var(--white); }
.process-steps { max-width: 1140px; margin: 44px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 12%; right: 12%; height: 1px; background: rgba(255,255,255,0.1); }
.step { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.step-num { width: 56px; height: 56px; background: var(--press); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; color: var(--white); }
.step-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* REVIEWS */
.reviews-grid { max-width: 1140px; margin: 36px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--white); border-radius: 10px; padding: 22px; border: 1px solid var(--border); }
.review-stars { color: #F5A623; font-size: 15px; letter-spacing: -1px; margin-bottom: 12px; }
.review-text { font-size: 13px; color: var(--ink); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--press); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.reviewer-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.reviewer-meta { font-size: 11px; color: var(--slate); margin-top: 1px; }

/* CTA BANNER */
.cta-banner { background: var(--press); padding: 72px 24px; }
.cta-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-title { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 800; text-transform: uppercase; color: var(--white); line-height: 1.05; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.8); margin-top: 8px; }

/* NEWSLETTER */
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-inner .section-title { margin-bottom: 12px; }
.newsletter-inner p { font-size: 15px; color: var(--slate); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; background: var(--white); }
.newsletter-form input:focus { border-color: var(--press); }

/* FOOTER */
.site-footer { background: #070E15; padding: 60px 24px 28px; }
.footer-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand-name { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-brand-name span { color: var(--press); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 22px; max-width: 280px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.14); border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.social-link:hover { border-color: var(--press); background: rgba(255,92,26,0.12); }
.social-link i { font-size: 16px; color: rgba(255,255,255,0.5); }
.footer-heading { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { max-width: 1140px; margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.payment-icons { display: flex; gap: 8px; }
.payment-icon { background: rgba(255,255,255,0.07); border-radius: 4px; padding: 4px 11px; font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 700; }

/* PAGE HERO */
.page-hero { background: var(--ink); padding: 56px 24px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: repeating-linear-gradient(90deg, rgba(255,92,26,0.05) 0, rgba(255,92,26,0.05) 1px, transparent 1px, transparent 40px); }
.page-hero-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 56px; color: var(--white); text-transform: uppercase; line-height: 1; margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 520px; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.breadcrumb a, .breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--press); }
.breadcrumb i { font-size: 12px; color: rgba(255,255,255,0.3); }

/* PRODUCT LISTING */
.listing-layout { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 48px 24px; }
.sidebar-section { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.sidebar-section:last-child { border-bottom: none; }
.sidebar-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--ink); margin-bottom: 14px; }
.filter-option { display: flex; align-items: center; gap: 8px; padding: 5px 0; cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--press); width: 15px; height: 15px; }
.filter-option label { font-size: 13px; color: var(--ink); cursor: pointer; flex: 1; }
.filter-option span { font-size: 12px; color: var(--slate); }
.size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.size-tag { padding: 5px 12px; border: 1px solid var(--border); border-radius: 4px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.15s; }
.size-tag:hover, .size-tag.active { border-color: var(--press); color: var(--press); background: var(--press-light); }
.listing-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.listing-count { font-size: 14px; color: var(--slate); }
.listing-count strong { color: var(--ink); }
.sort-select { padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 13px; font-family: 'Inter', sans-serif; color: var(--ink); outline: none; cursor: pointer; }
.sort-select:focus { border-color: var(--press); }
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* PRODUCT DETAIL */
.product-detail-layout { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px 24px; align-items: start; }
.gallery-main { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); height: 420px; background: linear-gradient(135deg, #ede9e3, #d8d3cb); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.gallery-main i { font-size: 96px; color: rgba(13,27,42,0.12); }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb { width: 72px; height: 72px; border-radius: 8px; border: 2px solid transparent; overflow: hidden; background: var(--cream); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.2s; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--press); }
.gallery-thumb i { font-size: 28px; color: rgba(13,27,42,0.2); }
.product-detail-brand { font-size: 12px; font-weight: 700; color: var(--press); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.product-detail-name { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 800; text-transform: uppercase; line-height: 1.05; margin-bottom: 14px; }
.product-detail-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.product-detail-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.detail-price-new { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 800; color: var(--ink); }
.detail-price-old { font-size: 18px; color: var(--slate); text-decoration: line-through; }
.detail-price-save { font-size: 13px; font-weight: 700; color: #2E7D32; background: #E8F5E9; padding: 4px 10px; border-radius: 5px; }
.product-options { margin-bottom: 28px; }
.option-label { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 10px; display: flex; gap: 6px; align-items: center; }
.option-label span { font-weight: 400; color: var(--slate); }
.option-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.option-btn { padding: 7px 16px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 13px; font-weight: 500; cursor: pointer; background: none; transition: all 0.15s; font-family: 'Inter', sans-serif; }
.option-btn:hover, .option-btn.active { border-color: var(--press); color: var(--press); background: var(--press-light); }
.qty-wrap { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 6px; overflow: hidden; width: fit-content; margin-bottom: 24px; }
.qty-btn { width: 40px; height: 40px; border: none; background: var(--cream); font-size: 18px; cursor: pointer; transition: background 0.15s; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--press-light); color: var(--press); }
.qty-input { width: 56px; height: 40px; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); text-align: center; font-size: 15px; font-weight: 600; font-family: 'Inter', sans-serif; outline: none; }
.detail-ctas { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.detail-ctas .btn { flex: 1; min-width: 140px; justify-content: center; }
.product-meta { border-top: 1px solid var(--border); padding-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--slate); }
.meta-item i { font-size: 16px; color: var(--press); }

/* CONTACT */
.contact-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; padding: 64px 24px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 28px; }
.contact-icon { width: 46px; height: 46px; background: var(--press-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon i { font-size: 22px; color: var(--press); }
.contact-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--slate); margin-bottom: 4px; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--ink); }
.contact-form-wrap { background: var(--cream); border-radius: 12px; padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 7px; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--ink); background: var(--white); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--press); }
.form-group textarea { height: 130px; resize: vertical; }

/* ABOUT */
.about-hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1140px; margin: 0 auto; padding: 64px 24px; align-items: center; }
.about-img-placeholder { height: 380px; background: linear-gradient(135deg, #e8e4de, #cec9c2); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.about-img-placeholder i { font-size: 80px; color: rgba(13,27,42,0.15); }
.values-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 36px 24px; border: 1px solid var(--border); border-radius: 10px; }
.value-icon { width: 60px; height: 60px; background: var(--press-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.value-icon i { font-size: 28px; color: var(--press); }
.value-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--slate); line-height: 1.7; }
.team-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-photo { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, #e8e4de, #cec9c2); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.team-photo i { font-size: 40px; color: rgba(13,27,42,0.2); }
.team-name { font-size: 15px; font-weight: 700; color: var(--ink); }
.team-role { font-size: 13px; color: var(--slate); margin-top: 3px; }

/* CART SIDEBAR */
.cart-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 2000; }
.cart-overlay.open { display: block; }
.cart-sidebar { position: fixed; top: 0; right: -420px; width: 420px; height: 100%; background: var(--white); z-index: 2001; box-shadow: -8px 0 40px rgba(0,0,0,0.15); display: flex; flex-direction: column; transition: right 0.3s ease; }
.cart-sidebar.open { right: 0; }
.cart-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-size: 18px; font-weight: 700; }
.cart-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--slate); display: flex; align-items: center; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; padding: 60px 0; color: var(--slate); }
.cart-empty i { font-size: 48px; margin-bottom: 16px; display: block; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 70px; height: 70px; background: var(--cream); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-item-img i { font-size: 30px; color: rgba(13,27,42,0.2); }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.cart-item-opts { font-size: 12px; color: var(--slate); margin-bottom: 8px; }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--ink); }
.cart-item-remove { background: none; border: none; font-size: 16px; color: var(--slate); cursor: pointer; }
.cart-item-remove:hover { color: #C62828; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 16px; }
.cart-total strong { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; }

/* TOAST */
.toast { position: fixed; bottom: 28px; right: 28px; background: var(--ink); color: var(--white); padding: 14px 20px; border-radius: 8px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 10px; z-index: 3000; box-shadow: 0 8px 24px rgba(0,0,0,0.2); transform: translateY(80px); opacity: 0; transition: all 0.3s ease; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { font-size: 18px; color: #4CAF50; }

/* SEARCH OVERLAY */
.search-overlay { display: none; position: fixed; inset: 0; background: rgba(13,27,42,0.85); z-index: 1500; align-items: flex-start; padding-top: 100px; }
.search-overlay.open { display: flex; justify-content: center; }
.search-box { background: var(--white); border-radius: 12px; padding: 24px; width: 100%; max-width: 600px; margin: 0 24px; }
.search-input-wrap { display: flex; align-items: center; gap: 12px; border-bottom: 2px solid var(--press); padding-bottom: 12px; margin-bottom: 16px; }
.search-input-wrap i { font-size: 22px; color: var(--press); }
.search-input-wrap input { flex: 1; border: none; font-size: 18px; outline: none; font-family: 'Inter', sans-serif; color: var(--ink); }
.search-suggestions p { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--slate); margin-bottom: 10px; }
.search-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.search-tag { padding: 6px 14px; background: var(--cream); border-radius: 20px; font-size: 13px; color: var(--ink); cursor: pointer; transition: all 0.15s; }
.search-tag:hover { background: var(--press-light); color: var(--press); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-title { font-size: 58px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .big-number { font-size: 72px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-dropdown { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-title { font-size: 48px; }
  .hero { padding-bottom: 48px; }
  .hero-stats { gap: 24px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 30px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .listing-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-hero-content { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-sidebar { width: 100%; right: -100%; }
  .cta-title { font-size: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .features-right { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .listing-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 40px; }
  .trust-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
  .promo-bar { flex-direction: column; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; }
}
