/* ===== EZUP Atlantic Design System (Premium) ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --brand-blue: #003B71;
  --brand-blue-light: #0056A8;
  --brand-red: #E31937;
  --brand-red-dark: #b8122a;
  --brand-black: #111111;
  --brand-white: #ffffff;
  --brand-gray: #f4f4f4;
  --brand-gray-medium: #e5e5e5;
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-light: #888888;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.15);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1320px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  background: var(--brand-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--brand-black);
  color: var(--brand-white);
  padding: 10px 0;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.top-bar a { color: var(--brand-white); text-decoration: underline; }

/* ===== HEADER ===== */
.header {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--brand-gray-medium);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 6px; }
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-atlantic {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brand-red);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-sub { font-size: 0.6rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 2.5px; margin-top: 3px; }

/* Nav */
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--brand-blue); }

/* Mega Menu */
.nav-item-dropdown { position: relative; padding: 12px 0; }
.nav-item-dropdown > a { padding: 12px 0; }
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: var(--brand-white);
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
  padding: 32px;
  border-radius: var(--radius-md);
  border-top: 4px solid var(--brand-red);
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 900px;
  pointer-events: none;
}
.nav-item-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Rich Mega Menu Image Row */
.mega-images-row {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--brand-gray-medium);
  padding-bottom: 32px;
}
.mega-image-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.mega-image-card:hover {
  transform: translateY(-5px);
}
.mega-image-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  background: #f4f4f4;
  margin-bottom: 0;
}
.mega-image-title {
  background: #f4f4f4;
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 8px;
  letter-spacing: 0.5px;
}

/* Rich Mega Menu Links Row */
.mega-links-row {
  display: flex;
  gap: 48px;
}
.mega-col { flex: 1; }
.mega-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 16px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--brand-gray-medium);
  padding-bottom: 8px;
}
.mega-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  padding: 6px 0;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}
.mega-col a::after { display: none; }
.mega-col a:hover { color: var(--brand-red); transform: translateX(3px); }

/* Mobile Menu */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--brand-black); transition: var(--transition); }
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--brand-white);
  z-index: 9999;
  padding: 80px 24px 24px;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid var(--brand-gray-medium);
  color: var(--text-primary);
  text-transform: uppercase;
}
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2.5rem;
  color: var(--brand-black);
  line-height: 1;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--brand-gray);
  overflow: hidden;
  padding: 120px 0;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,59,113,0.95) 0%, rgba(0,31,63,0.85) 100%);
  z-index: 1;
}
.hero-img-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.hero-inner {
  position: relative;
  z-index: 2;
  color: var(--brand-white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero h1 span { color: var(--brand-red); }
.hero p {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--brand-red);
  color: var(--brand-white);
  box-shadow: 0 4px 15px rgba(227, 25, 55, 0.3);
}
.btn-primary:hover { 
  background: var(--brand-red-dark); 
  transform: translateY(-3px); 
  box-shadow: 0 8px 25px rgba(227, 25, 55, 0.4); 
}
.btn-secondary {
  background: transparent;
  color: var(--brand-white);
  border: 2px solid var(--brand-white);
}
.btn-secondary:hover { 
  background: var(--brand-white); 
  color: var(--brand-blue); 
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
}
.btn-outline:hover { 
  background: var(--brand-blue); 
  color: var(--brand-white); 
}
.btn-blue { 
  background: var(--brand-blue); 
  color: var(--brand-white); 
}
.btn-blue:hover { 
  background: var(--brand-blue-light); 
  transform: translateY(-3px); 
  box-shadow: 0 8px 25px rgba(0, 59, 113, 0.3);
}

/* ===== TRUST BAR HOMEPAGE ===== */
.home-trust-bar {
  background: var(--brand-white);
  border-bottom: 1px solid var(--brand-gray-medium);
  padding: 24px 0;
}
.home-trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.home-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}
.home-trust-item svg {
  color: var(--brand-red);
}

/* ===== SECTION STYLES ===== */
.section { padding: 100px 0; }
.section-gray { background: var(--brand-gray); }
.section-dark { background: var(--brand-black); color: var(--brand-white); }
.section-blue { background: var(--brand-blue); color: var(--brand-white); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.section-header p { 
  color: var(--text-secondary); 
  font-size: 1.15rem; 
  max-width: 700px; 
  margin: 0 auto; 
}
.section-blue .section-header p { color: rgba(255,255,255,0.8); }

/* ===== CATEGORY GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--brand-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-card:hover img { transform: scale(1.05); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,59,113,0.95) 0%, rgba(0,59,113,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.category-card h3 {
  color: var(--brand-white);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  transform: translateY(10px);
  transition: var(--transition);
}
.category-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.category-card:hover h3 { transform: translateY(0); }
.category-card:hover p { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }

/* ===== PRODUCT CARDS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--brand-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--brand-red);
  color: var(--brand-white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.product-card-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--brand-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}
.product-card-img img { 
  max-height: 100%; 
  object-fit: contain; 
  transition: transform 0.5s ease; 
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-body { 
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-category {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.product-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
  flex: 1;
}
.product-card-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 20px;
}
.product-card-price small { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); }
.product-card-actions { display: flex; gap: 12px; margin-top: auto; }
.product-card-actions .btn { padding: 12px 0; font-size: 0.8rem; flex: 1; justify-content: center; border-radius: var(--radius-md); }

/* ===== FEATURED MODELS ===== */
.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.model-card {
  background: var(--brand-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--brand-gray-medium);
  transition: var(--transition);
  position: relative;
}
.model-card:hover { border-color: transparent; box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.model-card.featured { border-color: var(--brand-red); box-shadow: var(--shadow-md); }
.model-card.featured:hover { box-shadow: var(--shadow-xl); border-color: var(--brand-red); }
.model-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand-red);
  color: var(--brand-white);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  box-shadow: var(--shadow-sm);
}
.model-card-img { height: 160px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.model-card-img img { max-height: 100%; object-fit: contain; }
.model-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.model-card .price-tier { font-size: 1rem; color: var(--brand-red); font-weight: 700; margin-bottom: 20px; letter-spacing: 2px;}
.model-card-specs { text-align: left; margin-bottom: 24px; background: var(--brand-gray); padding: 16px; border-radius: var(--radius-sm); }
.model-card-specs dt { font-size: 0.75rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; margin-top: 12px; font-weight: 600; }
.model-card-specs dt:first-child { margin-top: 0; }
.model-card-specs dd { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-top: 2px; }

/* ===== WHY CHOOSE US ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature-card {
  text-align: center;
  padding: 32px;
  background: var(--brand-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  width: 80px; height: 80px;
  background: var(--brand-gray);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--brand-blue);
}
.feature-card h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.feature-card p { font-size: 0.95rem; color: var(--text-secondary); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  color: var(--brand-white);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 16px; }
.cta-banner p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto;}
.cta-banner .btn-secondary { border-color: var(--brand-white); color: var(--brand-white); }
.cta-banner .btn-secondary:hover { background: var(--brand-white); color: var(--brand-red); }

/* ===== FOOTER ===== */
.footer {
  background: var(--brand-black);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 64px;
}
.footer h4 {
  color: var(--brand-white);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.footer-about p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; }
.footer-links a {
  display: block;
  font-size: 0.95rem;
  padding: 6px 0;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--brand-white); padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.95rem; }
.footer-contact-item svg { color: var(--brand-red); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--brand-gray);
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid var(--brand-gray-medium);
}
.page-hero h1 { font-size: 3rem; font-weight: 900; margin-bottom: 12px; color: var(--brand-blue); letter-spacing: -1px; }
.page-hero p { font-size: 1.15rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero { padding: 100px 0; }
  .hero h1 { font-size: 3.2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding: 80px 0; }
  .hero h1 { font-size: 2.5rem; }
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 2.2rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .models-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .home-trust-inner { flex-direction: column; align-items: flex-start; }
  .page-hero h1 { font-size: 2.2rem; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
}

/* ===== CART SYSTEM (Restored & Cleaned) ===== */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  font-size: 1.2rem;
}
.cart-badge {
  position: absolute;
  top: -2px; right: -6px;
  background: var(--brand-red);
  color: #fff;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 400px; max-width: 90vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  transition: right .35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--brand-gray-medium);
}
.cart-drawer-header h3 { font-size: 1.1rem; font-weight: 700; }
.cart-drawer-close { font-size: 1.8rem; color: #999; padding: 4px; line-height: 1; }
.cart-drawer-close:hover { color: #333; }
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--brand-gray-medium);
  background: var(--brand-gray);
}
.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: .9rem;
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--brand-gray-medium);
}
.cart-item-img {
  width: 70px; height: 70px;
  background: var(--brand-gray);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.cart-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 600; font-size: .85rem; line-height: 1.3; }
.cart-item-variant { font-size: .75rem; color: var(--text-secondary); margin-top: 2px; }
.cart-item-price { font-size: .85rem; font-weight: 700; color: var(--brand-blue); margin-top: 4px; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.qty-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--brand-gray-medium);
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all .2s;
}
.qty-btn:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.cart-item-remove {
  margin-left: auto;
  color: #ccc;
  font-size: .8rem;
  padding: 4px;
  transition: all .2s;
}
.cart-item-remove:hover { color: var(--brand-red); }
.cart-toast {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-blue);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: .85rem;
  z-index: 10000;
  box-shadow: var(--shadow-lg);
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.cart-toast--show { bottom: 32px; }
.add-to-cart-btn {
  background: var(--brand-blue);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.add-to-cart-btn:hover { background: var(--brand-blue-light); transform: translateY(-1px); }

/* ===== GLOBAL FORM STYLES ===== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 4px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--brand-gray-medium);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  background: var(--brand-white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 59, 113, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
  font-weight: 400;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.quote-form .btn-primary,
.quote-form [type="submit"] {
  width: 100%;
  padding: 18px 32px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* ===== CONTACT PAGE GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-card svg,
.contact-info-card .icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 59, 113, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-red);
  font-size: 1.1rem;
}
.contact-info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.contact-info-card p,
.contact-info-card a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-info-card a:hover {
  color: var(--brand-blue);
}

/* ===== ENHANCED PRODUCT CARD HOVER ===== */
.product-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card .product-img {
  overflow: hidden;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-img img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== ENHANCED PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #0056A8 60%, #1a7dd4 100%);
  color: var(--brand-white);
  padding: 80px 0;
  text-align: center;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.page-hero h1 {
  color: var(--brand-white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.page-hero p {
  color: rgba(255,255,255,0.85);
}

/* ===== CATEGORY CARD IMPROVEMENTS ===== */
.category-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

/* ===== ACCESSIBILITY FOCUS STATES ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 2px;
}

/* ===== SMOOTH LOADING SKELETON ===== */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
  border-radius: var(--radius-sm);
}

/* ===== RESPONSIVE: FORMS ===== */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
