/* ============================================================
   東京Tシャツ本店 — Shared Stylesheet
   Theme: Red #CC0000 / White #FFFFFF / Blue #003087
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
  color: #222;
  background: #f8f8f8;
  font-size: 14px;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: #003087;
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.announcement-bar a { color: #ffd700; font-weight: 700; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: #CC0000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.site-logo .logo-main {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
}
.site-logo .logo-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.header-search {
  flex: 1;
  max-width: 420px;
  margin: 0 30px;
  display: flex;
}
.header-search input {
  width: 100%;
  border: none;
  border-radius: 4px 0 0 4px;
  padding: 8px 14px;
  font-size: 13px;
  outline: none;
}
.header-search button {
  background: #003087;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s;
}
.header-search button:hover { background: #001f5e; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-actions a {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  gap: 2px;
  transition: opacity 0.2s;
}
.header-actions a:hover { opacity: 0.8; text-decoration: none; }
.header-actions .icon { font-size: 20px; }
.cart-badge {
  position: relative;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #ffd700;
  color: #222;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   PAGE WRAPPER — Sidebar + Content
   ============================================================ */
.page-wrapper {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - 72px - 40px - 260px);
}

/* ============================================================
   VERTICAL SIDEBAR MENU
   ============================================================ */
.sidebar {
  width: 235px;
  min-width: 235px;
  background: #0a1628;
  color: #e8e8f0;
  flex-shrink: 0;
  padding-bottom: 40px;
}
.sidebar-title {
  background: #CC0000;
  color: #fff;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-section-label {
  padding: 14px 20px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #6b7a9f;
  text-transform: uppercase;
}
.nav-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  color: #c8d0e8;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.18s;
  border-left: 3px solid transparent;
}
.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(204,0,0,0.15);
  color: #fff;
  border-left-color: #CC0000;
  text-decoration: none;
}
.nav-menu a .nav-icon { font-size: 15px; width: 20px; flex-shrink: 0; }
.nav-submenu { padding-left: 16px; }
.nav-submenu a {
  font-size: 12px;
  padding: 7px 20px;
  color: #9aa3c0;
}
.nav-submenu a:hover,
.nav-submenu a.active {
  color: #fff;
  background: rgba(204,0,0,0.1);
  border-left-color: #CC0000;
}
.nav-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 0; }

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
  flex: 1;
  padding: 28px 30px;
  background: #fff;
  min-width: 0;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: #CC0000; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #aaa; }

/* ============================================================
   HERO / BANNER
   ============================================================ */
.hero-banner {
  background: linear-gradient(135deg, #CC0000 0%, #990000 40%, #003087 100%);
  color: #fff;
  border-radius: 8px;
  padding: 56px 48px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero-badge {
  display: inline-block;
  background: #ffd700;
  color: #222;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.hero-banner h1 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
}
.hero-banner p {
  font-size: 15px;
  opacity: 0.9;
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-white {
  background: #fff;
  color: #CC0000;
}
.btn-white:hover { background: #f0f0f0; }
.btn-red {
  background: #CC0000;
  color: #fff;
}
.btn-red:hover { background: #990000; }
.btn-blue {
  background: #003087;
  color: #fff;
}
.btn-blue:hover { background: #001f5e; }
.btn-outline {
  background: transparent;
  border: 2px solid currentColor;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-lg { padding: 14px 36px; font-size: 16px; }
.btn-sm { padding: 7px 18px; font-size: 12px; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.section-title {
  font-size: 20px;
  font-weight: 900;
  color: #111;
  position: relative;
  padding-left: 14px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  background: #CC0000;
  border-radius: 2px;
}
.section-link {
  font-size: 13px;
  color: #CC0000;
  font-weight: 600;
}
.section-link:hover { text-decoration: underline; }

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}
.category-card {
  background: linear-gradient(135deg, #CC0000, #990000);
  color: #fff;
  border-radius: 8px;
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(204,0,0,0.3);
  text-decoration: none;
}
.category-card.blue { background: linear-gradient(135deg, #003087, #001f5e); }
.category-card.blue:hover { box-shadow: 0 6px 20px rgba(0,48,135,0.3); }
.category-card.dark { background: linear-gradient(135deg, #1a1a2e, #0a0a20); }
.category-icon { font-size: 32px; margin-bottom: 8px; }
.category-name { font-size: 13px; font-weight: 700; }
.category-count { font-size: 11px; opacity: 0.8; margin-top: 4px; }

/* ============================================================
   PRODUCT GRID & CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.product-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.product-card:hover {
  box-shadow: 0 6px 22px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: #f5f5f5;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #CC0000;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-badge.new { background: #003087; }
.product-badge.sale { background: #e65c00; }
.product-badge.limited { background: #6a1a6a; }
.product-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}
.product-wishlist:hover { background: #fff; }
.product-info {
  padding: 12px 14px 14px;
}
.product-name {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
  line-height: 1.4;
}
.product-desc {
  font-size: 11px;
  color: #777;
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-size: 16px;
  font-weight: 900;
  color: #CC0000;
}
.product-price .old-price {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
  margin-left: 6px;
}
.product-add-btn {
  background: #003087;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.product-add-btn:hover { background: #CC0000; }
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #f0a500;
  margin-bottom: 6px;
}
.product-rating .count { color: #999; }
.product-sizes {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.size-tag {
  font-size: 10px;
  padding: 2px 6px;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #666;
}

/* ============================================================
   FILTERS & SORT BAR
   ============================================================ */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8f8f8;
  border-radius: 6px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-bar select {
  padding: 7px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
  outline: none;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
}
.result-count { font-size: 13px; color: #666; }

/* ============================================================
   INFO BANNERS (sale, shipping notice, etc.)
   ============================================================ */
.info-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 6px;
  margin-bottom: 22px;
  font-size: 13px;
}
.info-banner.red { background: #fff5f5; border-left: 4px solid #CC0000; color: #660000; }
.info-banner.blue { background: #f0f4ff; border-left: 4px solid #003087; color: #001f5e; }
.info-banner.green { background: #f0fff4; border-left: 4px solid #00880a; color: #004d05; }
.info-banner .icon { font-size: 20px; flex-shrink: 0; }

/* ============================================================
   FORMS
   ============================================================ */
.form-section {
  max-width: 680px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}
.form-label .required {
  color: #CC0000;
  margin-left: 4px;
  font-size: 11px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.form-control:focus { border-color: #CC0000; }
.form-control.error { border-color: #CC0000; }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { cursor: pointer; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-help { font-size: 11px; color: #888; margin-top: 4px; }
.form-error { font-size: 12px; color: #CC0000; margin-top: 4px; }
.radio-group, .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.radio-item, .checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
}
.radio-item input, .checkbox-item input { cursor: pointer; accent-color: #CC0000; }

/* ============================================================
   TABLES (size guide etc.)
   ============================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.data-table th {
  background: #CC0000;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
}
.data-table td {
  padding: 9px 14px;
  border-bottom: 1px solid #eee;
  color: #444;
}
.data-table tr:nth-child(even) td { background: #fafafa; }
.data-table tr:hover td { background: #fff5f5; }

/* ============================================================
   LIVE CHAT WIDGET
   ============================================================ */
.chat-launcher {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}
.chat-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #CC0000;
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(204,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  position: relative;
}
.chat-btn:hover { background: #990000; transform: scale(1.07); }
.chat-pulse {
  position: absolute;
  top: 0; right: 0;
  width: 14px; height: 14px;
  background: #00bb44;
  border-radius: 50%;
  border: 2px solid #fff;
}
.chat-window {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 340px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  z-index: 9998;
  display: none;
  flex-direction: column;
  overflow: hidden;
  max-height: 480px;
}
.chat-window.open { display: flex; }
.chat-header {
  background: #CC0000;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.chat-header-name { font-size: 14px; font-weight: 700; }
.chat-header-status { font-size: 11px; opacity: 0.85; }
.chat-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}
.chat-close-btn:hover { opacity: 1; }
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  max-width: 80%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
}
.chat-msg.bot {
  background: #fff;
  border: 1px solid #eee;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: #333;
}
.chat-msg.user {
  background: #CC0000;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg-time { font-size: 10px; opacity: 0.6; margin-top: 4px; }
.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 12px;
}
.quick-reply-btn {
  background: #fff;
  border: 1.5px solid #CC0000;
  color: #CC0000;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.18s;
}
.quick-reply-btn:hover { background: #CC0000; color: #fff; }
.chat-input-area {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-top: 1px solid #eee;
  background: #fff;
  gap: 8px;
}
.chat-input {
  flex: 1;
  border: 1.5px solid #ddd;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.chat-input:focus { border-color: #CC0000; }
.chat-send-btn {
  background: #CC0000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.chat-send-btn:hover { background: #990000; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a1628;
  color: #c8d0e8;
  padding: 48px 0 0;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand .footer-logo {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.footer-brand p { font-size: 13px; line-height: 1.8; color: #9aa3c0; }
.footer-contact {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}
.footer-contact a { color: #c8d0e8; }
.footer-contact a:hover { color: #fff; }
.footer-hours {
  background: #CC0000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  margin-top: 14px;
}
.footer-hours .hours-title {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 4px;
}
.footer-hours .hours-time {
  font-size: 18px;
  font-weight: 900;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: #9aa3c0;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  background: #060e1a;
  color: #6b7a9f;
  text-align: center;
  padding: 18px 30px;
  font-size: 12px;
  margin-top: 40px;
  line-height: 1.8;
}
.footer-bottom a { color: #9aa3c0; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   PAGE-SPECIFIC: ABOUT, FAQ, INFO PAGES
   ============================================================ */
.page-title {
  font-size: 26px;
  font-weight: 900;
  color: #111;
  margin-bottom: 8px;
}
.page-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 28px;
}
.content-block {
  max-width: 800px;
}
.content-block h2 {
  font-size: 18px;
  font-weight: 700;
  color: #CC0000;
  margin: 28px 0 10px;
  padding-left: 10px;
  border-left: 3px solid #CC0000;
}
.content-block h3 {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin: 18px 0 8px;
}
.content-block p {
  font-size: 13px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 12px;
}
.content-block ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}
.content-block ul li {
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
  line-height: 1.8;
}
.faq-item {
  border: 1px solid #eee;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  cursor: pointer;
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: #fafafa; }
.faq-question::after { content: '▼'; font-size: 11px; color: #CC0000; }
.faq-answer {
  padding: 0 18px 14px;
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

/* ============================================================
   SIZE GUIDE
   ============================================================ */
.size-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 24px;
}

/* ============================================================
   ORDER SUCCESS / CART
   ============================================================ */
.success-box {
  text-align: center;
  padding: 60px 40px;
  background: #f0fff4;
  border-radius: 8px;
  border: 1px solid #b3e6c0;
  display: none;
}
.success-box .success-icon { font-size: 60px; margin-bottom: 16px; }
.success-box h2 { font-size: 22px; font-weight: 700; color: #006b1a; margin-bottom: 10px; }
.success-box p { color: #005515; font-size: 14px; }

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 8px;
  border: 1px solid #eee;
}
.trust-badge .icon { font-size: 28px; flex-shrink: 0; }
.trust-badge h4 { font-size: 13px; font-weight: 700; color: #222; }
.trust-badge p { font-size: 11px; color: #777; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, #003087, #001f5e);
  color: #fff;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-bottom: 36px;
}
.newsletter-section h2 { font-size: 22px; font-weight: 900; margin-bottom: 8px; }
.newsletter-section p { font-size: 14px; opacity: 0.85; margin-bottom: 22px; }
.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  outline: none;
}
.newsletter-form button {
  padding: 12px 22px;
  background: #CC0000;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #990000; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .page-wrapper { flex-direction: column; }
  .sidebar { width: 100%; }
  .nav-submenu { padding-left: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trust-badges { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-banner { padding: 30px 22px; }
  .hero-banner h1 { font-size: 26px; }
  .header-inner { padding: 0 14px; }
  .header-search { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { grid-template-columns: 1fr; }
}
