:root {
  --bg: #f8f6f2;
  --surface: #ffffff;
  --text: #1b1b1b;
  --muted: #666;
  --gold: #b6904b;
  --border: #e7e1d6;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 0;
}

.brand {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
}

.brand span {
  color: var(--gold);
}

.brand img {
  height: 84px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 23px;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #1b1b1b;
  border-radius: 999px;
}

.nav-links a {
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search {
  border: 1px solid var(--border);
  background: #fff;
  padding: 9px 12px;
  border-radius: 999px;
  min-width: 190px;
}

.icon-btn {
  border: 1px solid var(--border);
  background: #fff;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
}

.hero {
  min-height: calc(100vh - 42px);
  display: grid;
  align-items: center;
  background: linear-gradient(95deg, rgba(14, 14, 14, 0.75), rgba(14, 14, 14, 0.2)),
    url("https://images.unsplash.com/photo-1617127365659-c47fa864d8bc?auto=format&fit=crop&w=1920&q=80")
      center/cover no-repeat;
  color: #fff;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero p {
  color: #efe8dc;
  max-width: 620px;
}

.hero .btn {
  margin: 6px 10px 6px 0;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 24px rgba(182, 144, 75, 0.3);
}

.btn-light {
  background: #fff;
  color: #111;
}

section {
  padding: 72px 0;
}

.section-title {
  font-size: clamp(1.4rem, 2.3vw, 2.2rem);
  margin: 0 0 8px;
  text-align: center;
}

.section-subtitle {
  color: var(--muted);
  text-align: center;
  margin: 0 0 26px;
}

.grid {
  display: grid;
  gap: 20px;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card-body {
  padding: 16px;
}

.pill {
  display: inline-block;
  background: #f4eee4;
  color: #5f4b2f;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 999px;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-image-wrap .alt {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-image-wrap .alt {
  opacity: 1;
}

.product-card:hover .product-image-wrap .main {
  opacity: 0;
}

.quick-view {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  background: rgba(17, 17, 17, 0.88);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-card:hover .quick-view {
  opacity: 1;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.select-like {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  min-width: 160px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thumbs img,
.zoom-frame img {
  border-radius: 14px;
  border: 1px solid var(--border);
}

.zoom-frame {
  overflow: hidden;
}

.zoom-frame img {
  transition: transform 0.35s ease;
}

.zoom-frame:hover img {
  transform: scale(1.06);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.feature-list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  color: #2f2f2f;
}

.promo-banner {
  border-radius: 18px;
  padding: 34px;
  color: #fff;
  background: linear-gradient(130deg, rgba(0, 0, 0, 0.75), rgba(182, 144, 75, 0.45)),
    url("https://images.unsplash.com/photo-1594938298603-c8148c4dae35?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

.heritage {
  background: #121212;
  color: #f3eee4;
}

.trust {
  background: #f0ebe2;
}

.trust-item {
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd1bc;
  border-radius: 14px;
  background: #fff;
}

.about-showcase {
  background: #efefef;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-copy {
  max-width: 620px;
}

.about-kicker {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: #8f8f8f;
}

.about-title {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.2;
  text-align: left;
}

.about-copy p {
  margin: 0 0 22px;
  color: #434343;
  line-height: 1.75;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d22645;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.6px;
  border-bottom: 2px solid #d22645;
  padding-bottom: 6px;
}

.about-link::after {
  content: "->";
  font-size: 1rem;
}

.about-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: -30px;
  bottom: 40px;
  width: 150px;
  height: 150px;
  border-radius: 8px;
  background: rgba(214, 38, 69, 0.95);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 4px;
}

.about-badge span {
  font-size: 1.9rem;
  font-weight: 700;
}

.about-badge strong {
  font-size: 2rem;
}

.map {
  border: 0;
  width: 100%;
  min-height: 380px;
  border-radius: 14px;
}

.store-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.store-image-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.store-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.products-collage {
  column-count: 3;
  column-gap: 14px;
}

.collage-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #fbfaf8, #f2ede4);
  box-shadow: var(--shadow);
  margin: 0 0 14px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  padding: 10px;
}

.collage-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.collage-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.c1 { padding: 14px; }
.c2 { padding: 10px; }
.c3 { padding: 8px; }
.c4 { padding: 8px; }
.c5 { padding: 8px; }
.c6 { padding: 14px; }

.form-grid {
  display: grid;
  gap: 12px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  
  color: #5f4b2f;
  display: inline-grid;
  place-items: center;
  font-size: 1rem;
}

.contact-text {
  margin: 6px 0 0;
  line-height: 1.5;
}

#contact .split {
  grid-template-columns: minmax(320px, 960px);
  justify-content: center;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 130px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.order-box,
.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee8dc;
}

footer {
  background: #111;
  color: #e7dfd0;
  padding: 30px 0;
  text-align: center;
}

footer .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.footer-contact-list {
  align-items: center;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto 18px;
}

footer .contact-icon {
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f3e9d2;
}

footer .contact-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

footer .contact-item {
  display: grid;
  grid-template-columns: 38px minmax(240px, 1fr);
  align-items: center;
  width: min(100%, 760px);
  text-align: left;
}

footer .contact-text {
  margin: 0;
}

.footer-note {
  margin: 0 0 8px;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color: #cfc5b0;
}

.fade-up {
  animation: fadeUp 0.8s ease both;
}

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

@media (max-width: 1024px) {
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards-3,
  .split,
  .about-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .nav-inner {
    padding: 12px 0;
    gap: 16px;
    position: relative;
  }
  .brand img {
    height: 62px;
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav-links {
    display: none;
    width: min(260px, 84vw);
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 100;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1rem;
    padding: 12px 16px;
    border-bottom: 1px solid #f1ece3;
  }
  .nav-links a:last-child {
    border-bottom: 0;
  }
  .products-collage {
    column-count: 2;
  }
}

@media (max-width: 680px) {
  section {
    padding: 56px 0;
  }
  .cards-4,
  .cards-3 {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 84px 0 56px;
  }
  .hero h1 {
    line-height: 1.18;
  }
  .hero p {
    font-size: 0.96rem;
  }
  .btn {
    width: auto;
    text-align: center;
    margin-right: 8px;
    padding: 9px 16px;
    font-size: 0.92rem;
  }
  .search {
    min-width: 0;
    flex: 1;
  }
  .nav-tools {
    width: 100%;
  }
  .about-badge {
    left: 14px;
    bottom: 14px;
    width: 120px;
    height: 120px;
  }
  .about-badge span {
    font-size: 1.3rem;
  }
  .about-badge strong {
    font-size: 1.5rem;
  }
  .store-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .products-collage {
    column-count: 2;
    column-gap: 10px;
  }
  .collage-item,
  .c1,
  .c2,
  .c3,
  .c4,
  .c5,
  .c6 {
    padding: 0;
    margin: 0 0 10px;
  }
  .collage-item img {
    width: 100%;
    display: block;
  }
}
.footer-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-icon {
    min-width: 22px;
    font-size: 18px;
}

.footer-item a {
    color: #fff;
    text-decoration: none;
}

.footer-item a:hover {
    text-decoration: underline;
}
