/* ===================================================
   V M TRADERS — Main Stylesheet
   =================================================== */

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

:root {
  --primary:       #1a3a6b;
  --primary-dark:  #122b52;
  --primary-light: #2a5298;
  --accent:        #f59e0b;
  --accent-dark:   #d97706;
  --bg:            #f5f7fa;
  --white:         #ffffff;
  --grey-50:       #f8fafc;
  --grey-100:      #f1f5f9;
  --grey-200:      #e2e8f0;
  --grey-300:      #cbd5e1;
  --grey-500:      #64748b;
  --grey-700:      #334155;
  --text:          #1e293b;
  --text-muted:    #64748b;
  --danger:        #dc2626;
  --success:       #16a34a;
  --radius:        8px;
  --radius-lg:     12px;
  --radius-xl:     16px;
  --shadow-sm:     0 1px 3px rgba(26,58,107,.08), 0 1px 2px rgba(26,58,107,.06);
  --shadow:        0 4px 6px rgba(26,58,107,.08), 0 2px 4px rgba(26,58,107,.06);
  --shadow-lg:     0 10px 15px rgba(26,58,107,.10), 0 4px 6px rgba(26,58,107,.07);
  --transition:    .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============ LOADER ============ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  transition: opacity .5s, visibility .5s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { color: #fff; font-size: 28px; font-weight: 800; letter-spacing: 2px; }
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,.2); border-radius: 99px; overflow: hidden; }
.loader-bar-fill {
  height: 100%; width: 0; background: var(--accent);
  border-radius: 99px;
  animation: loadFill 1.2s ease forwards;
}
@keyframes loadFill { to { width: 100%; } }

/* ============ TOAST ============ */
#toast-container {
  position: fixed; top: 80px; right: 20px; z-index: 8888;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--white); border-radius: var(--radius);
  padding: 12px 18px; box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--success);
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--text);
  transform: translateX(120%); transition: transform .3s ease;
  pointer-events: auto; min-width: 220px; max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast.error { border-left-color: var(--danger); }
.toast.info  { border-left-color: var(--primary); }
.toast-icon { font-size: 18px; }

/* ============ HEADER ============ */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 38px; height: 38px; background: var(--primary);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { fill: var(--accent); width: 22px; height: 22px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .name {
  font-size: 19px; font-weight: 800; color: var(--primary);
  letter-spacing: .5px;
}
.logo-text .tagline { font-size: 10px; color: var(--text-muted); letter-spacing: 1.2px; text-transform: uppercase; margin-top: 2px; }

nav { display: flex; align-items: center; gap: 32px; }
nav a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: color var(--transition); padding: 4px 0; position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width var(--transition);
}
nav a:hover, nav a.active { color: var(--primary); }
nav a:hover::after, nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.cart-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  border: none; border-radius: var(--radius); cursor: pointer;
  font-size: 14px; font-weight: 600; padding: 8px 16px;
  transition: background var(--transition);
}
.cart-btn:hover { background: var(--primary-dark); }
.cart-btn svg { width: 18px; height: 18px; }
.cart-count {
  background: var(--accent); color: var(--primary);
  border-radius: 99px; padding: 1px 7px; font-size: 12px; font-weight: 700;
}

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none; background: var(--white);
  border-top: 1px solid var(--grey-200);
  padding: 16px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 10px 0; font-size: 15px; font-weight: 500;
  color: var(--text-muted); border-bottom: 1px solid var(--grey-100);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--primary); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: var(--radius); cursor: pointer;
  font-size: 14px; font-weight: 600; padding: 10px 22px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none; line-height: 1;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-accent { background: var(--accent); color: var(--primary); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-full { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ============ FOOTER ============ */
footer { background: var(--primary); color: rgba(255,255,255,.85); margin-top: auto; }
.footer-inner { padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .logo-name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.65); max-width: 280px; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: .5px; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--accent); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.45); }

/* ============ HERO ============ */
.hero {
  background: var(--primary);
  position: relative; overflow: hidden;
  padding: 80px 0 90px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=1600') center/cover no-repeat;
  opacity: .08;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-block; background: rgba(245,158,11,.15); color: var(--accent);
  border: 1px solid rgba(245,158,11,.3); border-radius: 99px;
  padding: 5px 16px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px); font-weight: 800; color: #fff;
  line-height: 1.1; margin-bottom: 20px;
  font-family: Georgia, serif;
}
.hero h1 span { color: var(--accent); }
.hero p { font-size: 18px; color: rgba(255,255,255,.75); margin-bottom: 36px; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============ SECTION ============ */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--grey-50); }
.section-dark { background: var(--primary); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header .label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(24px, 4vw, 36px); font-weight: 800; color: var(--text);
  font-family: Georgia, serif; margin-bottom: 12px;
}
.section-dark .section-header h2 { color: #fff; }
.section-header p { color: var(--text-muted); font-size: 16px; max-width: 520px; margin: 0 auto; }
.divider {
  width: 48px; height: 3px; background: var(--accent);
  border-radius: 99px; margin: 16px auto 0;
}

/* ============ TRUST CARDS ============ */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 36px 28px;
  text-align: center; box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: box-shadow var(--transition), transform var(--transition);
}
.trust-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.trust-icon {
  width: 60px; height: 60px; background: rgba(26,58,107,.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.trust-icon svg { width: 28px; height: 28px; fill: var(--primary); }
.trust-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; font-family: Georgia, serif; }
.trust-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============ CATEGORY CARDS ============ */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  height: 220px; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,58,107,.75) 0%, rgba(26,58,107,.2) 60%, transparent 100%);
  display: flex; align-items: flex-end; padding: 20px;
}
.category-card-overlay h3 {
  color: #fff; font-size: 18px; font-weight: 700;
  font-family: Georgia, serif; text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

/* ============ PRODUCT CARDS ============ */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--grey-200); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(26,58,107,.2); }
.product-card-img {
  position: relative; aspect-ratio: 1; overflow: hidden; background: var(--grey-100);
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
  border-radius: 99px; padding: 3px 10px;
  font-size: 11px; font-weight: 600; color: var(--primary);
  border: 1px solid rgba(26,58,107,.1);
}
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 {
  font-size: 15px; font-weight: 700; color: var(--text);
  margin-bottom: 4px; font-family: Georgia, serif;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.product-card-body h3 a { color: inherit; transition: color var(--transition); }
.product-card-body h3 a:hover { color: var(--primary); }
.product-price { font-size: 20px; font-weight: 800; color: var(--accent); margin-bottom: 6px; }
.product-desc {
  font-size: 13px; color: var(--text-muted); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1; margin-bottom: 14px;
}
.add-to-cart-btn {
  width: 100%; background: var(--primary); color: #fff;
  border: none; border-radius: var(--radius); padding: 10px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background var(--transition);
}
.add-to-cart-btn:hover { background: var(--primary-dark); }
.add-to-cart-btn svg { width: 15px; height: 15px; }

/* ============ SHOP PAGE ============ */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.shop-sidebar {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--grey-200); padding: 24px;
  box-shadow: var(--shadow-sm); position: sticky; top: 82px;
}
.sidebar-title {
  font-size: 14px; font-weight: 700; color: var(--text); text-transform: uppercase;
  letter-spacing: .8px; margin-bottom: 14px; display: flex; align-items: center; gap: 6px;
}
.sidebar-title svg { width: 15px; height: 15px; fill: var(--primary); }
.search-box { position: relative; margin-bottom: 24px; }
.search-box svg {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; fill: var(--grey-500);
}
.search-box input {
  width: 100%; padding: 9px 12px 9px 38px;
  border: 1px solid var(--grey-200); border-radius: var(--radius);
  font-size: 13px; color: var(--text); background: var(--grey-50);
  outline: none; transition: border-color var(--transition);
}
.search-box input:focus { border-color: var(--primary); background: var(--white); }
.category-filter { display: flex; flex-direction: column; gap: 4px; }
.cat-btn {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 9px 12px; border-radius: var(--radius); font-size: 13px; font-weight: 500;
  color: var(--text-muted); transition: background var(--transition), color var(--transition);
}
.cat-btn:hover { background: var(--grey-100); color: var(--text); }
.cat-btn.active { background: var(--primary); color: #fff; }
.shop-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.shop-header h1 { font-size: 28px; font-weight: 800; font-family: Georgia, serif; }
.result-count { font-size: 13px; color: var(--text-muted); }
.no-results {
  text-align: center; padding: 60px 20px;
  background: var(--white); border-radius: var(--radius-xl); border: 1px solid var(--grey-200);
}
.no-results svg { width: 48px; height: 48px; fill: var(--grey-300); margin: 0 auto 16px; }
.no-results h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.no-results p { color: var(--text-muted); font-size: 14px; }

/* ============ PRODUCT DETAIL ============ */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.product-detail-img {
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 1; box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200);
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info { padding-top: 8px; }
.product-detail-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.product-detail-name {
  font-size: clamp(24px, 4vw, 36px); font-weight: 800;
  font-family: Georgia, serif; color: var(--text); line-height: 1.2; margin-bottom: 16px;
}
.product-detail-price {
  font-size: 38px; font-weight: 800; color: var(--primary); margin-bottom: 20px;
}
.product-detail-desc { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.qty-label { font-size: 14px; font-weight: 600; color: var(--text); }
.qty-control {
  display: flex; align-items: center; border: 1px solid var(--grey-200);
  border-radius: var(--radius); overflow: hidden;
}
.qty-control button {
  width: 36px; height: 36px; background: var(--grey-50); border: none; cursor: pointer;
  font-size: 18px; font-weight: 600; color: var(--primary);
  transition: background var(--transition);
}
.qty-control button:hover { background: var(--grey-200); }
.qty-control input {
  width: 48px; text-align: center; border: none; outline: none;
  font-size: 15px; font-weight: 600; color: var(--text);
  border-left: 1px solid var(--grey-200); border-right: 1px solid var(--grey-200);
  padding: 6px 0;
}
.product-detail-btns { display: flex; gap: 12px; margin-bottom: 28px; }
.product-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 24px; border-top: 1px solid var(--grey-200); }
.product-trust-item { text-align: center; }
.product-trust-item p:first-child { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 2px; text-transform: uppercase; letter-spacing: .5px; }
.product-trust-item p:last-child { font-size: 12px; color: var(--text-muted); }
.related-section { padding-top: 56px; border-top: 1px solid var(--grey-200); margin-top: 56px; }
.related-section h2 { font-size: 24px; font-weight: 800; font-family: Georgia, serif; margin-bottom: 24px; }

/* ============ BREADCRUMB ============ */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 32px; font-size: 13px; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-muted); }

/* ============ CART PAGE ============ */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: var(--text-muted); padding: 12px 16px;
  border-bottom: 1px solid var(--grey-200);
}
.cart-table td { padding: 16px; border-bottom: 1px solid var(--grey-100); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-item-img { width: 68px; height: 68px; border-radius: var(--radius); object-fit: cover; background: var(--grey-100); }
.cart-item-info h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cart-item-info p { font-size: 12px; color: var(--text-muted); }
.cart-item-price { font-size: 15px; font-weight: 700; color: var(--accent); white-space: nowrap; }
.cart-item-total { font-size: 15px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.remove-btn {
  background: none; border: none; cursor: pointer; color: var(--grey-300);
  transition: color var(--transition); padding: 4px;
}
.remove-btn:hover { color: var(--danger); }
.remove-btn svg { width: 18px; height: 18px; fill: currentColor; }

.cart-summary {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--grey-200); padding: 24px;
  box-shadow: var(--shadow-sm); position: sticky; top: 82px;
}
.cart-summary h2 { font-size: 20px; font-weight: 800; font-family: Georgia, serif; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; }
.summary-row .label { color: var(--text-muted); }
.summary-row .value { font-weight: 600; color: var(--text); }
.summary-row .free { color: var(--success); font-weight: 600; }
.summary-divider { border: none; border-top: 1px solid var(--grey-200); margin: 14px 0; }
.summary-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 800; margin-bottom: 20px; color: var(--text); }
.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty svg { width: 72px; height: 72px; fill: var(--grey-300); margin: 0 auto 20px; }
.cart-empty h2 { font-size: 24px; font-weight: 800; font-family: Georgia, serif; margin-bottom: 10px; }
.cart-empty p { color: var(--text-muted); margin-bottom: 24px; }

/* ============ CHECKOUT ============ */
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.form-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--grey-200); padding: 28px;
  box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.form-card h2 { font-size: 18px; font-weight: 800; font-family: Georgia, serif; margin-bottom: 20px; color: var(--text); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--grey-200); border-radius: var(--radius);
  font-size: 14px; color: var(--text); outline: none;
  transition: border-color var(--transition);
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,107,.08); }
.form-group textarea { resize: none; }
.payment-option {
  display: flex; align-items: center; gap: 12px;
  border: 2px solid var(--primary); border-radius: var(--radius-lg);
  padding: 16px; background: rgba(26,58,107,.04);
}
.radio-dot {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.radio-dot::after {
  content: ''; width: 10px; height: 10px;
  border-radius: 50%; background: var(--primary);
}
.payment-option .info h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.payment-option .info p { font-size: 12px; color: var(--text-muted); }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 40px; max-width: 480px; width: 100%; text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(.9); transition: transform .3s;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-icon {
  width: 80px; height: 80px; background: rgba(22,163,74,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.modal-icon svg { width: 44px; height: 44px; fill: var(--success); }
.modal h2 { font-size: 24px; font-weight: 800; font-family: Georgia, serif; margin-bottom: 10px; color: var(--text); }
.modal p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 8px; }
.order-id-box {
  background: var(--grey-50); border-radius: var(--radius-lg);
  padding: 16px; margin: 20px 0; border: 1px solid var(--grey-200);
}
.order-id-box .label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.order-id-box .id { font-size: 22px; font-weight: 800; color: var(--primary); font-family: monospace; letter-spacing: 1px; }
.modal-btns { display: flex; gap: 10px; margin-top: 24px; }

/* ============ ABOUT / CONTACT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: 32px; font-weight: 800; font-family: Georgia, serif; margin-bottom: 20px; color: var(--text); }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 24px;
  border: 1px solid var(--grey-200); box-shadow: var(--shadow-sm);
}
.value-icon {
  width: 44px; height: 44px; background: rgba(26,58,107,.08); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.value-icon svg { width: 22px; height: 22px; fill: var(--primary); }
.value-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; font-family: Georgia, serif; }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.stat-card { text-align: center; padding: 28px 16px; }
.stat-card .num { font-size: 36px; font-weight: 800; color: var(--accent); font-family: Georgia, serif; margin-bottom: 6px; }
.stat-card .lbl { font-size: 13px; color: rgba(255,255,255,.7); }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 800px; margin: 0 auto; }
.contact-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 32px;
  border: 1px solid var(--grey-200); box-shadow: var(--shadow-sm);
}
.contact-card-icon {
  width: 52px; height: 52px; background: rgba(26,58,107,.08);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.contact-card-icon svg { width: 26px; height: 26px; fill: var(--primary); }
.contact-card h3 { font-size: 18px; font-weight: 700; font-family: Georgia, serif; color: var(--text); margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.contact-card a { color: var(--primary); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }
.contact-cta {
  background: var(--primary); border-radius: var(--radius-xl); padding: 32px;
  color: #fff; display: flex; flex-direction: column; justify-content: space-between;
}
.contact-cta h3 { font-size: 18px; font-weight: 700; font-family: Georgia, serif; margin-bottom: 10px; }
.contact-cta p { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.7; }

/* ============ HOURS TABLE ============ */
.hours-list { display: flex; flex-direction: column; gap: 0; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 13px; border-bottom: 1px solid var(--grey-100); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-muted); }
.hours-row .time { font-weight: 600; color: var(--text); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero { background: var(--primary); padding: 52px 0; }
.page-hero-badge {
  display: inline-block; background: rgba(245,158,11,.15); color: var(--accent);
  border: 1px solid rgba(245,158,11,.3); border-radius: 99px;
  padding: 4px 14px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 16px;
}
.page-hero h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 800; color: #fff; font-family: Georgia, serif; margin-bottom: 10px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.75); max-width: 520px; }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-d1 { animation-delay: .1s; }
.fade-up-d2 { animation-delay: .2s; }
.fade-up-d3 { animation-delay: .3s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .trust-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid.cols-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 56px 0 64px; }
  .modal-btns { flex-direction: column; }
  .product-detail-btns { flex-direction: column; }
}
