/* ============================================================
   ZOHO SITES — CUSTOM CSS
   Brand: Laminate Sheet Business
   Primary Color: Maroon #660033
   Accent: Gold #b8960c
   Font: Cormorant Garamond (headings) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=DM+Sans:wght@300;400;500&display=swap');

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  --maroon:       #660033;
  --maroon-dark:  #4a0025;
  --maroon-light: #8c0044;
  --gold:         #b8960c;
  --gold-light:   #d4ae3e;
  --cream:        #faf8f5;
  --white:        #ffffff;
  --text:         #1a1a1a;
  --text-muted:   #6b6b6b;
  --border:       #e8e0d8;
  --border-light: #f0ece6;
}

/* ============================================================
   2. GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

body,
.zs-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6,
.zs-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: 52px; }
h2 { font-size: 38px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 15px; }

p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 16px;
}

a {
  color: var(--maroon);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold);
}

strong, b {
  font-weight: 500;
  color: var(--text);
}

/* Section tag / eyebrow label */
.zs-section-tag,
.section-tag {
  display: block;
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ============================================================
   4. NAVIGATION / HEADER
   ============================================================ */
.zs-header,
header,
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.zs-header .zs-logo,
header .logo,
.site-header .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 0.06em;
  text-decoration: none;
}

/* Navigation links */
.zs-nav a,
.site-nav a,
nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.zs-nav a:hover,
.site-nav a:hover,
nav a:hover,
.zs-nav a.active,
nav a.active {
  color: var(--maroon);
  border-bottom-color: var(--maroon);
}

/* ============================================================
   5. BUTTONS
   ============================================================ */

/* Primary Button */
.zs-button,
.btn,
button[type="submit"],
.zs-btn-primary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 13px 32px;
  background: var(--maroon);
  color: var(--white);
  border: 1px solid var(--maroon);
  cursor: pointer;
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

.zs-button:hover,
.btn:hover,
button[type="submit"]:hover,
.zs-btn-primary:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
  color: var(--white);
}

/* Secondary / Outline Button */
.btn-outline,
.zs-btn-secondary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 12px 30px;
  background: transparent;
  color: var(--maroon);
  border: 1px solid var(--maroon);
  cursor: pointer;
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-outline:hover,
.zs-btn-secondary:hover {
  background: var(--maroon);
  color: var(--white);
}

/* Gold Accent Button */
.btn-gold,
.zs-btn-gold {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 13px 32px;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  cursor: pointer;
  border-radius: 0;
  transition: background 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-gold:hover,
.zs-btn-gold:hover {
  background: #9e7e0a;
  border-color: #9e7e0a;
}

/* ============================================================
   6. HERO / BANNER SECTION
   ============================================================ */
.zs-banner,
.zs-hero,
.hero-section,
.banner {
  background: var(--maroon);
  color: var(--white);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.zs-banner h1,
.zs-hero h1,
.hero-section h1,
.banner h1 {
  color: var(--white);
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.zs-banner h1 em,
.zs-hero h1 em,
.banner h1 em {
  color: var(--gold);
  font-style: normal;
}

.zs-banner p,
.zs-hero p,
.banner p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 36px;
}

/* Decorative circle in hero */
.zs-banner::after,
.zs-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 420px;
  height: 420px;
  border: 80px solid rgba(184, 150, 12, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================================
   7. SECTIONS & LAYOUT
   ============================================================ */
.zs-section,
section {
  padding: 80px 60px;
}

.zs-section.bg-white,
section.bg-white {
  background: var(--white);
}

.zs-section.bg-cream,
section.bg-cream {
  background: var(--cream);
}

.zs-section.bg-maroon,
section.bg-maroon {
  background: var(--maroon);
}

.zs-section.bg-maroon h2,
.zs-section.bg-maroon h3,
section.bg-maroon h2,
section.bg-maroon h3 {
  color: var(--white);
}

.zs-section.bg-maroon p {
  color: rgba(255, 255, 255, 0.65);
}

/* Section divider line */
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 32px;
}

/* ============================================================
   8. CARDS
   ============================================================ */
.zs-card,
.card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.zs-card:hover,
.card:hover {
  border-color: var(--maroon);
  transform: translateY(-3px);
}

.zs-card .card-body,
.card .card-body {
  padding: 24px;
}

.zs-card h3,
.card h3 {
  font-size: 20px;
  color: var(--maroon);
  margin-bottom: 8px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  border-color: var(--maroon);
  box-shadow: 0 4px 20px rgba(102, 0, 51, 0.08);
}

.product-card .product-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.product-card .product-code {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card .product-tag {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #f5eef2;
  color: var(--maroon);
  padding: 3px 10px;
  font-weight: 500;
}

/* ============================================================
   9. FORMS & INPUTS
   ============================================================ */
.zs-form input,
.zs-form textarea,
.zs-form select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: var(--maroon);
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
  font-weight: 300;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* ============================================================
   10. PRODUCT / GALLERY GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* Colour Swatch Display */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
}

.swatch-item {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.swatch-item:hover {
  transform: scale(1.04);
  border-color: var(--maroon);
}

.swatch-item .swatch-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 9px;
  text-align: center;
  padding: 4px;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.swatch-item:hover .swatch-label {
  opacity: 1;
}

/* ============================================================
   11. STATS / COUNTER BAND
   ============================================================ */
.stats-band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--maroon);
  line-height: 1;
  display: block;
}

.stat-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ============================================================
   12. TESTIMONIALS / QUOTES
   ============================================================ */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--maroon);
  opacity: 0.15;
  position: absolute;
  top: -8px;
  left: 20px;
  line-height: 1;
}

.testimonial p {
  font-size: 15px;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}

.testimonial .author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial .author-title {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   13. BADGES & TAGS
   ============================================================ */
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 12px;
}

.badge-maroon {
  background: #f5eef2;
  color: var(--maroon);
}

.badge-gold {
  background: #fdf6e3;
  color: #8a6f0a;
}

.badge-outline {
  border: 1px solid var(--maroon);
  color: var(--maroon);
}

.badge-new {
  background: var(--maroon);
  color: var(--white);
}

/* ============================================================
   14. BREADCRUMBS
   ============================================================ */
.zs-breadcrumb,
.breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--maroon);
}

.breadcrumb .sep {
  color: var(--border);
}

/* ============================================================
   15. TABLE
   ============================================================ */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

table thead th {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--white);
  background: var(--maroon);
  padding: 12px 16px;
  text-align: left;
}

table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
  vertical-align: middle;
}

table tbody tr:hover td {
  background: #fdf5f8;
}

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

/* ============================================================
   16. FOOTER
   ============================================================ */
.zs-footer,
footer {
  background: var(--maroon-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px;
}

.zs-footer h4,
footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.zs-footer a,
footer a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
  font-weight: 300;
}

.zs-footer a:hover,
footer a:hover {
  color: var(--gold);
}

.zs-footer .footer-bottom,
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Footer logo */
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 12px;
}

/* ============================================================
   17. SOCIAL ICONS
   ============================================================ */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   18. UTILITIES
   ============================================================ */

/* Thin gold separator line */
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 14px 0 28px;
}

/* Text helpers */
.text-maroon { color: var(--maroon); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }

/* Spacing */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================================
   19. RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }

  .zs-section, section { padding: 60px 32px; }
  .zs-banner, .zs-hero { padding: 70px 32px; }
  .zs-banner h1 { font-size: 44px; }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
}

/* ============================================================
   20. RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }

  .zs-section, section { padding: 48px 20px; }
  .zs-banner, .zs-hero { padding: 56px 20px; }
  .zs-banner h1 { font-size: 36px; }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .zs-footer, footer { padding: 40px 20px; }

  .zs-button, .btn, .btn-outline {
    width: 100%;
    text-align: center;
    display: block;
  }
}
