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

:root {
  --deep: #0a1628;
  --ocean: #0d2744;
  --teal: #0e7c6b;
  --teal-light: #14a68e;
  --gold: #c8a96e;
  --gold-light: #e8c98a;
  --cream: #f8f4ee;
  --white: #ffffff;
  --text-muted: #8ca0b8;
  --border: rgba(200,169,110,0.2);
}

html, body {
  margin: 0; padding: 0;
  width: 100%; height: 100%;
  overflow-x: hidden;
  position: relative;
  background: var(--deep);
  color: var(--white);
  scroll-behavior: smooth;
}
body {
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5vw;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
  box-sizing: border-box;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.nav-logo span { color: var(--white); font-weight: 400; }
.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a {
  color: var(--text-muted); font-size: 0.875rem; font-weight: 400;
  text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold); font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.6rem 1.4rem; cursor: pointer;
  transition: all 0.25s; font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}
.nav-cta:hover { background: var(--gold); color: var(--deep); }

.nav-actions { display: flex; align-items: center; gap: 1.2rem; }
.mobile-toggle {
  display: none;
  background: none; border: none;
  width: 30px; height: 20px;
  position: relative; cursor: pointer;
  z-index: 101;
}
.mobile-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--gold); position: absolute;
  transition: 0.3s;
}
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle span:nth-child(3) { bottom: 0; }

.mobile-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5vw;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(14,124,107,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 50% 80% at 30% 80%, rgba(200,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px),
                    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px);
  pointer-events: none;
}
.hero-text { position: relative; z-index: 2; padding-right: 4rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 1.6rem;
}
.hero-title em { font-style: italic; color: var(--teal-light); }
.hero-title .gold { color: var(--gold); }
.hero-desc {
  font-size: 1.05rem; color: #9ab0c8;
  line-height: 1.75; max-width: 440px; margin-bottom: 2.6rem;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; align-items: center; }
.btn-primary {
  background: var(--gold); color: var(--deep);
  border: none; padding: 0.95rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.95rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--gold);
}
.hero-stat-label {
  font-size: 0.75rem; color: var(--text-muted);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.2rem;
}

.hero-visual { position: relative; z-index: 2; }
.hero-img-stack { position: relative; height: 560px; }
.hero-img-main {
  width: 80%; height: 480px; object-fit: cover;
  position: absolute; top: 0; right: 0;
  border: 1px solid var(--border);
  filter: brightness(0.9) contrast(1.05);
}
.hero-img-accent {
  width: 46%; height: 260px; object-fit: cover;
  position: absolute; bottom: 0; left: 0;
  border: 1px solid var(--border);
  filter: brightness(0.85) contrast(1.1);
}
.hero-img-badge {
  position: absolute; bottom: 80px; right: 0;
  background: rgba(10,22,40,0.9);
  border: 1px solid var(--border);
  padding: 1rem 1.4rem;
  backdrop-filter: blur(10px);
}
.badge-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.badge-val { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); margin-top: 0.2rem; }

/* TICKER */
.ticker-wrap {
  background: var(--teal); padding: 0.9rem 0;
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ticker-inner {
  display: inline-block;
  animation: ticker 22s linear infinite;
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); font-weight: 400;
}
.ticker-sep { margin: 0 2rem; color: var(--gold-light); opacity: 0.7; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SECTION SHARED */
section { padding: 6rem 5vw; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--teal-light); }
.section-sub { color: #8ca0b8; font-weight: 300; line-height: 1.7; max-width: 520px; }

/* FEATURES */
.features { background: var(--ocean); }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 4rem;
  border: 1px solid var(--border);
}
.feature-item {
  padding: 2.4rem 2rem;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(14,124,107,0.06); }
.feature-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.2rem;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 0.7rem;
}
.feature-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* CATEGORIES */
.categories { background: var(--deep); }
.cat-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.cat-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 1.2rem; }
.cat-card {
  position: relative; overflow: hidden; cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.cat-card:hover { border-color: var(--gold); }
.cat-card:hover .cat-img { transform: scale(1.04); }
.cat-card:hover .cat-arrow { transform: translateX(4px); }
.cat-img { width: 100%; height: 340px; object-fit: cover; display: block; transition: transform 0.55s ease; filter: brightness(0.7); }
.cat-card.tall .cat-img { height: 420px; }
.cat-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.8rem;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, transparent 100%);
}
.cat-badge {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 0.5rem;
}
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem;
}
.cat-count { font-size: 0.8rem; color: var(--text-muted); }
.cat-arrow {
  position: absolute; top: 1.4rem; right: 1.4rem;
  width: 32px; height: 32px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--gold);
  transition: transform 0.25s;
}

/* PRODUCTS */
.products { background: var(--ocean); }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.product-tabs { display: flex; gap: 0; margin-bottom: 3rem; border-bottom: 1px solid var(--border); }
.product-tab {
  padding: 0.75rem 1.6rem; font-size: 0.82rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  border-bottom: 2px solid transparent;
  transition: all 0.2s; margin-bottom: -1px;
}
.product-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.product-tab:hover:not(.active) { color: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.product-card {
  background: rgba(10,22,40,0.6);
  border: 1px solid var(--border);
  overflow: hidden; position: relative;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.product-card:hover { border-color: rgba(200,169,110,0.5); transform: translateY(-3px); }
.product-card:hover .product-img { transform: scale(1.05); }
.product-img-wrap { overflow: hidden; height: 200px; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.8); display: block; }
.product-body { padding: 1.2rem; }
.product-cat { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 0.4rem; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 0.7rem; }
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-cta {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 0.4rem;
}
.product-cta:hover { color: var(--gold-light); }
.product-tag {
  font-size: 0.65rem; padding: 0.25rem 0.6rem;
  border: 1px solid var(--teal); color: var(--teal-light);
  letter-spacing: 0.06em;
}

/* ABOUT */
.about { background: var(--deep); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; height: 520px; object-fit: cover;
  border: 1px solid var(--border);
  filter: brightness(0.85) contrast(1.05);
  display: block;
}
.about-accent-box {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--ocean); border: 1px solid var(--border);
  padding: 1.8rem; width: 200px;
}
.about-accent-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); }
.about-accent-text { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; letter-spacing: 0.05em; }
.about-quote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.2rem; line-height: 1.6; color: #cdd8e5;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem; margin: 2rem 0;
}
.about-text { color: #8ca0b8; font-weight: 300; line-height: 1.8; margin-bottom: 1.2rem; }

/* FISH VARIETIES */
.fish-varieties { background: var(--ocean); }
.fish-scroll { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 1rem; }
.fish-scroll::-webkit-scrollbar { height: 1px; }
.fish-scroll::-webkit-scrollbar-thumb { background: var(--border); }
.fish-item {
  flex: 0 0 180px; text-align: center;
  border: 1px solid var(--border); padding: 1.4rem 1rem;
  transition: border-color 0.3s; cursor: pointer;
}
.fish-item:hover { border-color: var(--gold); }
.fish-emoji { font-size: 2.2rem; display: block; margin-bottom: 0.7rem; }
.fish-name { font-size: 0.82rem; font-weight: 500; margin-bottom: 0.2rem; }
.fish-sci { font-size: 0.68rem; color: var(--text-muted); font-style: italic; }

/* SHIPPING */
.shipping { background: var(--teal); }
.shipping-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.shipping .section-label::before { background: var(--gold); }
.shipping .section-title { color: var(--white); }
.shipping-points { list-style: none; margin-top: 2rem; }
.shipping-points li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.shipping-points li:last-child { border-bottom: none; }
.ship-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.ship-title { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.2rem; }
.ship-desc { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.shipping-map-box {
  background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.15);
  padding: 2.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.globe-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.shipping-map-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 0.6rem; }
.shipping-map-desc { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.6; }
.shipping-countries {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.5rem; justify-content: center;
}
.country-tag {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 0.25rem 0.7rem; font-size: 0.7rem; color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--ocean) 0%, #0a2535 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 5vw;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(14,124,107,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  max-width: 640px; margin: 0 auto 1rem;
  line-height: 1.2;
}
.cta-banner-title em { font-style: italic; color: var(--gold); }
.cta-banner-desc { color: var(--text-muted); max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; }

/* FOOTER */
footer { background: #060f1c; padding: 4rem 5vw 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--gold); margin-bottom: 0.8rem;
}
.footer-brand-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-col-title { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: #9ab0c8;
  margin-bottom: 0.4rem;
}
.footer-design {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.partner-logo {
  height: 45px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.partner-logo:hover {
  opacity: 1;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.5s; }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-visual { display: none; }
  .hero-text { padding-right: 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .shipping-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 1rem 4vw; }
  .nav-logo img { height: 40px !important; }
  .nav-actions { gap: 0.8rem; }
  .nav-cart { font-size: 0.8rem; padding: 0.5rem 0.8rem; }
  
  .mobile-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
    background: var(--ocean); flex-direction: column;
    padding: 6rem 5vw; gap: 2rem;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 100;
  }
  .nav-links.active { right: 0; }
  .nav-cta { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .cat-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  
  /* TAB FIX */
  .product-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .product-tabs::-webkit-scrollbar { display: none; }
  .product-tab { flex: 0 0 auto; white-space: nowrap; }

  .hero { text-align: center; }
  .hero-text { padding-top: 2rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-btns { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
}

/* PAGE LAYOUTS */
.page-hero {
  padding: 9rem 5vw 4rem;
  background: linear-gradient(180deg, rgba(10,22,40,1) 0%, rgba(13,39,68,1) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}
.page-hero p {
  color: #9ab0c8;
  max-width: 760px;
  line-height: 1.8;
}

.content-wrap {
  padding: 4rem 5vw 6rem;
  background: var(--deep);
  overflow-x: hidden;
  max-width: 100%;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-card {
  border: 1px solid var(--border);
  background: rgba(13,39,68,0.45);
  padding: 2rem;
}
.info-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.7rem;
}
.info-card p,
.info-card li {
  color: #9ab0c8;
  line-height: 1.7;
}

.timeline {
  border-left: 1px solid var(--border);
  margin-top: 1.6rem;
  padding-left: 1.4rem;
}
.timeline-item {
  margin-bottom: 1.5rem;
}
.timeline-year {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
}
.filter-panel {
  border: 1px solid var(--border);
  padding: 1.4rem;
  background: rgba(13,39,68,0.45);
  height: fit-content;
}
.filter-title {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}
.filter-chip {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 0.45rem 0.75rem;
  margin: 0.2rem 0.2rem 0 0;
  font-size: 0.75rem;
  color: #9ab0c8;
}
.product-price {
  color: var(--gold-light);
  font-size: 0.85rem;
}
.cart-btn {
  margin-top: 0.8rem;
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}
.cart-btn:hover {
  background: var(--gold);
  color: var(--deep);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
}
.product-detail-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.detail-meta {
  color: #9ab0c8;
  margin: 1rem 0 1.2rem;
  line-height: 1.8;
}
.detail-list {
  list-style: none;
  margin-top: 1rem;
}
.detail-list li {
  border-top: 1px solid var(--border);
  padding: 0.8rem 0;
  color: #9ab0c8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border: 1px solid var(--border);
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.gallery-caption {
  padding: 0.9rem;
  font-size: 0.82rem;
  color: #9ab0c8;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.blog-card {
  border: 1px solid var(--border);
  background: rgba(13,39,68,0.45);
  overflow: hidden;
}
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-body {
  padding: 1.2rem;
}
.blog-date {
  color: var(--teal-light);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}
.blog-excerpt {
  color: #9ab0c8;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.article-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.article-wrap h2 {
  font-family: 'Playfair Display', serif;
  margin: 2rem 0 0.8rem;
}
.article-wrap p {
  color: #9ab0c8;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-form {
  border: 1px solid var(--border);
  padding: 1.4rem;
  background: rgba(13,39,68,0.45);
}
.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
  color: #9ab0c8;
}
.field input,
.field textarea {
  width: 100%;
  background: rgba(0,0,0,0.18);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.75rem;
  font-family: inherit;
}

.cart-page {
  max-width: 1000px;
}
.cart-header {
  display: grid;
  grid-template-columns: 90px 1fr 100px 150px 80px;
  gap: 0.8rem;
  border: 1px solid var(--border);
  padding: 0.8rem;
  color: #9ab0c8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr 100px 150px 80px;
  gap: 0.8rem;
  align-items: center;
  border: 1px solid var(--border);
  border-top: none;
  padding: 0.8rem;
}
.cart-item-img {
  width: 100%;
  height: 68px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.cart-item-name {
  font-size: 0.92rem;
}
.cart-item-meta {
  color: #9ab0c8;
  font-size: 0.78rem;
}
.cart-item-price {
  color: var(--gold-light);
  font-size: 0.86rem;
}
.cart-item-qty {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}
.qty-btn,
.cart-remove {
  background: transparent;
  border: 1px solid var(--border);
  color: #9ab0c8;
  padding: 0.3rem 0.55rem;
  cursor: pointer;
}
.cart-remove:hover,
.qty-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cart-summary {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  padding: 1rem;
}
.cart-empty {
  border: 1px solid var(--border);
  color: #9ab0c8;
  padding: 1rem;
}

.nav-cart {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.45rem 0.8rem;
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .products-layout,
  .product-detail-grid,
  .blog-grid,
  .contact-grid,
  .gallery-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 2rem 5vw;
  }
  .partner-logo {
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  .cart-header {
    display: none;
  }
  .cart-item {
    grid-template-columns: 1fr;
  }
}
