/* =====================================================================
   Fish & Smoke | Senior Web Design Stylesheet
   Modern, High-Converting Gastro-Store Design
   ===================================================================== */

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Colors */
  --bg-body: #0a0c10;
  --bg-header: rgba(13, 16, 23, 0.95);
  --bg-surface: #10141d;
  --bg-card: #151924;
  --bg-card-hover: #1b2130;
  --bg-input: #0a0c12;

  --gold-primary: #d4af37;
  --gold-hover: #e5c158;
  --gold-light: #fef08a;
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.32);
  --gold-glow: rgba(212, 175, 55, 0.18);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-hairline: rgba(255, 255, 255, 0.08);
  --border-card: #1e2433;

  --success: #22c55e;
  --success-bg: rgba(34, 197, 94, 0.12);
  --success-border: rgba(34, 197, 94, 0.35);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.22);

  --transition-fast: all 0.18s ease;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badgePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); background: #fef08a; }
  100% { transform: scale(1); }
}

@keyframes pulseGreen {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.icon-svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gold-text {
  color: var(--gold-primary);
}

.green-text {
  color: #4ade80;
  font-weight: 700;
}

.text-center {
  text-align: center;
}

/* =====================================================================
   HEADER
   ===================================================================== */
.header {
  background: var(--bg-header);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-hairline);
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 12px 0;
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.brand-link:hover {
  transform: translateY(-1px);
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
  object-fit: cover;
  background: #000;
  flex-shrink: 0;
  transition: var(--transition);
}

.brand-link:hover .brand-logo {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-glow);
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.brand-city {
  font-size: 0.72rem;
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-item {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.2s ease;
  border-radius: var(--radius-full);
}

.nav-item:hover {
  color: #fff;
}

.nav-item:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-hairline);
}

.header-phone:hover {
  color: var(--gold-primary);
  border-color: var(--gold-border);
  background: var(--gold-subtle);
}

.header-phone .icon-svg {
  color: var(--gold-primary);
  width: 15px;
  height: 15px;
}

.cart-btn {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cart-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-hover);
  box-shadow: 0 4px 15px var(--gold-glow);
  transform: translateY(-1px);
}

.cart-btn:active {
  transform: scale(0.96);
}

.cart-btn .icon-svg {
  color: var(--gold-primary);
}

.cart-badge {
  background: var(--gold-primary);
  color: #080a0e;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: var(--radius-full);
  min-width: 18px;
  text-align: center;
  transition: var(--transition-fast);
}

.cart-badge.bump {
  animation: badgePulse 0.4s ease;
}

/* =====================================================================
   HERO SECTION
   ===================================================================== */
.hero-section {
  padding: 55px 0 60px;
  background: linear-gradient(180deg, #11141e 0%, var(--bg-body) 100%);
  border-bottom: 1px solid var(--border-hairline);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero-left {
  animation: fadeInUp 0.5s ease both;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.online-indicator {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseGreen 2s infinite;
}

.hero-title {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.22;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold-primary);
  color: #090b10;
  border: none;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--gold-glow);
}

.btn-primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-secondary {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  color: var(--text-main);
  text-decoration: none;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-border);
  color: #fff;
  transform: translateY(-1px);
}

.hero-bullets {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: #cbd5e1;
  font-weight: 600;
}

.bullet-check {
  width: 15px;
  height: 15px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* Hero Right Poster Card */
.hero-right {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.6s ease both 0.1s;
}

.hero-poster-card {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  background: #090b10;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 25px var(--gold-glow);
  transition: var(--transition);
}

.hero-poster-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-hover);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(212, 175, 55, 0.28);
}

.poster-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold-primary);
  color: #080a0e;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-poster-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #06070a;
  transition: transform 0.4s ease;
}

.hero-poster-card:hover .hero-poster-img {
  transform: scale(1.03);
}

.poster-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 11, 16, 0.95) 40%, #090b10 100%);
  padding: 16px 20px;
  z-index: 2;
}

.caption-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.caption-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.caption-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.caption-opt {
  font-size: 0.76rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

/* =====================================================================
   CATALOG SECTION
   ===================================================================== */
.catalog-section {
  padding: 65px 0 75px;
}

.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
  flex-wrap: wrap;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.4px;
}

.section-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-hairline);
  overflow-x: auto;
}

.filter-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.filter-btn:hover {
  color: #fff;
}

.filter-btn.active {
  background: var(--gold-primary);
  color: #080a0e;
  box-shadow: 0 2px 8px var(--gold-glow);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md), 0 0 20px var(--gold-glow);
  background: var(--bg-card-hover);
}

.card-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #080a0f;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-hairline);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .card-img {
  transform: scale(1.04);
}

.card-badge-opt {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(16, 20, 28, 0.9);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-header-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.card-weight-tag {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  padding: 2px 7px;
  border-radius: var(--radius-xs);
  font-weight: 700;
  white-space: nowrap;
}

.card-desc-clean {
  font-size: 0.81rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.card-desc-clean ul {
  list-style: none;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.card-desc-clean li {
  position: relative;
  padding-left: 14px;
  color: #cbd5e1;
}

.card-desc-clean li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-hairline);
}

.card-price-box {
  display: flex;
  flex-direction: column;
}

.card-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.1;
}

.card-price-sub {
  font-size: 0.7rem;
  color: var(--text-dim);
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter-wrap {
  display: inline-flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-sm);
  padding: 2px;
}

.counter-btn {
  background: none;
  border: none;
  color: #fff;
  width: 26px;
  height: 26px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  transition: var(--transition-fast);
}

.counter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-primary);
}

.counter-btn:active {
  transform: scale(0.9);
}

.counter-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  padding: 0 6px;
  min-width: 32px;
  text-align: center;
}

.btn-buy {
  background: var(--gold-primary);
  color: #080a0e;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-buy:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--gold-glow);
}

.btn-buy:active {
  transform: scale(0.96);
}

/* =====================================================================
   WHOLESALE SECTION
   ===================================================================== */
.wholesale-section {
  padding: 30px 0 60px;
}

.wholesale-box {
  background: linear-gradient(180deg, #131722 0%, var(--bg-card) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-md), 0 0 30px rgba(212, 175, 55, 0.08);
}

.wholesale-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.wholesale-tag {
  color: var(--gold-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.wholesale-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.wholesale-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.6;
}

.free-shipping-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  color: #4ade80;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  font-weight: 700;
  flex-shrink: 0;
}

.free-shipping-badge .icon-svg {
  color: #4ade80;
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-hairline);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.price-table th {
  background: #0d1017;
  color: var(--text-dim);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-hairline);
}

.price-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-hairline);
  color: #e2e8f0;
}

.price-table tbody tr {
  transition: var(--transition-fast);
}

.price-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.save-tag {
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  color: #4ade80;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
}

.wholesale-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-hairline);
  flex-wrap: wrap;
}

.wb-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.wb-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.phone-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.phone-link:hover {
  color: var(--gold-primary);
}

/* =====================================================================
   QUALITY / ABOUT SECTION (NO GIANT LOGO STRETCH!)
   ===================================================================== */
.quality-section {
  padding: 65px 0 75px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.quality-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-hairline);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--gold-border);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.feature-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon-box svg {
  width: 18px;
  height: 18px;
}

.feature-text h3 {
  font-size: 0.94rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Quality Showcase Poster Card (CONSTRAINED TO 380px!) */
.quality-showcase {
  display: flex;
  justify-content: center;
}

.quality-poster-card {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  background: #090b10;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 25px var(--gold-glow);
  transition: var(--transition);
}

.quality-poster-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-hover);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(212, 175, 55, 0.28);
}

.quality-poster-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #06070a;
  transition: transform 0.4s ease;
}

.quality-poster-card:hover .quality-poster-img {
  transform: scale(1.03);
}

/* =====================================================================
   DELIVERY SECTION
   ===================================================================== */
.delivery-section {
  padding: 65px 0 85px;
}

.delivery-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 32px auto 0;
}

.delivery-box {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: var(--transition);
}

.delivery-box:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.box-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.box-icon svg {
  width: 22px;
  height: 22px;
}

.delivery-box h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.del-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.del-items li {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
  padding-left: 16px;
}

.del-items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: 800;
}

/* =====================================================================
   FLOATING CART BAR
   ===================================================================== */
.floating-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 150;
  width: calc(100% - 32px);
  max-width: 440px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.floating-bar.active {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  cursor: pointer;
}

.floating-bar-inner {
  cursor: pointer;
  background: rgba(16, 20, 29, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  padding: 8px 12px 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 20px var(--gold-glow);
}

.floating-bar-text {
  display: flex;
  flex-direction: column;
}

.fb-weight {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.fb-sum {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
  border-radius: var(--radius-full);
}

/* =====================================================================
   CART DRAWER MODAL
   ===================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 7, 10, 0.75);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  width: 100%;
  max-width: 460px;
  height: 100%;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-hairline);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.7);
}

.modal-overlay.active .cart-drawer {
  transform: translateX(0);
}

.drawer-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-header h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  border-radius: var(--radius-xs);
  transition: var(--transition-fast);
}

.close-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Wholesale Progress in Drawer */
.wholesale-progress-box {
  padding: 14px 20px;
  background: rgba(212, 175, 55, 0.06);
  border-bottom: 1px solid var(--gold-border);
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 6px;
}

#progress-text {
  color: var(--text-main);
}

#progress-percent {
  color: var(--gold-primary);
}

.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), #4ade80);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.empty-state {
  text-align: center;
  padding: 40px 10px;
  color: var(--text-dim);
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-hairline);
}

.cart-item-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-xs);
  object-fit: cover;
  background: #000;
  border: 1px solid var(--border-hairline);
  flex-shrink: 0;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 2px;
}

.cart-item-pricing {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.price-tag {
  color: var(--gold-primary);
  font-weight: 700;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-delete {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  border-radius: var(--radius-xs);
  transition: var(--transition-fast);
}

.cart-item-delete:hover {
  color: #ef4444;
}

.opt-congrats-alert {
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  color: #4ade80;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Checkout Form */
.checkout-form {
  border-top: 1px solid var(--border-hairline);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.form-field label {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.input-text {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-hairline);
  color: #fff;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-family: inherit;
  transition: var(--transition-fast);
}

.input-text:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

.drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-hairline);
  background: var(--bg-card);
}

.summary-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.summary-line.total-line {
  border-top: 1px solid var(--border-hairline);
  padding-top: 8px;
  margin-top: 2px;
  color: #fff;
  font-weight: 700;
}

.total-sum {
  font-size: 1.25rem;
  color: var(--gold-primary);
  font-weight: 800;
}

.btn-checkout {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 0.92rem;
}

.btn-checkout:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: rgba(16, 20, 28, 0.95);
  border: 1px solid var(--gold-border);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px var(--gold-glow);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
  z-index: 400;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Success Modal */
.success-modal {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: calc(100% - 40px);
  margin: auto;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 35px var(--gold-glow);
  transform: scale(0.94);
  transition: var(--transition);
}

.modal-overlay.active .success-modal {
  transform: scale(1);
}

.success-icon {
  width: 56px;
  height: 56px;
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  color: #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-icon svg {
  width: 28px;
  height: 28px;
}

.success-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.success-order-num {
  font-size: 0.88rem;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.success-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 22px;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: #08090d;
  border-top: 1px solid var(--border-hairline);
  padding: 45px 0 25px;
  margin-top: auto;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.footer-sub {
  font-size: 0.82rem;
  color: var(--text-dim);
  max-width: 320px;
  margin-bottom: 10px;
}

.footer-tg {
  display: inline-block;
  color: var(--gold-primary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-tg:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.f-contact-item {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
}

.f-contact-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.f-contact-item a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  text-align: center;
  font-size: 0.74rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border-hairline);
  padding-top: 20px;
}

/* =====================================================================
   RESPONSIVE DESIGN (SENIOR-LEVEL BREAKPOINTS)
   ===================================================================== */
/* Laptops / Tablets (769px to 1024px): 
   DO NOT STACK HERO! Keep 2 columns so poster card stays next to text! */
@media (max-width: 1024px) {
  .container {
    padding: 0 16px;
  }
  .hero-container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-poster-card {
    max-width: 330px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quality-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
  }
  .quality-poster-card {
    max-width: 320px;
  }
}

/* Mobile & Small Tablets (<= 768px):
   Clean, ergonomic single-column stacked layout */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .header-phone {
    display: none;
  }
  .hero-section {
    padding: 35px 0 45px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-text {
    margin: 0 auto 22px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-bullets {
    justify-content: center;
  }
  .hero-poster-card {
    max-width: 300px;
  }
  .section-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .filter-tabs {
    width: 100%;
    justify-content: flex-start;
  }
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .wholesale-box {
    padding: 24px 18px;
  }
  .wholesale-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .quality-poster-card {
    max-width: 300px;
  }
  .delivery-cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    flex-direction: column;
  }
}
