/* Phase 4.3 — light-only mode + logo-driven palette lock */
:root{
  color-scheme: light;
  --brand:#082e47;
  --brand-dark:#03243d;
  --logo-red:#c5221f;
  --logo-green:#356429;
  --logo-orange:#d87109;
  --logo-cream:#fff5e8;
  --surface:#fffaf3;
  --soft:#fff1df;
  --line:#e8d9c7;
  --ink:#082e47;
  --muted:#627078;
  --accent:#f4a61d;
  --danger:#b11f0f;
  --shadow:0 18px 45px rgba(8,46,71,.11);
}
html,body{color-scheme:light;background:var(--surface);}
.announcement{
  background:linear-gradient(100deg,#062b44 0%,#0a3a57 58%,#c5221f 100%);
  color:#fff8ef;
}
.announcement a{color:#fff8ef;text-decoration-color:rgba(255,248,239,.56);}
.site-header{background:rgba(255,250,243,.97);}
.site-nav{background:#fffdf9;}
.nav-row>a.active{
  background:#fff3e5;
  color:var(--logo-red);
  box-shadow:inset 0 0 0 1px rgba(197,34,31,.12);
}
.language-switcher a.active{
  background:var(--brand);
  color:#fff;
}
.cart-button,
.track-order-button,
.button-primary{
  background:var(--brand);
}
.cart-button:hover,
.track-order-button:hover,
.button-primary:hover{
  background:var(--logo-red);
}
.button-outline:hover,
.button-ghost:hover{
  color:var(--logo-red);
  border-color:#e0b078;
  background:#fff2e2;
}
.price,
.detail-price,
.order-total,
.summary-total,
.product-price{
  color:var(--brand);
}
.badge,
.pill,
.status-badge{
  border-color:#eadac6;
  background:#fff7eb;
}
.hero{
  background:linear-gradient(145deg,#fff0dc 0%,#fffaf3 52%,#f6e0ba 100%);
}
.hero-card-main{
  background:linear-gradient(145deg,#082e47 0%,#134b61 56%,#c5221f 135%);
}
.footer,
.site-footer{
  background:linear-gradient(180deg,#07263a 0%,#082e47 100%);
}


/* Phase 4.4 — header cart cleanup */
.cart-button.utility-link{
  background:transparent;
  box-shadow:none;
  padding:0;
  border:none;
  color:var(--brand);
}
.cart-button.utility-link:hover{
  background:transparent;
  color:var(--logo-red);
}
.cart-button .utility-label{
  display:inline;
  color:inherit;
  font-weight:760;
}
.cart-button .utility-label,
.cart-button .header-icon{
  position:relative;
  z-index:1;
}
.cart-button span:not([data-cart-count]){
  display:inline;
  min-width:auto;
  height:auto;
  padding:0;
  border-radius:0;
  background:transparent;
  color:inherit;
  font-size:inherit;
}
.cart-button span[data-cart-count]{
  display:grid;
  place-items:center;
  min-width:22px;
  height:22px;
  padding:0 5px;
  border-radius:999px;
  background:var(--logo-red);
  color:#fff;
}
@media(max-width:760px){
  .cart-button.utility-link{
    width:auto;
    min-width:auto;
    height:auto;
    padding:0;
  }
  .cart-button .utility-label{
    display:none;
  }
}


/* Phase 4.5 compatibility reinforcement */
.cart-button.utility-link{display:inline-flex !important;align-items:center;gap:8px;}
@media(max-width:760px){.cart-button.utility-link{display:inline-flex !important;}}
