/* ===== Print Care Solution - Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2438;
  --accent: #e85d26;
  --accent-light: #f47844;
  --light: #f5f7fa;
  --white: #ffffff;
  --text: #333333;
  --text-muted: #666666;
  --border: #dde3ec;
  --shadow: 0 4px 24px rgba(26,58,92,0.10);
  --radius: 8px;
  --green: #1a7a3c;
  --green-light: #e8f5ec;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary-dark); line-height: 1.3; }

/* ===== COOKIE CONSENT BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #0f2438; color: #c8dff0;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  border-top: 3px solid var(--accent);
}
#cookie-banner p { font-size: 13px; line-height: 1.6; max-width: 700px; margin: 0; }
#cookie-banner p a { color: #78b4e0; text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--accent); color: white; border: none; padding: 10px 22px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; }
.cookie-accept:hover { background: var(--accent-light); }
.cookie-decline { background: transparent; color: #a8c4e0; border: 1px solid rgba(255,255,255,0.2); padding: 10px 18px; border-radius: 6px; font-size: 13px; cursor: pointer; }
.cookie-decline:hover { border-color: #a8c4e0; }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: #fff8e6;
  border-bottom: 1px solid #f5d97a;
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  color: #7a5800;
  line-height: 1.5;
}
.disclaimer-bar strong { color: #5a3f00; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary-dark);
  color: #a8c4e0;
  font-size: 13px;
  padding: 7px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-bar a { color: #a8c4e0; }
.top-bar a:hover { color: var(--white); }
.top-bar-contact { display: flex; gap: 18px; align-items: center; }
.top-bar-contact a { display: flex; align-items: center; gap: 5px; }

/* ===== HEADER ===== */
header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky; top: 0; z-index: 998;
  box-shadow: var(--shadow);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 48px; height: 48px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 28px; height: 28px; fill: white; }
.logo-text h1 { font-size: 22px; color: var(--primary); margin: 0; }
.logo-text span { font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }

/* ===== NAV ===== */
nav { display: flex; align-items: center; gap: 4px; }
nav a { font-size: 14px; font-weight: 500; padding: 8px 13px; border-radius: 6px; color: var(--text); white-space: nowrap; }
nav a:hover, nav a.active { background: var(--light); color: var(--primary); }
.nav-cta { background: var(--accent) !important; color: var(--white) !important; border-radius: 6px !important; }
.nav-cta:hover { background: var(--accent-light) !important; }

/* ===== TRUST BADGE ROW ===== */
.trust-bar {
  background: var(--green-light);
  border-bottom: 1px solid #b8dfc8;
  padding: 8px 0;
}
.trust-bar .container { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--green); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2a5f8f 100%);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 500px; height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='500' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='400' cy='100' r='200' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='300' cy='300' r='150' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") no-repeat;
}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h1 { font-size: 46px; color: white; margin-bottom: 20px; }
.hero-text h1 span { color: #f5a55a; }
.hero-text p { font-size: 18px; color: #c8dff0; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius); font-weight: 600; font-size: 15px; transition: all 0.2s; cursor: pointer; border: none; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-light); color: white; transform: translateY(-1px); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); color: white; }
.hero-stats { display: flex; gap: 30px; margin-top: 40px; }
.stat { text-align: center; }
.stat-num { font-size: 28px; font-weight: 700; color: #f5a55a; font-family: 'Playfair Display', serif; }
.stat-lbl { font-size: 12px; color: #c8dff0; text-transform: uppercase; letter-spacing: 1px; }
.hero-img-wrap { display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(10px);
  text-align: center;
  color: white;
}
.hero-card-icon { font-size: 64px; margin-bottom: 16px; }
.hero-card h3 { font-size: 20px; color: white; margin-bottom: 8px; }
.hero-card p { color: #c8dff0; font-size: 14px; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; justify-content: center; }
.badge { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); padding: 6px 14px; border-radius: 20px; font-size: 12px; color: #ddf; font-weight: 500; }

/* ===== SECTIONS ===== */
.section { padding: 70px 0; }
.section-alt { background: var(--light); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 34px; margin-bottom: 12px; }
.section-title p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-title .line { width: 50px; height: 3px; background: var(--accent); margin: 14px auto 0; border-radius: 2px; }

/* ===== CATEGORY CARDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.cat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.25s;
  display: block;
  color: var(--text);
}
.cat-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--primary); color: var(--text); }
.cat-icon { font-size: 44px; margin-bottom: 16px; }
.cat-card h3 { font-size: 18px; margin-bottom: 8px; }
.cat-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.cat-link { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--accent); }

/* ===== FEATURE CARD ===== */
.feature-card { display: flex; gap: 20px; align-items: flex-start; }
.feat-icon { width: 52px; height: 52px; background: #eef4fb; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.feat-body h4 { font-size: 16px; margin-bottom: 6px; }
.feat-body p { font-size: 14px; color: var(--text-muted); }

/* ===== BRAND LOGOS ===== */
.brand-row { display: flex; gap: 24px; align-items: center; justify-content: center; flex-wrap: wrap; }
.brand-pill {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.brand-pill:hover { box-shadow: var(--shadow); border-color: var(--primary); }

/* ===== INFO STRIP ===== */
.info-strip {
  background: var(--primary);
  color: white;
  padding: 28px 0;
}
.info-strip .grid-4 { align-items: center; }
.info-item { text-align: center; }
.info-item .ico { font-size: 28px; margin-bottom: 8px; }
.info-item strong { display: block; font-size: 15px; margin-bottom: 4px; }
.info-item span { font-size: 13px; color: #a8c4e0; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 50px 0;
  text-align: center;
}
.page-hero h1 { color: white; font-size: 36px; margin-bottom: 10px; }
.page-hero p { color: #c8dff0; font-size: 16px; }
.breadcrumb { font-size: 13px; color: #a8c4e0; margin-bottom: 14px; }
.breadcrumb a { color: #a8c4e0; }
.breadcrumb a:hover { color: white; }

/* ===== CONTENT PAGE ===== */
.content-wrap { max-width: 860px; margin: 0 auto; padding: 60px 20px; }
.content-wrap h2 { font-size: 26px; margin: 36px 0 14px; }
.content-wrap h3 { font-size: 20px; margin: 24px 0 10px; color: var(--primary); }
.content-wrap p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.8; }
.content-wrap ul, .content-wrap ol { margin: 0 0 16px 24px; color: var(--text-muted); line-height: 1.9; }
.policy-box { background: #eef4fb; border-left: 4px solid var(--primary); border-radius: 0 8px 8px 0; padding: 20px 24px; margin-bottom: 24px; }
.policy-box p { margin: 0; }
.last-updated { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 28px; display: block; }

/* ===== PRODUCTS ===== */
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.product-img { background: var(--light); padding: 28px; text-align: center; font-size: 64px; }
.product-body { padding: 20px; }
.product-body h4 { font-size: 15px; margin-bottom: 8px; }
.product-body .price { font-size: 20px; font-weight: 700; color: var(--accent); margin-bottom: 12px; }
.product-body .price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; margin-left: 8px; }
.product-tag { display: inline-block; font-size: 11px; background: #eef4fb; color: var(--primary); padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; font-weight: 600; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ===== CART / CHECKOUT ===== */
.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: white; padding: 10px 20px;
  border-radius: var(--radius); font-weight: 600; font-size: 14px; cursor: pointer; border: none;
  transition: all 0.2s;
}
.cart-btn:hover { background: #155e2f; color: white; transform: translateY(-1px); }
.cart-count {
  position: absolute; top: -8px; right: -8px;
  background: var(--accent); color: white; border-radius: 50%;
  width: 20px; height: 20px; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
/* Mini Cart Dropdown */
.cart-wrap { position: relative; }
.mini-cart {
  display: none; position: absolute; right: 0; top: calc(100% + 10px);
  width: 340px; background: white; border: 1px solid var(--border);
  border-radius: 12px; box-shadow: 0 8px 40px rgba(0,0,0,0.15); z-index: 999; overflow: hidden;
}
.mini-cart.open { display: block; }
.mini-cart-head { background: var(--primary); color: white; padding: 14px 18px; font-weight: 600; font-size: 14px; display: flex; justify-content: space-between; }
.mini-cart-items { max-height: 260px; overflow-y: auto; padding: 12px; }
.mini-cart-empty { text-align: center; padding: 32px 16px; color: var(--text-muted); font-size: 14px; }
.mini-cart-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.mini-cart-item:last-child { border-bottom: none; }
.mci-icon { font-size: 28px; flex-shrink: 0; }
.mci-body { flex: 1; }
.mci-name { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.mci-price { font-size: 13px; color: var(--accent); font-weight: 700; }
.mci-remove { background: none; border: none; color: #aaa; cursor: pointer; font-size: 16px; padding: 0 4px; }
.mci-remove:hover { color: var(--accent); }
.mini-cart-foot { padding: 14px 18px; border-top: 1px solid var(--border); background: var(--light); }
.mini-cart-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.btn-checkout { display: block; background: var(--green); color: white; text-align: center; padding: 12px; border-radius: var(--radius); font-weight: 700; font-size: 15px; }
.btn-checkout:hover { background: #155e2f; color: white; }
/* Add-to-cart btn on product card */
.add-to-cart-btn { background: var(--primary); color: white; border: none; padding: 9px 16px; border-radius: var(--radius); font-size: 13px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 6px; transition: background 0.2s; }
.add-to-cart-btn:hover { background: var(--accent); }

/* ===== CHECKOUT PAGE ===== */
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.checkout-form-box { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 36px; }
.checkout-summary { background: var(--light); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.summary-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.summary-item:last-child { border-bottom: none; }
.summary-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 17px; padding-top: 16px; border-top: 2px solid var(--primary); margin-top: 8px; }
.secure-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.secure-badge { background: white; border: 1px solid var(--border); border-radius: 6px; padding: 8px 12px; font-size: 11px; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.step-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); font-weight: 700; margin-bottom: 6px; }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 14px; overflow: hidden; }
.faq-q { padding: 20px 24px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: white; }
.faq-q:hover { background: var(--light); }
.faq-a { padding: 0 24px 20px; color: var(--text-muted); font-size: 15px; display: none; }
.faq-a.open { display: block; }
.faq-arrow { font-size: 18px; color: var(--accent); transition: transform 0.2s; }
.faq-arrow.open { transform: rotate(180deg); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; }
.contact-info-card { background: var(--primary); color: white; border-radius: 16px; padding: 40px; }
.contact-info-card h3 { color: white; margin-bottom: 24px; font-size: 22px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-ico { width: 44px; height: 44px; background: rgba(255,255,255,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item strong { display: block; margin-bottom: 4px; font-size: 14px; }
.contact-item span { font-size: 14px; color: #a8c4e0; }
.contact-form { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; color: var(--primary-dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 15px; color: var(--text); transition: border-color 0.2s; background: white;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== BLOG ===== */
.blog-card { background: white; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.2s; }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-img { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 40px; text-align: center; font-size: 52px; }
.blog-body { padding: 24px; }
.blog-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.blog-body h4 { font-size: 17px; margin-bottom: 10px; }
.blog-body p { font-size: 14px; color: var(--text-muted); }
.read-more { font-size: 13px; font-weight: 600; color: var(--accent); display: inline-block; margin-top: 12px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-placeholder { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); border-radius: 16px; padding: 60px; text-align: center; color: white; }
.about-img-placeholder .ico { font-size: 80px; margin-bottom: 20px; }
.about-img-placeholder h3 { font-size: 24px; color: white; }

/* ===== FOOTER ===== */
footer { background: var(--primary-dark); color: #a8c4e0; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { color: white; font-size: 22px; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 8px; }
.footer-col h4 { color: white; font-size: 15px; margin-bottom: 18px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #a8c4e0; font-size: 14px; }
.footer-col ul li a:hover { color: white; }
.footer-disclaimer { font-size: 11px; color: #6a8caa; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 14px; margin-top: 12px; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: #a8c4e0; margin-left: 16px; }
.footer-bottom a:hover { color: white; }

/* ===== ALERT ===== */
.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===== TABLE ===== */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th { background: var(--primary); color: white; padding: 12px 16px; text-align: left; font-weight: 600; }
td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
tr:hover td { background: var(--light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { display: none; }
  .checkout-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  nav { display: none; }
  .hero-text h1 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .info-strip .grid-4 { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-bar .container { gap: 14px; }
  #cookie-banner { flex-direction: column; }
  .mini-cart { width: 300px; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .mini-cart { width: 90vw; right: -10px; }
}

/* Mobile Menu */
.hamburger { display: none; cursor: pointer; font-size: 24px; color: var(--primary); }
@media (max-width: 768px) { .hamburger { display: block; } }
.mobile-nav { display: none; background: white; border-top: 1px solid var(--border); padding: 16px 20px; }
.mobile-nav a { display: block; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; font-weight: 500; color: var(--text); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: block; }

:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2438;
  --accent: #e85d26;
  --accent-light: #f47844;
  --light: #f5f7fa;
  --white: #ffffff;
  --text: #333333;
  --text-muted: #666666;
  --border: #dde3ec;
  --shadow: 0 4px 24px rgba(26,58,92,0.10);
  --radius: 8px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary-dark); line-height: 1.3; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary-dark);
  color: #a8c4e0;
  font-size: 13px;
  padding: 7px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: #a8c4e0; }
.top-bar a:hover { color: var(--white); }

/* ===== HEADER ===== */
header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky; top: 0; z-index: 999;
  box-shadow: var(--shadow);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 48px; height: 48px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 28px; height: 28px; fill: white; }
.logo-text h1 { font-size: 22px; color: var(--primary); margin: 0; }
.logo-text span { font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }

/* ===== NAV ===== */
nav { display: flex; align-items: center; gap: 4px; }
nav a { font-size: 14px; font-weight: 500; padding: 8px 13px; border-radius: 6px; color: var(--text); white-space: nowrap; }
nav a:hover, nav a.active { background: var(--light); color: var(--primary); }
.nav-cta { background: var(--accent) !important; color: var(--white) !important; border-radius: 6px !important; }
.nav-cta:hover { background: var(--accent-light) !important; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2a5f8f 100%);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 500px; height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='500' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='400' cy='100' r='200' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='300' cy='300' r='150' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") no-repeat;
}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h1 { font-size: 46px; color: white; margin-bottom: 20px; }
.hero-text h1 span { color: #f5a55a; }
.hero-text p { font-size: 18px; color: #c8dff0; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius); font-weight: 600; font-size: 15px; transition: all 0.2s; cursor: pointer; border: none; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-light); color: white; transform: translateY(-1px); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); color: white; }
.hero-stats { display: flex; gap: 30px; margin-top: 40px; }
.stat { text-align: center; }
.stat-num { font-size: 28px; font-weight: 700; color: #f5a55a; font-family: 'Playfair Display', serif; }
.stat-lbl { font-size: 12px; color: #c8dff0; text-transform: uppercase; letter-spacing: 1px; }
.hero-img-wrap { display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(10px);
  text-align: center;
  color: white;
}
.hero-card-icon { font-size: 64px; margin-bottom: 16px; }
.hero-card h3 { font-size: 20px; color: white; margin-bottom: 8px; }
.hero-card p { color: #c8dff0; font-size: 14px; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; justify-content: center; }
.badge { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); padding: 6px 14px; border-radius: 20px; font-size: 12px; color: #ddf; font-weight: 500; }

/* ===== SECTIONS ===== */
.section { padding: 70px 0; }
.section-alt { background: var(--light); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 34px; margin-bottom: 12px; }
.section-title p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-title .line { width: 50px; height: 3px; background: var(--accent); margin: 14px auto 0; border-radius: 2px; }

/* ===== CATEGORY CARDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.cat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.25s;
  display: block;
  color: var(--text);
}
.cat-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--primary); color: var(--text); }
.cat-icon { font-size: 44px; margin-bottom: 16px; }
.cat-card h3 { font-size: 18px; margin-bottom: 8px; }
.cat-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.cat-link { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--accent); }

/* ===== FEATURE CARD ===== */
.feature-card { display: flex; gap: 20px; align-items: flex-start; }
.feat-icon { width: 52px; height: 52px; background: #eef4fb; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.feat-body h4 { font-size: 16px; margin-bottom: 6px; }
.feat-body p { font-size: 14px; color: var(--text-muted); }

/* ===== BRAND LOGOS ===== */
.brand-row { display: flex; gap: 24px; align-items: center; justify-content: center; flex-wrap: wrap; }
.brand-pill {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.brand-pill:hover { box-shadow: var(--shadow); border-color: var(--primary); }

/* ===== INFO STRIP ===== */
.info-strip {
  background: var(--primary);
  color: white;
  padding: 28px 0;
}
.info-strip .grid-4 { align-items: center; }
.info-item { text-align: center; }
.info-item .ico { font-size: 28px; margin-bottom: 8px; }
.info-item strong { display: block; font-size: 15px; margin-bottom: 4px; }
.info-item span { font-size: 13px; color: #a8c4e0; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 50px 0;
  text-align: center;
}
.page-hero h1 { color: white; font-size: 36px; margin-bottom: 10px; }
.page-hero p { color: #c8dff0; font-size: 16px; }
.breadcrumb { font-size: 13px; color: #a8c4e0; margin-bottom: 14px; }
.breadcrumb a { color: #a8c4e0; }
.breadcrumb a:hover { color: white; }

/* ===== CONTENT PAGE ===== */
.content-wrap { max-width: 860px; margin: 0 auto; padding: 60px 20px; }
.content-wrap h2 { font-size: 26px; margin: 36px 0 14px; }
.content-wrap h3 { font-size: 20px; margin: 24px 0 10px; color: var(--primary); }
.content-wrap p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.8; }
.content-wrap ul, .content-wrap ol { margin: 0 0 16px 24px; color: var(--text-muted); line-height: 1.9; }
.policy-box { background: #eef4fb; border-left: 4px solid var(--primary); border-radius: 0 8px 8px 0; padding: 20px 24px; margin-bottom: 24px; }
.policy-box p { margin: 0; }
.last-updated { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 28px; display: block; }

/* ===== PRODUCTS ===== */
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.product-img { background: var(--light); padding: 28px; text-align: center; font-size: 64px; }
.product-body { padding: 20px; }
.product-body h4 { font-size: 15px; margin-bottom: 8px; }
.product-body .price { font-size: 20px; font-weight: 700; color: var(--accent); margin-bottom: 12px; }
.product-body .price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; margin-left: 8px; }
.product-tag { display: inline-block; font-size: 11px; background: #eef4fb; color: var(--primary); padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; font-weight: 600; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 14px; overflow: hidden; }
.faq-q { padding: 20px 24px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: white; }
.faq-q:hover { background: var(--light); }
.faq-a { padding: 0 24px 20px; color: var(--text-muted); font-size: 15px; display: none; }
.faq-a.open { display: block; }
.faq-arrow { font-size: 18px; color: var(--accent); transition: transform 0.2s; }
.faq-arrow.open { transform: rotate(180deg); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; }
.contact-info-card { background: var(--primary); color: white; border-radius: 16px; padding: 40px; }
.contact-info-card h3 { color: white; margin-bottom: 24px; font-size: 22px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-ico { width: 44px; height: 44px; background: rgba(255,255,255,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item strong { display: block; margin-bottom: 4px; font-size: 14px; }
.contact-item span { font-size: 14px; color: #a8c4e0; }
.contact-form { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; color: var(--primary-dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 15px; color: var(--text); transition: border-color 0.2s; background: white;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== BLOG ===== */
.blog-card { background: white; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.2s; }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-img { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 40px; text-align: center; font-size: 52px; }
.blog-body { padding: 24px; }
.blog-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.blog-body h4 { font-size: 17px; margin-bottom: 10px; }
.blog-body p { font-size: 14px; color: var(--text-muted); }
.read-more { font-size: 13px; font-weight: 600; color: var(--accent); display: inline-block; margin-top: 12px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-placeholder { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); border-radius: 16px; padding: 60px; text-align: center; color: white; }
.about-img-placeholder .ico { font-size: 80px; margin-bottom: 20px; }
.about-img-placeholder h3 { font-size: 24px; color: white; }

/* ===== FOOTER ===== */
footer { background: var(--primary-dark); color: #a8c4e0; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { color: white; font-size: 22px; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-col h4 { color: white; font-size: 15px; margin-bottom: 18px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #a8c4e0; font-size: 14px; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-bottom a { color: #a8c4e0; margin-left: 16px; }
.footer-bottom a:hover { color: white; }

/* ===== ALERT ===== */
.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===== TABLE ===== */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th { background: var(--primary); color: white; padding: 12px 16px; text-align: left; font-weight: 600; }
td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
tr:hover td { background: var(--light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { display: none; }
}
@media (max-width: 768px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  nav { display: none; }
  .hero-text h1 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .info-strip .grid-4 { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Mobile Menu */
.hamburger { display: none; cursor: pointer; font-size: 24px; color: var(--primary); }
@media (max-width: 768px) { .hamburger { display: block; } }
.mobile-nav { display: none; background: white; border-top: 1px solid var(--border); padding: 16px 20px; }
.mobile-nav a { display: block; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; font-weight: 500; color: var(--text); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: block; }
