/* Madison Luxury Vault - US Luxury E-Commerce Stylesheet */
:root {
  --primary-color: #111111;
  --accent-gold: #c5a059;
  --accent-gold-hover: #b08d46;
  --bg-light: #fbfbfb;
  --border-color: #e5e5e5;
  --text-muted: #666666;
  --success-green: #059669;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--primary-color);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.announcement-bar {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  letter-spacing: 0.5px;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}

.brand-logo { display: flex; flex-direction: column; }
.brand-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-top: -3px;
  font-weight: 600;
}

nav ul { display: flex; list-style: none; gap: 24px; }
nav a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #444;
  transition: color 0.2s;
  padding: 4px 0;
}
nav a:hover, nav a.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--accent-gold);
}

.header-actions { display: flex; align-items: center; gap: 16px; font-size: 13px; }
.badge-trustpilot {
  background: #00b67a;
  color: #fff !important;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
}

.hero {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  padding: 50px 24px;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.hero p {
  max-width: 780px;
  margin: 0 auto 28px;
  color: var(--text-muted);
  font-size: 16px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 24px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}
.stat-desc {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}

.container { max-width: 1280px; margin: 0 auto; padding: 40px 24px; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}
.section-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
}
.inventory-pill {
  background: #eef2ff;
  color: #3730a3;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.filter-btn {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 500;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.product-img-box {
  position: relative;
  background: #f7f7f7;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-box img { transform: scale(1.04); }

.tag-condition {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 3px;
  letter-spacing: 0.5px;
}
.tag-auth {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--success-green);
  color: #fff;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-brand {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.product-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
  color: #222;
}
.product-specs {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.4;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--border-color);
}
.price-current {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}
.price-was {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  margin-left: 6px;
}
.btn-view {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.btn-view:hover { background: var(--accent-gold); }

/* Policy & Details Blocks */
.policy-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}
.policy-card h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 16px;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.step-box {
  background: #fdfdfd;
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 6px;
}
.step-num {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

/* Footer */
footer {
  background: #111;
  color: #eee;
  padding: 60px 24px 24px;
  margin-top: 60px;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #aaa; font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1280px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #888;
}
