/* ============================================
   Sureholdings Redesign v2.0 - Main Stylesheet
   Complete UI overhaul for luxury wine investment brand
   ============================================ */

/* === 1. BRAND COLORS === */
:root {
  --burgundy: #722F37;
  --navy: #1B2A4A;
  --warm-gold: #C9A44A;
  --cream: #F5F0EB;
  --white: #FFFFFF;
  --charcoal: #2D2D2D;
  --soft-grey: #8A8A8A;
  --light-grey: #E8E4DF;
  --success-green: #2E7D32;
  --danger-red: #C62828;
}

/* === 2. HEADER === */
.page-header {
  background: var(--navy) !important;
  border-bottom: 3px solid var(--warm-gold);
}

/* Logo area */
.header.content .logo {
  max-height: 48px;
  margin: 8px 0;
}
.header.content .logo img {
  max-height: 48px;
  filter: brightness(0) invert(1);
}

/* Navigation */
.menu-main {
  background: var(--navy);
  border-bottom: 3px solid var(--warm-gold);
}
.menu-main__list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1280px;
  margin: 0 auto;
}
.menu-main__item {
  margin: 0;
}
.menu-main__link {
  color: var(--white) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  padding: 14px 20px;
  transition: color 0.2s, background 0.2s;
}
.menu-main__link:hover,
.menu-main__item.active .menu-main__link {
  color: var(--warm-gold) !important;
  background: rgba(255,255,255,0.08);
}

/* Submenu */
.menu-main__list ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-top: 3px solid var(--warm-gold);
  z-index: 100;
  padding: 8px 0;
  list-style: none;
}
.menu-main__item:hover ul {
  display: block;
}
.menu-main__list ul li {
  margin: 0;
}
.menu-main__list ul a {
  background: var(--white);
  border: 1px solid var(--light-grey);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-top: 3px solid var(--warm-gold);
}
.menu-main__list ul a {
  color: var(--charcoal) !important;
  font-size: 1.3rem;
  padding: 8px 24px;
}
.menu-main__list ul a:hover {
  color: var(--burgundy) !important;
  background: var(--cream);
}

/* Header right section - Search, Account, Cart */
.header.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.header.content .block-search {
  margin-left: auto !important;
  margin-right: 12px;
}
.header.content .block-search input {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  color: var(--white);
  padding: 6px 16px;
  font-size: 1.2rem;
  width: 200px;
  transition: width 0.3s, background 0.3s;
}
.header.content .block-search input:focus {
  width: 260px;
  background: rgba(255,255,255,0.2);
  border-color: var(--warm-gold);
}
.header.content .block-search input::placeholder {
  color: rgba(255,255,255,0.6);
}

/* Sign In button in header */
.header.content .header.links {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header.content .header.links li {
  margin: 0;
}
.header.content .header.links a {
  color: var(--white) !important;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.header.content .header.links a:hover {
  color: var(--warm-gold) !important;
}
.header.content .header.links .authorization-link a {
  background: var(--warm-gold);
  color: var(--navy) !important;
  padding: 6px 18px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.header.content .header.links .authorization-link a:hover {
  background: #a1833b;
  color: var(--navy) !important;
}

/* Cart icon */
.minicart-wrapper {
  margin-left: 12px !important;
}
.minicart-wrapper .action.showcart {
  color: var(--white) !important;
}
.minicart-wrapper .action.showcart .counter.qty {
  background: var(--warm-gold);
  color: var(--navy);
  border-radius: 50%;
}

/* === 3. HERO SECTION === */
.cms-home .page-main {
  max-width: 100%;
  padding: 0;
}
.cms-home .column.main {
  max-width: 100%;
}

.home-hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1B2A4A 0%, #2C1A1E 50%, #1B2A4A 100%);
}
.home-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}
.home-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.85) 0%, rgba(114,47,55,0.70) 100%);
  z-index: 1;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}
.home-hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4.8rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.home-hero-content .hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
  line-height: 1.4;
}
.home-hero-content .hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.home-hero-content .hero-ctas a {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.03em;
}
.home-hero-content .hero-ctas .btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border: 2px solid var(--burgundy);
}
.home-hero-content .hero-ctas .btn-primary:hover {
  background: #5c252c;
  border-color: #5c252c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(114,47,55,0.4);
}
.home-hero-content .hero-ctas .btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.home-hero-content .hero-ctas .btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.home-hero-content .hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.home-hero-content .hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 1.2rem;
}
.home-hero-content .hero-trust .trust-item i,
.home-hero-content .hero-trust .trust-item svg {
  color: var(--warm-gold);
}

/* === 4. TRUST BAR === */
.home-trust-bar {
  background: var(--white);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--light-grey);
}
.home-trust-bar .trust-logo img {
  height: 32px;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 0.3s;
}
.home-trust-bar .trust-logo img:hover {
  opacity: 1;
  filter: grayscale(0);
}
.home-trust-bar .trustpilot-widget {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--charcoal);
  font-size: 1.2rem;
  text-decoration: none;
}

/* === 5. HOW IT WORKS === */
.home-how-it-works {
  padding: 80px 40px;
  background: var(--cream);
}
.home-how-it-works .section-title {
  text-align: center;
  margin-bottom: 48px;
}
.home-how-it-works .section-title h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  color: var(--navy);
  margin: 0 0 8px;
}
.home-how-it-works .section-title p {
  color: var(--soft-grey);
  font-size: 1.6rem;
  margin: 0;
}
.home-how-it-works .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.home-how-it-works .step-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.home-how-it-works .step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.home-how-it-works .step-card .step-number {
  width: 48px;
  height: 48px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 auto 16px;
}
.home-how-it-works .step-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}
.home-how-it-works .step-card p {
  color: var(--soft-grey);
  font-size: 1.3rem;
  margin: 0 0 16px;
  line-height: 1.5;
}
.home-how-it-works .step-card .step-icon {
  font-size: 3.2rem;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.home-how-it-works .consult-cta {
  text-align: center;
  margin-top: 48px;
}
.home-how-it-works .consult-cta a {
  display: inline-block;
  background: var(--burgundy);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.home-how-it-works .consult-cta a:hover {
  background: #5c252c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(114,47,55,0.3);
}

/* === 6. BEST INVESTMENT PICKS === */
.home-best-picks {
  padding: 80px 40px;
  background: var(--white);
}
.home-best-picks .section-title {
  text-align: center;
  margin-bottom: 32px;
}
.home-best-picks .section-title h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  color: var(--navy);
  margin: 0 0 8px;
}
.home-best-picks .section-title p {
  color: var(--soft-grey);
  font-size: 1.4rem;
  margin: 0;
}
.home-best-picks .picks-table {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
}
.home-best-picks .picks-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soft-grey);
  border-bottom: 2px solid var(--light-grey);
}
.home-best-picks .picks-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--light-grey);
  font-size: 1.4rem;
  color: var(--charcoal);
}
.home-best-picks .picks-table tr:hover td {
  background: rgba(201,164,74,0.06);
}
.home-best-picks .picks-table .wine-name {
  font-weight: 600;
  color: var(--navy);
}
.home-best-picks .picks-table .vintage {
  color: var(--soft-grey);
}
.home-best-picks .picks-table .format {
  font-size: 1.2rem;
  color: var(--soft-grey);
}
.home-best-picks .picks-table .price {
  font-weight: 600;
  font-size: 1.5rem;
}
.home-best-picks .picks-table .change-up {
  color: var(--success-green);
  font-weight: 600;
}
.home-best-picks .picks-table .change-down {
  color: var(--danger-red);
  font-weight: 600;
}
.home-best-picks .picks-table .action-invest {
  background: transparent;
  border: 2px solid var(--burgundy);
  color: var(--burgundy);
  padding: 6px 18px;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.home-best-picks .picks-table .action-invest:hover {
  background: var(--burgundy);
  color: var(--white);
}
.home-best-picks .view-all {
  text-align: center;
  margin-top: 32px;
}
.home-best-picks .view-all a {
  display: inline-block;
  color: var(--burgundy);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.2s;
}
.home-best-picks .view-all a:hover {
  color: #5c252c;
  text-decoration: underline;
}

/* === 7. FOR INVESTORS / FOR BUYERS SECTIONS === */
.home-dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
}
.home-dual-cta .cta-block {
  padding: 80px 40px;
  text-align: center;
  position: relative;
}
.home-dual-cta .cta-block.investors {
  background: var(--cream);
}
.home-dual-cta .cta-block.buyers {
  background: var(--white);
}
.home-dual-cta .cta-block .cta-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}
.home-dual-cta .cta-block h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  color: var(--navy);
  margin: 0 0 8px;
}
.home-dual-cta .cta-block p {
  color: var(--soft-grey);
  font-size: 1.4rem;
  margin: 0 0 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.home-dual-cta .cta-block a {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.home-dual-cta .cta-block.investors a {
  background: var(--burgundy);
  color: var(--white);
}
.home-dual-cta .cta-block.investors a:hover {
  box-shadow: 0 4px 16px rgba(114,47,55,0.3);
  transform: translateY(-2px);
}
.home-dual-cta .cta-block.buyers a {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.home-dual-cta .cta-block.buyers a:hover {
  background: var(--navy);
  color: var(--white);
}

/* === 8. SUBSCRIBE SECTION === */
.home-subscribe {
  padding: 60px 40px;
  background: var(--navy);
  text-align: center;
}
.home-subscribe h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  color: var(--white);
  margin: 0 0 8px;
}
.home-subscribe p {
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  margin: 0 0 24px;
}
.home-subscribe .block.newsletter {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}
.home-subscribe .block.newsletter input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.4rem;
}
.home-subscribe .block.newsletter input:focus {
  border-color: var(--warm-gold);
  background: rgba(255,255,255,0.15);
}
.home-subscribe .block.newsletter input::placeholder {
  color: rgba(255,255,255,0.5);
}
.home-subscribe .block.newsletter button {
  background: var(--warm-gold);
  color: var(--navy);
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s;
}
.home-subscribe .block.newsletter button:hover {
  background: #a1833b;
}

/* === 9. LOGIN / REGISTRATION PAGE === */
.customer-account-login .page-main,
.customer-account-create .page-main {
  max-width: 1000px;
}
.customer-account-login .login-container,
.customer-account-create .login-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  overflow: hidden;
}
.customer-account-login .block.block-customer-login,
.customer-account-create .block.block-customer-login {
  border: none;
  padding: 40px;
  margin: 0;
}
.customer-account-login .block.block-new-customer,
.customer-account-create .block.block-new-customer {
  background: var(--cream);
  padding: 40px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.customer-account-login .block-title strong,
.customer-account-create .block-title strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  color: var(--navy);
}
.customer-account-login .fieldset,
.customer-account-create .fieldset {
  margin-bottom: 16px;
}
.customer-account-login .actions-toolbar .primary button,
.customer-account-create .actions-toolbar .primary button {
  background: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s;
}
.customer-account-login .actions-toolbar .primary button:hover,
.customer-account-create .actions-toolbar .primary button:hover {
  background: #5c252c;
}

/* === 10. PRODUCT PAGE === */
.catalog-product-view .product-info-main {
  position: relative;
}
.catalog-product-view .product-info-main .page-title-wrapper h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

/* Critic scores on product page */
.catalog-product-view .product-info-main .critic-scores {
  display: flex;
  gap: 12px;
  margin: 12px 0;
}
.catalog-product-view .product-info-main .critic-scores .score-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 600;
}
.catalog-product-view .product-info-main .critic-scores .score-badge .score {
  color: var(--burgundy);
  font-size: 1.4rem;
}
.catalog-product-view .product-info-main .critic-scores .score-badge .source {
  color: var(--soft-grey);
  font-weight: 400;
}

/* Bid/Ask price display */
.catalog-product-view .product-info-main .bid-ask-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
  padding: 16px;
  background: var(--cream);
  border-radius: 8px;
}
.catalog-product-view .product-info-main .bid-ask-prices .price-block {
  text-align: center;
}
.catalog-product-view .product-info-main .bid-ask-prices .price-block .label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soft-grey);
  margin-bottom: 4px;
}
.catalog-product-view .product-info-main .bid-ask-prices .price-block .value {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
}
.catalog-product-view .product-info-main .bid-ask-prices .price-block.bid .value {
  color: var(--burgundy);
}
.catalog-product-view .product-info-main .product-add-form {
  margin-top: 16px;
}
.catalog-product-view .product-info-main .product-add-form .box-tocart .field.qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.catalog-product-view .product-info-main .product-add-form .box-tocart .actions .tocart {
  background: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.catalog-product-view .product-info-main .product-add-form .box-tocart .actions .tocart:hover {
  background: #5c252c;
}

/* Price history placeholder */
.catalog-product-view .product-info-main .price-history {
  margin: 24px 0;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 8px;
}
.catalog-product-view .product-info-main .price-history .chart-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.catalog-product-view .product-info-main .price-history .chart-placeholder {
  height: 120px;
  background: linear-gradient(90deg, var(--cream) 0%, #f0ebe5 50%, var(--cream) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-grey);
  font-size: 1.2rem;
}

/* Provenance section */
.catalog-product-view .product-info-main .provenance {
  margin: 16px 0;
  padding: 16px;
  background: var(--cream);
  border-radius: 8px;
}
.catalog-product-view .product-info-main .provenance .prov-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.catalog-product-view .product-info-main .provenance .prov-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 1.3rem;
  color: var(--charcoal);
}

/* === 11. CATEGORY PAGE FILTERS === */
.catalog-category-view .category-view .page-title-wrapper h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  color: var(--navy);
}

/* Advanced filter bar */
.catalog-category-view .toolbar-products .sorter {
  display: flex;
  align-items: center;
  gap: 8px;
}
.catalog-category-view .toolbar-products .sorter label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  color: var(--soft-grey);
}

/* Product grid cards */
.catalog-category-view .products-grid .product-item {
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.catalog-category-view .products-grid .product-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.catalog-category-view .products-grid .product-item .product-item-info {
  padding: 16px;
}
.catalog-category-view .products-grid .product-item .product-item-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  min-height: 3em;
}
.catalog-category-view .products-grid .product-item .price-box .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--burgundy);
}
.catalog-category-view .products-grid .product-item .product-item-actions .actions-primary {
  margin-top: 8px;
}
.catalog-category-view .products-grid .product-item .product-item-actions .actions-primary button {
  width: 100%;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 10px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s;
}
.catalog-category-view .products-grid .product-item .product-item-actions .actions-primary button:hover {
  background: #5c252c;
}

/* === 12. FOOTER === */
.page-footer {
  background: var(--navy) !important;
  color: rgba(255,255,255,0.8);
  padding: 40px 0 0;
}
.page-footer .footer.content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.page-footer .footer.content .footer-logo {
  margin-bottom: 16px;
}
.page-footer .footer.content .footer-logo img {
  filter: brightness(0) invert(1);
  max-height: 36px;
}
.page-footer .footer.content .footer-description {
  color: rgba(255,255,255,0.6);
  font-size: 1.3rem;
  line-height: 1.6;
}
.page-footer .footer.content .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-footer .footer.content .footer-menu li {
  margin-bottom: 8px;
}
.page-footer .footer.content .footer-menu a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.page-footer .footer.content .footer-menu a:hover {
  color: var(--warm-gold);
}
.page-footer .footer.content .footer-menu .menu-title {
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.page-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
  margin-top: 32px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
}

/* === 13. RESPONSIVE === */

/* ============================================
   MOBILE RESPONSIVE MEDIA QUERIES
   Comprehensive mobile-first responsive overrides
   ============================================ */

/* Large tablets */
@media (max-width: 992px) {
  .home-dual-cta .dual-cta-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-best-picks .picks-table {
    font-size: 1.2rem;
  }
}

/* Tablets & small screens */
@media (max-width: 768px) {
  .home-hero { min-height: 60vh; }
  .home-hero-content { padding: 20px; }
  .home-hero-content h1 { font-size: 2.8rem; }
  .home-hero-content .hero-subtitle { font-size: 1.6rem; }
  .home-hero-content .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .home-hero-content .hero-ctas a {
    width: 100%;
    max-width: 280px;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .home-trust-bar {
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
    font-size: 1.1rem;
  }
  .home-how-it-works .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-how-it-works .step-card {
    margin: 0 auto;
    max-width: 360px;
  }
  .home-best-picks .picks-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .home-best-picks .picks-table {
    min-width: 500px;
  }
  .header.content { flex-wrap: wrap; }
  .header.content .logo { max-height: 36px; margin: 6px 0; }
  .header.content .logo img { max-height: 36px; }
  .block-search { order: 10; width: 100%; margin-top: 8px; }
  .header.content .block-search input {
    width: 100% !important;
    max-width: 100%;
  }
  .panel.header {
    flex-wrap: wrap;
    justify-content: center;
    padding: 4px 12px;
    gap: 6px;
  }
  .social-icons-list { gap: 4px; }
  .social-icons-list a { width: 24px; height: 24px; font-size: 1rem; }
  .page-footer .footer.content {
    flex-direction: column;
    gap: 24px;
    padding: 20px;
  }
  .footer.content .block { width: 100%; }
  .customer-account-login .login-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-info-main { padding: 0 16px; }
  .product.media { margin-bottom: 20px; }
  .page-header {
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
}

/* Large phones */
@media (max-width: 640px) {
  .products-grid .product-items {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
  }
  .products-grid .product-item {
    width: 100% !important;
    margin: 0 !important;
  }
  .product-item-info { width: 100% !important; }
  .action.tocart.primary {
    min-height: 44px;
    font-size: 1.4rem;
    padding: 10px 16px;
  }
  .panel.header .header.links li:not(.authorization-link) { display: none; }
  .panel.header { height: auto; min-height: 36px; }
  .switcher-currency { font-size: 1rem; }
  .home-how-it-works .step-card { padding: 24px 16px; }
  .home-how-it-works .step-card h3 { font-size: 1.6rem; }
  .home-how-it-works, .home-best-picks, .home-dual-cta { padding: 32px 16px; }
  .checkout-container { padding: 0 12px; }
  .opc-wrapper { width: 100% !important; }
  .opc-sidebar { width: 100% !important; margin-top: 20px; }
  .cart.table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cart.table-wrapper .cart thead { display: none; }
  .cart.table-wrapper .cart tr {
    display: block;
    margin-bottom: 16px;
    border: 1px solid var(--light-grey);
    padding: 12px;
  }
  .cart.table-wrapper .cart td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border: none;
  }
  .cart.table-wrapper .cart td::before {
    content: attr(data-th);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--navy);
  }
}

/* Small phones */
@media (max-width: 480px) {
  .home-hero-content h1 { font-size: 2.2rem; line-height: 1.2; }
  .home-hero-content .hero-subtitle { font-size: 1.4rem; }
  .home-hero-content .hero-trust {
    flex-direction: column;
    gap: 6px;
    font-size: 1.1rem;
  }
  .section-title h2 { font-size: 2rem; }
  .products-grid .product-items { grid-template-columns: 1fr !important; }
  .menu-main { padding: 12px; }
  .menu-main__link {
    font-size: 1.6rem;
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .close-menu i { font-size: 2.4rem; }
  .home-how-it-works, .home-best-picks { padding: 32px 12px; }
  .btn-primary, .btn-secondary, .action.primary, .action.tocart.primary {
    min-height: 48px;
    font-size: 1.5rem;
    padding: 12px 24px;
  }
  input[type="text"], input[type="email"], input[type="password"],
  input[type="search"], select, textarea { font-size: 16px !important; }
  .page-footer .copyright ul { font-size: 1rem; }
  .account .page-title-wrapper { flex-direction: column; gap: 12px; }
  .block-dashboard-info .box-content { padding: 12px; }
}

/* Touch optimization */
@media (hover: none) and (pointer: coarse) {
  .action, button, a.btn, .btn { min-height: 44px; min-width: 44px; }
  .product-item .tocart { min-height: 44px; }
  .pager .pages a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}


/* === TOP BAR (Currency, Social Icons, Sign In) === */
.panel.wrapper {
  background: rgba(27,42,74,0.95) !important;
  border-bottom: 1px solid rgba(201,164,74,0.2);
}
.panel.header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--white);
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
}

/* Social icons in top bar */
.social-icons-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  margin-right: auto;
  padding: 0;
}
.social-icons-list li {
  margin: 0;
}
.social-icons-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--warm-gold) !important;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-icons-list a:hover {
  background: var(--warm-gold);
  color: var(--navy) !important;
  transform: translateY(-1px);
}

/* Currency switcher */
.switcher-currency {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}
.switcher-currency .switcher-trigger strong {
  color: var(--warm-gold);
  font-weight: 600;
}
.switcher-currency .switcher-dropdown {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-top: 2px solid var(--warm-gold);
  min-width: 100px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.switcher-currency .switcher-dropdown li {
  padding: 6px 12px;
}
.switcher-currency .switcher-dropdown a {
  color: var(--charcoal);
  font-size: 1.2rem;
}
.switcher-currency .switcher-dropdown a:hover {
  color: var(--burgundy);
  background: var(--cream);
}

/* Header links (Sign In) in top bar */
.panel.header .header.links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.panel.header .header.links li {
  margin: 0;
}
.panel.header .header.links a {
  color: rgba(255,255,255,0.85) !important;
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 4px 8px;
  transition: color 0.2s;
}
.panel.header .header.links a:hover {
  color: var(--warm-gold) !important;
}

/* === GOLD ACCENT ENHANCEMENTS === */

/* Page header bottom border - gold accent */
.page-header {
  border-bottom: 3px solid var(--warm-gold) !important;
}

/* Make hero section heading use gold accent */
.home-hero-content h1 {
  color: var(--white) !important;
}
.home-hero-content .hero-subtitle {
  color: rgba(255,255,255,0.85) !important;
}

/* Gold accent on section titles */
.section-title h2 {
  font-family: Playfair Display, Georgia, serif;
  color: var(--navy) !important;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: ;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--warm-gold);
  margin: 8px auto 0;
}

/* Best picks table - gold accent on header */
.picks-table thead th {
  background: var(--navy);
  color: var(--warm-gold);
  font-family: Inter, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 12px;
  border: none;
}
.picks-table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--light-grey);
  font-family: Inter, sans-serif;
  color: var(--charcoal);
}
.picks-table tbody tr:hover {
  background: var(--cream);
}
.action-invest {
  background: var(--burgundy);
  color: var(--white) !important;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.2s;
}
.action-invest:hover {
  background: #5c252c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(114,47,55,0.3);
}

/* View All link */
.view-all {
  text-align: center;
  margin-top: 24px;
}
.view-all a {
  display: inline-block;
  color: var(--burgundy);
  font-family: Inter, sans-serif;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--burgundy);
  padding: 10px 28px;
  border-radius: 4px;
  transition: all 0.2s;
}
.view-all a:hover {
  background: var(--burgundy);
  color: var(--white) !important;
}

/* Dual CTA section */
.home-dual-cta {
  background: var(--cream);
  padding: 60px 20px;
}
.home-dual-cta .dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.home-dual-cta .cta-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-top: 4px solid var(--warm-gold);
  transition: transform 0.3s, box-shadow 0.3s;
}
.home-dual-cta .cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.home-dual-cta .cta-card .cta-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}
.home-dual-cta .cta-card h3 {
  font-family: Playfair Display, Georgia, serif;
  font-size: 2rem;
  color: var(--navy);
  margin: 0 0 12px;
}
.home-dual-cta .cta-card p {
  color: var(--soft-grey);
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0 0 20px;
}
.home-dual-cta .cta-card .cta-button {
  display: inline-block;
  background: var(--burgundy);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.home-dual-cta .cta-card .cta-button:hover {
  background: #5c252c;
  transform: translateY(-2px);
}

/* Base body improvements */
body {
  font-family: Inter, sans-serif;
  color: var(--charcoal);
  background: var(--white);
}
h1, h2, h3, h4, h5, h6 {
  font-family: Playfair Display, Georgia, serif;
}
a {
  color: var(--burgundy);
  transition: color 0.2s;
}
a:hover {
  color: #5c252c;
}
/* ============================================
   ACCOUNT NAVIGATION - Redesigned tabs
   ============================================ */

.block-collapsible-nav .account-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.block-collapsible-nav .account-nav__item--primary .account-nav__link {
    display: block;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #1B2A4A !important;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    border-radius: 0 4px 4px 0;
    margin: 2px 0;
}

.block-collapsible-nav .account-nav__item--primary.current .account-nav__link,
.block-collapsible-nav .account-nav__item--primary .account-nav__link:hover {
    color: #722F37 !important;
    border-left-color: #722F37;
    background: rgba(114,47,55,0.06);
}

/* Dropdown toggles */
.block-collapsible-nav .account-nav__link--toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #8A8A8A !important;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}
.block-collapsible-nav .account-nav__link--toggle:hover {
    color: #1B2A4A !important;
}
.block-collapsible-nav .account-nav__arrow {
    font-size: 1rem;
    transition: transform 0.2s;
    margin-left: auto;
}
.block-collapsible-nav .account-nav__item.open .account-nav__arrow {
    transform: rotate(180deg);
}
.block-collapsible-nav .account-nav__icon {
    font-size: 1.6rem;
    line-height: 1;
}

/* Sub-navigation */
.block-collapsible-nav .account-nav__subnav {
    list-style: none;
    margin: 0;
    padding: 0 0 4px 20px;
    display: none;
}
.block-collapsible-nav .account-nav__item.open .account-nav__subnav {
    display: block;
}

.block-collapsible-nav .account-nav__subitem .account-nav__link {
    display: block;
    padding: 6px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #2D2D2D !important;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.15s;
}
.block-collapsible-nav .account-nav__subitem .account-nav__link:hover {
    color: #722F37 !important;
    background: rgba(114,47,55,0.05);
}
.block-collapsible-nav .account-nav__subitem.current .account-nav__link {
    color: #722F37 !important;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .block-collapsible-nav .account-nav__item--primary .account-nav__link,
    .block-collapsible-nav .account-nav__link--toggle {
        padding: 12px 16px;
        font-size: 1.5rem;
        min-height: 44px;
    }
    .block-collapsible-nav .account-nav__subitem .account-nav__link {
        padding: 10px 12px;
        min-height: 44px;
        font-size: 1.4rem;
    }
}

/* Account Settings merged page styling */
.account-settings-layout {
    max-width: 800px;
    margin: 0 auto;
}
.account-settings-section {
    margin-bottom: 32px;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid #E8E4DF;
    border-radius: 8px;
}
.account-settings-section h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: #1B2A4A;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #C9A44A;
}
.account-settings-section .field {
    margin-bottom: 16px;
}
.account-settings-section .field label {
    display: block;
    font-weight: 600;
    color: #1B2A4A;
    margin-bottom: 4px;
}
.account-settings-section .field input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #E8E4DF;
    border-radius: 4px;
    font-size: 1.4rem;
}
.account-settings-section .actions-toolbar {
    margin-top: 16px;
}
.account-settings-section button.primary {
    background: #722F37;
    color: #FFFFFF;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.account-settings-section button.primary:hover {
    background: #5c252c;
}

/* Newsletter toggle */
.account-settings-section .newsletter-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}
.account-settings-section .newsletter-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #722F37;
}
.account-settings-section .newsletter-toggle label {
    font-size: 1.4rem;
    cursor: pointer;
}

/* Customer welcome dropdown - fix white-on-white text */
.customer-welcome .customer-menu {
  background: #FFFFFF !important;
  border: 1px solid #E8E4DF !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
  min-width: 180px !important;
}
.customer-welcome .customer-menu .header.links a {
  color: #2D2D2D !important;
  font-family: "Inter", sans-serif !important;
  font-size: 1.3rem !important;
  padding: 10px 16px !important;
  display: block !important;
  text-decoration: none !important;
  transition: background 0.2s !important;
}
.customer-welcome .customer-menu .header.links a:hover {
  background: rgba(114,47,55,0.06) !important;
  color: #722F37 !important;
}
.customer-welcome .customer-menu .header.links li {
  margin: 0 !important;
}
.customer-welcome .customer-menu ul {
  padding: 4px 0 !important;
}

/* Customer dropdown menu - fix white text on white background */
.customer-menu ul {
  background: #FFFFFF !important;
  border: 1px solid #E8E4DF !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
  padding: 4px 0 !important;
}
.customer-menu ul li {
  margin: 0 !important;
}
.customer-menu ul li a {
  color: #2D2D2D !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.3rem !important;
  padding: 10px 16px !important;
  display: block !important;
  text-decoration: none !important;
  background: transparent !important;
}
.customer-menu ul li a:hover {
  background: rgba(114,47,55,0.06) !important;
  color: #722F37 !important;
}

/* Switcher dropdown fix */
.switcher-currency .dropdown a {
  color: #2D2D2D !important;
}