:root{
  --accent: #b8860b;         
  --accent-600: #a67408;
  --bg: #fbfbfc;
  --card: #ffffff;
  --muted: #6b7280;
  --text: #0f1724;
  --soft-border: #eef1f6;

  --max-width: 1100px;
  --radius: 12px;
  --shadow-sm: 0 6px 18px rgba(15,23,42,0.06);
  --shadow-md: 0 10px 30px rgba(15,23,42,0.08);

  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 16px;
  line-height: 1.45;
}

* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.45;
}

.container {
  width: calc(100% - 2rem);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 0;
}

.row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(#fff, #fff);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid #f3f5f8;
}
.header-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.2px;
  font-size: 1.05rem;
}
.main-nav {
  display: flex;
  align-items: center;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1rem;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.nav-list a {
  display: inline-block;
  text-decoration: none;
  color: var(--text);
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.nav-list a:hover,
.nav-list a:focus {
  background: #fff7e6;
  color: var(--accent-600);
}
.nav-list a.active {
  background: #fff8e6;
  color: var(--accent);
}

.has-dropdown {
  position: relative;
}
.dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  background: var(--card);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-height: 0;
  padding: 0 0.35rem;
  border: 1px solid var(--soft-border);
  transition: max-height 0.3s ease, padding 0.3s ease;
  display: none;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  max-height: 500px;
  padding: 0.35rem 0;
  display: block;
}
.dropdown li {
  padding: 0;
}
.dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text);
}

.call-btn {
  display: inline-block;
  margin-left: 1rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding: 3rem 0;
  background: linear-gradient(180deg, #fff, var(--bg));
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: center;
}
.hero-text h1 {
  margin: 0 0 0.6rem;
  font-size: 1.9rem;
  line-height: 1.1;
}
.hero-text p {
  margin: 0 0 1rem;
  color: var(--muted);
}
.hero-cta .btn {
  margin-right: 0.5rem;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: block;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: var(--card);
  padding: 1.1rem;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.card h3 {
  margin: 0 0 0.5rem;
}
.link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.price-card {
  background: var(--card);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.price-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.section {
  padding: 2rem 0;
}
.section.alt {
  background: #fff;
  border-top: 1px solid var(--soft-border);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cta .btn {
  margin-right: 0.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: 12px;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  text-align: center;
}

.product-card .meta {
  font-size: 0.95rem;
  color: var(--muted);
  padding: 0.6rem 1rem 0;
  text-align: center;
  margin-bottom: 12px;
}

.product-card .actions {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  justify-content: center;
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: background-color 0.3s ease;
  color: var(--text);
  background: transparent;
  border: 1px solid #e6e9ef;
}

.btn.primary {
  background: var(--accent);
  color: white;
}

.btn-order {
  border: 1px solid #e6e9ef;
  color: var(--text);
  background: transparent;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  text-decoration: none;
}

.btn-order:hover {
  background-color: #f4e4a4;
  border-color: var(--accent);
  color: var(--accent-600);
}

.btn-quote {
  border: 1px dashed var(--accent);
  color: var(--accent);
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-quote:hover {
  background-color: var(--accent);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
  gap: 1.5rem; 
}

.gallery-grid img {
  width: 100%;
  height: 300px; 
  object-fit: cover; 
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05); 
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem;
  border-radius: 10px;
  border: 1px solid #e9edf3;
  margin-top: 0.35rem;
  font-size: 1rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--muted);
}
.contact-info {
  background: var(--card);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.request-quote {
  background: var(--card);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.request-btn {
  background-color: #b8860b;
  color: #fff;
}
.request-btn:hover {
  background-color: #a07509;
}


.site-footer {
  padding: 1rem;
  background: #fff;
  border-top: 1px solid var(--soft-border);
}
.footer-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-inner p {
  margin: 0;
  color: var(--muted);
}

a:focus, button:focus, input:focus, textarea:focus {
  outline: 3px solid rgba(184,134,11,0.12);
  outline-offset: 3px;
  border-radius: 8px;
}


@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-list {
    display: none;
    flex-direction: column;
  }
  .nav-list.nav-open {
    display: block;
  }
  .has-dropdown .dropdown {
    display: none;
  }
  .has-dropdown.open .dropdown {
    display: block;
    padding: 0.5rem 0;
  }
  .nav-toggle {
    display: inline-block;
  }
  .call-btn {
    display: none;
  }
  .header-inner {
    gap: 0.5rem;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .hero-image img {
    border-radius: 10px;
  }
  .dropdown {
    position: static;
    box-shadow: none;
    border: 0;
    display: none;
  }
  .has-dropdown .dropdown {
    display: none;
  }
  .has-dropdown.open .dropdown {
    display: block;
    padding: 0.5rem 0;
  }
  .dropdown a {
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 480px) {
  :root {
    font-size: 15px;
  }
  .gallery-grid img {
    height: 140px;
  }
  .hero-text h1 {
    font-size: 1.4rem;
  }
  .price-card {
    padding: 0.65rem;
  }
}
.size {
  font-weight: bold;
  font-size: 1.1rem;
}
.type {
  font-weight: normal;
  font-size: 1rem;
  color: var(--muted);
}

