:root {
  --accent:#2C3E50;     /* deep navy */
  --secondary:#D4BFAA;  /* champagne beige */
  --black:#111111;      
  --white:#ffffff;
  --muted:#666666;
  --radius:10px;
  --max-width:1400px;
}

* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5vw;
}

/* Header */
.site-header {
  border-bottom: 1px solid #f0f0f0;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand-logo {
  height: auto;
  max-height: 120px; 
  width: auto;
  object-fit: contain;
}

/* Nav */
.main-nav a {
  margin-left: 18px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}
.main-nav a:hover {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn.primary {
  background: var(--accent);
  color: var(--white);
}
.btn.primary:hover {
  background: var(--secondary);
  color: var(--black);
}
.btn.outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn.outline:hover {
  background: var(--accent);
  color: var(--white);
}
.btn.small {
  padding: 8px 12px;
  font-size: 14px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 30px; 
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

 .trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list li {

  margin-bottom: 6px;
  font-weight: 500;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 520px;
  font-size: clamp(14px, 2vw, 18px);
}
.cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-accent {
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 50vh;
  height: 50vh;
  background: radial-gradient(circle at center, rgba(44,62,80,0.08), transparent 40%);
  transform: rotate(10deg);
  pointer-events: none;
}

/* 3D cube */
.hero-3d-wrap {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fabric-cube {
  width: clamp(200px, 25vw, 280px);
  height: clamp(200px, 25vw, 280px);
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-10deg) rotateY(20deg);
  transition: transform 0.5s ease;
  animation: cubeSpin 24s linear infinite;
}
.fabric-cube .face {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(3,20,12,0.15);
}
.fabric-cube .front { transform: translateZ(140px); }
.fabric-cube .back { transform: rotateY(180deg) translateZ(140px); }
.fabric-cube .right { transform: rotateY(90deg) translateZ(140px); }
.fabric-cube .left { transform: rotateY(-90deg) translateZ(140px); }
.fabric-cube .top { transform: rotateX(90deg) translateZ(140px); }
.fabric-cube .bottom { transform: rotateX(-90deg) translateZ(140px); }
@keyframes cubeSpin {
  from { transform: rotateX(-10deg) rotateY(0deg); }
  to { transform: rotateX(-10deg) rotateY(360deg); }
}

/* Categories */
.categories {
  padding: 28px 0;
}
.categories h2 {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}
.grid {
  display: grid;
  gap: 20px;
}
.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.card {
  background: #fdfcf9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(12,28,18,0.06);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.card h3 {
  margin: 14px 16px 6px;
  font-size: 18px;
  color: var(--accent);
}
.card p {
  margin: 0 16px 14px;
  color: var(--muted);
}
.card .btn {
  margin: 0 16px 18px;
}

/* Product page */
.products-hero {
  padding: 20px 0 10px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding-bottom: 30px;
}
.product {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10,20,10,0.04);
}
.product img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.product-body {
  padding: 16px;
}

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--white);
  padding: 18px;
  border-radius: 10px;
  margin: 20px 0;
  text-align: center;
}
.cta-strip .btn {
  background: var(--white);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 8px;
}
.cta-strip .btn:hover {
  background: var(--secondary);
  color: var(--black);
}

/* Contact page */
.contact-page {
  padding: 20px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}
.contact-form {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(10,20,10,0.04);
}
.contact-form label {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  margin-top: 6px;
  font-size: 15px;
}
.contact-info .card {
  padding: 2rem;              
  line-height: 1.8;           
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.contact-info h3, 
.contact-info h4 {
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.contact-info p, 
.contact-info ul {
  margin-bottom: 1.2rem;
}

.contact-info ul li {
  margin-bottom: 0.4rem;
}

.contact-info p i {
  color: var(--accent); 
  margin-right: 6px;
}


/* Footer */
.footer {
  border-top: 1px solid #f1f1f1;
  padding: 18px 0;
  margin-top: 20px;
  background: #fafafa;
}
.footer-grid {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

/* Flash messages */
.flash-messages {
  margin-bottom: 12px;
}
.flash {
  padding: 10px;
  border-radius: 8px;
}
.flash.success {
  background: #e6f6ee;
  color: #0b6b3a;
}
.flash.error {
  background: #ffefef;
  color: #7a1b1b;
}

/* Responsive */

@media (min-width: 1600px) {
  :root {
    --max-width: 1500px; 
   }
}

.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none;
}

/* Mobile nav */
@media (max-width: 900px) {
  .brand-logo {
    width: 100%;       
    max-width: 100%;  
    height: auto;      
    margin: 0;         
    display: block;
    object-fit: contain; 
  }
  .header-inner {
    padding: 0 10px; 
    justify-content: center; 
  }
  .menu-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  
  .trust-list {
    text-align: left;
    padding-left: 20px; 
    margin: 0;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid #eee;
    flex-direction: column;
    padding: 15px 20px;
    gap: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  }
  
  .main-nav a {
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav.active {
    display: flex !important;
    flex-direction: column;
  }


  /* Hero section */
  .hero {
    padding: 40px 0;   
    text-align: center;
  }
  
  .hero h1,
  .contact-intro h1,
  .products-hero h1 {
    font-size: clamp(24px, 6vw, 28px);
    line-height: 1.3;
    margin-bottom: 14px;
    text-align: center;
  }

  .hero .lead,
  .contact-intro .lead,
  .products-hero p {
    font-size: clamp(15px, 4.5vw, 18px);
    line-height: 1.5;
    text-align: center;
    margin: 0 auto 20px;
    max-width: 90%;
  }

  .hero-3d-wrap {
    margin-bottom: 30px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px; 
  }

  .display {
    font-size: 26px;
    margin-bottom: 16px;
  }


  .lead {
    font-size: 15px;
    margin: 0 auto 24px;
  }

  .cta-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }
  
  .fabric-cube .top,
  .fabric-cube .bottom {
    display: none;
  }

  /* Categories & products */
  .categories {
    padding: 40px 0;  }

  .cols-3 {
    grid-template-columns: 1fr 1fr;
    gap: 24px; 
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px; 
    margin-top: 20px; }

  @media (max-width: 600px) {
    .cols-3,
    .product-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Contact */
  .contact-page {
    padding: 40px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px; 
  }

  /* Footer stack */
  .footer-grid {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
  