/* ============================================================
   TOMBO GLASS — Product Categories
   Swiss Design · Zero external dependencies · 8px grid
   ============================================================ */

@import url('site-nav.css?v=1.0.1');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { background: #FFFFFF; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: #FFFFFF;
  color: #1A1A1A;
  line-height: 1.6;
}

/* --- Utility --- */
.max-width { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 96px 0; }
.bg-light { background: #F8F8F7; }
.bg-dark  { background: #111111; }

/* --- Typography --- */
h1, h2, h3 { letter-spacing: -0.02em; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: #B8944C; margin-bottom: 16px; display: block;
}
.section-heading {
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  font-weight: 300; color: #1A1A1A; line-height: 1.2; margin-bottom: 24px;
}

/* ============================================================
   2. HERO
   ============================================================ */
.hero {
  position: relative;
  background-color: #081221;
  background-image: url('../images/maxresdefault-3.jpg');
  background-size: contain;
  background-position: 80% center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 128px 0 96px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right,
    rgba(8,18,33,0.94) 0%,
    rgba(8,18,33,0.85) 25%,
    rgba(8,18,33,0.35) 55%,
    rgba(8,18,33,0.04) 100%);
}
.hero .max-width {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left; width: 100%; margin: 0 auto; padding: 0 32px;
}
.hero h1 {
  font-size: clamp(2.8rem, 5.8vw, 5rem); font-weight: 300;
  letter-spacing: -0.02em; color: #FFFFFF; line-height: 1.08; margin-bottom: 24px;
  max-width: 580px;
}
.hero .hero-subtitle {
  font-size: 1.125rem; color: rgba(255,255,255,0.78); line-height: 1.7;
  max-width: 620px; margin-bottom: 40px;
}
.hero .hero-cta {
  display: inline-block; font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: #1A1A1A;
  background: #FFFFFF; padding: 14px 40px; text-decoration: none;
  transition: opacity 0.2s;
}
.hero .hero-cta:hover { opacity: 0.85; }

/* ============================================================
   3. PRODUCT CATEGORIES
   ============================================================ */
.product-section { padding: 96px 0 0; }

.category-strip { padding: 88px 0; }
.category-strip.bg-white { background: #FFFFFF; }
.category-strip.bg-light { background: #F8F8F7; }
.category-strip:first-of-type { padding-top: 0; }

.category-header {
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left; margin-bottom: 48px;
}
.product-num {
  font-size: clamp(5rem, 8vw, 8rem); font-weight: 300; color: #EAEAE5;
  line-height: 1; margin-bottom: 8px; letter-spacing: -0.03em;
}
.product-name {
  font-size: clamp(1.8rem, 3vw, 2.2rem); font-weight: 600; color: #1A1A1A;
  letter-spacing: -0.01em; line-height: 1.3;
}

.category-showcase {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 64px;
}
.category-strip.bg-light .showcase-image { order: 2; }
.category-strip.bg-light .showcase-text  { order: 1; }
.showcase-image {
  background: #FAFAF8; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.showcase-image img {
  display: block; max-width: 100%; height: auto;
  max-height: 520px; object-fit: contain;
}
.showcase-text {
  display: flex; flex-direction: column; justify-content: center;
}
.product-desc {
  font-size: 1rem; color: #555555; line-height: 1.8;
  margin-bottom: 28px; max-width: 520px;
}
.product-cta {
  display: inline-block; font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: #B8944C;
  text-decoration: none; transition: opacity 0.2s; align-self: flex-start;
}
.product-cta::after { content: ' →'; }
.product-cta:hover { opacity: 0.7; }

.subproducts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.subproduct-card { background: transparent; display: flex; flex-direction: column; }
.subproduct-thumb {
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.subproduct-thumb img { width: 100%; max-height: 100%; object-fit: contain; }
.subproduct-info { background: #FFFFFF; padding: 6px 5% 8px; text-align: center; }
.subproduct-card h4 {
  font-size: 0.8125rem; font-weight: 500; color: #1A1A1A;
  letter-spacing: -0.01em; margin-bottom: 0;
}

/* ============================================================
   4. WHY CHOOSE US
   ============================================================ */
.why-section { background: #FFFFFF; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px;
  margin-top: 48px;
}
.why-card { background: #F8F8F7; padding: 40px 32px; }
.why-card h3 {
  font-size: 1.0625rem; font-weight: 600; color: #1A1A1A;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.why-card p { font-size: 0.875rem; color: #666666; line-height: 1.7; }

/* ============================================================
   5. CUSTOMIZATION CAPABILITIES
   ============================================================ */
.customize-section { background: #F8F8F7; }
.customize-intro {
  font-size: 1rem; color: #555555; line-height: 1.8;
  max-width: 640px; margin-bottom: 56px;
}
.customize-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px;
  position: relative;
}
.customize-steps::before {
  content: '';
  position: absolute; top: 28px; left: 40px; right: 40px;
  height: 1px; background: #E5E5E0; z-index: 0;
}
.customize-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start;
}
.step-indicator {
  width: 56px; height: 56px; border-radius: 50%;
  background: #FFFFFF; border: 1px solid #E5E5E0;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}
.step-indicator span {
  font-size: 0.8125rem; font-weight: 600; color: #B8944C;
  letter-spacing: 0.04em;
}
.customize-step:hover .step-indicator {
  border-color: #B8944C;
}
.customize-step h3 {
  font-size: 0.9375rem; font-weight: 600; color: #1A1A1A;
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.customize-step p {
  font-size: 0.8125rem; color: #666666; line-height: 1.7;
}

/* ============================================================
   6. FAQ
   ============================================================ */
.faq-section { background: #FFFFFF; }

.faq-list { margin-top: 48px; }
.faq-item { border-top: 1px solid #E5E5E0; }
.faq-item:last-child { border-bottom: 1px solid #E5E5E0; }
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; cursor: pointer; color: #1A1A1A;
}
.faq-toggle h4 {
  font-size: 1rem; font-weight: 600; color: inherit; letter-spacing: -0.01em;
}
.faq-toggle:hover h4 { color: #B8944C; }

.faq-icon {
  flex-shrink: 0; margin-left: 24px; width: 16px; height: 16px;
  position: relative; color: #B8944C;
}
.faq-icon::before,
.faq-icon::after {
  content: ''; position: absolute; background: currentColor;
  border-radius: 1px; transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon::before { width: 16px; height: 2px; top: 7px; left: 0; }
.faq-icon::after  { width: 2px; height: 16px; top: 0; left: 7px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  padding-bottom: 28px;
}
.faq-answer p {
  font-size: 0.9375rem; color: #555555; line-height: 1.7; max-width: 720px;
}

/* ============================================================
   7. INDUSTRIES SERVED
   ============================================================ */
.industries-section { background: #FFFFFF; }
.industries-list { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.industry-tag {
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.03em;
  color: #555555; padding: 10px 24px; border: 1px solid #E5E5E0;
  transition: color 0.2s, border-color 0.2s;
}
.industry-tag:hover { color: #B8944C; border-color: #B8944C; }

/* ============================================================
   7. CERTIFICATIONS
   ============================================================ */
.cert-section { background: #F8F8F7; }
.cert-list { display: flex; flex-wrap: wrap; gap: 48px 64px; margin-top: 32px; }
.cert-item { font-size: 0.9375rem; color: #555555; letter-spacing: 0.02em; }

/* ============================================================
   8. CTA BANNER
   ============================================================ */
.cta-banner { background: #111111; padding: 96px 0; text-align: center; }
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 300;
  color: #FFFFFF; letter-spacing: -0.02em; margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1rem; color: #AAAAAA;
  max-width: 520px; margin: 0 auto 40px; line-height: 1.6;
}
.cta-btn {
  display: inline-block; font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: #FFFFFF;
  background: #B8944C; padding: 14px 48px; text-decoration: none;
  transition: opacity 0.2s;
}
.cta-btn:hover { opacity: 0.85; }

/* ============================================================
   9. FOOTER
   ============================================================ */
.site-footer { background: #111111; padding: 80px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand {
  font-size: 1.125rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: #FFFFFF; margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.8125rem; color: #888888; line-height: 1.7; max-width: 300px;
}
.footer-col h4 {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #FFFFFF; margin-bottom: 24px;
}
.footer-col a {
  display: block; font-size: 0.8125rem; color: #888888;
  text-decoration: none; margin-bottom: 10px; transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 0.7; }
.footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid #333333;
  font-size: 0.75rem; color: #666666; letter-spacing: 0.04em;
}

/* ============================================================
   LIQUOR BOTTLES — Enhanced Category Block
   ============================================================ */
.lq-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.lq-num-title {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.lq-num-title .product-num {
  margin-bottom: 0;
  line-height: 0.85;
  flex-shrink: 0;
}
.lq-title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lq-title-block .section-eyebrow {
  margin-bottom: 0;
}
.lq-spec-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-self: flex-end;
  padding-bottom: 6px;
}
.lq-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B8944C;
  border: 1px solid #D8C89A;
  padding: 5px 14px;
  white-space: nowrap;
}

.lq-showcase {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 32px;
  border: 1px solid #ECEAE4;
}
.lq-image {
  position: relative;
  overflow: hidden;
  background: #F5F3EF;
}
.lq-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.lq-info-panel {
  background: #FFFFFF;
  padding: 40px 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  border-left: 1px solid #ECEAE4;
}
.lq-desc {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.78;
  margin-bottom: 28px;
}
.lq-info-group {
  padding: 16px 0;
  border-top: 1px solid #ECEAE4;
}
.lq-info-group:last-of-type {
  margin-bottom: 28px;
}
.lq-info-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B8944C;
  margin-bottom: 6px;
}
.lq-info-value {
  font-size: 0.8125rem;
  color: #555;
  line-height: 1.7;
}

.lq-subproducts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.lq-sub-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #ECEAE4;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.lq-sub-card:hover {
  border-color: #B8944C;
  background: #FDFCF9;
}
.lq-sub-thumb {
  background: #F5F3EF;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lq-sub-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}
.lq-sub-info {
  padding: 10px 10px 12px;
  text-align: center;
  border-top: 1px solid #ECEAE4;
}
.lq-sub-info h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1A1A1A;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
  line-height: 1.3;
}
.lq-sub-info p {
  font-size: 0.6875rem;
  color: #999;
  line-height: 1.4;
  margin: 0;
}

/* Reverse layout: mini-wrap on right (1.35fr), info panel on left (1fr) */
.lq-showcase--reverse { grid-template-columns: 1fr 1.35fr; }
.lq-showcase--reverse .lq-image,
.lq-showcase--reverse .lq-mini-wrap { order: 2; }
.lq-showcase--reverse .lq-info-panel { order: 1; border-left: none; border-right: 1px solid #ECEAE4; }

/* Wrapper: mini-grid + CTA stacked vertically (left/right column of showcase) */
.lq-mini-wrap {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ECEAE4;
}
.lq-showcase--reverse .lq-mini-wrap {
  border-right: none;
  border-left: 1px solid #ECEAE4;
}
.lq-mini-wrap .product-cta {
  display: block;
  text-align: center;
  margin: auto auto 10px;
  padding: 14px 20px;
  border-top: 1px solid #ECEAE4;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B8944C;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.lq-mini-wrap .product-cta:hover {
  background: #B8944C;
  color: #fff;
}

/* Sub-category mini-grid (replaces single hero image for Liquor Bottles) */
.lq-mini-wrap .lq-mini-grid {
  flex: 1;
  min-height: 0;
}
.lq-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 8px;
  row-gap: 10px;
  align-content: space-between;
  padding: 20px 8px;
}
.lq-mini-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid #ECEAE4;
  background: #fff;
  transition: border-color 0.2s;
}
.lq-mini-item:hover { border-color: #B8944C; }
.lq-mini-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F5F3EF;
}
.lq-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lq-mini-label {
  padding: 5px 6px 6px;
  border-top: 1px solid #ECEAE4;
  text-align: center;
}
.lq-mini-label span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

/* ============================================================
   CATEGORY NEW LAYOUT (lqc-) — text above + left image / right sub-grid
   ============================================================ */

/* Visual block: left image + right 3×2 sub-grid */
.lqc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

/* Left: main image */
.lqc-main-img {
  position: relative;
  overflow: hidden;
  border: 1px solid #ECEAE4;
}
.lqc-main-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Right: 3×2 sub-card grid with gaps */
.lqc-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lqc-sub-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid #ECEAE4;
  transition: border-color 0.2s, background 0.2s;
  background: #FAFAF8;
}
.lqc-sub-item:hover {
  border-color: #B8944C;
  background: #FDFCF9;
}
.lqc-sub-thumb {
  flex: 1;
  overflow: hidden;
  background: #F5F3EF;
}
.lqc-sub-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}
.lqc-sub-label {
  padding: 8px 10px 10px;
  border-top: 1px solid #ECEAE4;
  background: #FFFFFF;
}
.lqc-sub-label h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1A1A1A;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
  line-height: 1.3;
}
.lqc-sub-label p {
  font-size: 0.6875rem;
  color: #999;
  line-height: 1.4;
  margin: 0;
}

/* Text + CTA row below */
.lqc-text-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-top: 20px;
}
.lqc-text-row p {
  flex: 1;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.78;
  margin: 0;
  max-width: 640px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  /* --- Liquor Bottles responsive --- */
  .lq-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .lq-showcase { grid-template-columns: 1fr; }
  .lq-image { aspect-ratio: 16 / 9; }
  .lq-mini-grid { grid-template-columns: repeat(3, 1fr); column-gap: 6px; row-gap: 6px; padding: 6px; }
  .lq-info-panel { border-left: none; border-top: 1px solid #ECEAE4; padding: 32px 28px; }
  .lqc-body { grid-template-columns: 1fr; }
  .lqc-main-img { aspect-ratio: 16 / 7; }
  .lqc-sub-grid { grid-template-columns: repeat(3, 1fr); }
  .lqc-text-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .lq-subproducts { grid-template-columns: repeat(4, 1fr); }

  /* --- Content Layout --- */
  .category-showcase { grid-template-columns: 1fr; gap: 32px; }
  .showcase-image img { max-height: 360px; }
  .subproducts { grid-template-columns: repeat(3, 1fr); }
  .category-strip { padding: 64px 0; }
  .customize-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .customize-steps::before { display: none; }
}

@media (max-width: 768px) {
  .lq-num-title { gap: 12px; }
  .lq-spec-tags { gap: 8px; }
  .lq-subproducts { grid-template-columns: repeat(3, 1fr); }
  .lq-sub-info p { display: none; }

  .max-width { padding: 0 24px; }
  .section-pad { padding: 64px 0; }

  .hero { padding: 88px 0 64px; }
  .hero h1 { font-size: 2.4rem; }
  .hero .hero-subtitle { font-size: 0.95rem; }

  .product-num { font-size: 4rem; }
  .product-name { font-size: 1.6rem; }
  .category-header { margin-bottom: 36px; }
  .category-showcase { margin-bottom: 48px; }

  .subproducts { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .subproduct-card:nth-child(n+7) { display: none; }

  .why-grid { grid-template-columns: 1fr; gap: 24px; }

  .customize-steps {
    grid-template-columns: 1fr; gap: 32px;
  }
  .customize-step {
    flex-direction: row; align-items: flex-start; gap: 20px;
  }
  .step-indicator { flex-shrink: 0; margin-bottom: 0; }

  .industries-list { gap: 12px; }
  .industry-tag { font-size: 0.75rem; padding: 8px 18px; }

  .cert-list { gap: 24px 32px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { margin-top: 40px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .product-num { font-size: 3.2rem; }
  .product-name { font-size: 1.3rem; }
  .product-desc { font-size: 0.9375rem; }
  .subproducts { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cta-banner { padding: 64px 0; }
  .cta-banner h2 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
