* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: Georgia, "Times New Roman", serif;
  background: #fbf7ef;
  color: #2f241d;
}

img {
  max-width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 84px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(251, 247, 239, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(182, 146, 84, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #4a3328;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(184, 142, 73, 0.35);
}

.brand span {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  flex-wrap: wrap;
}

nav a,
.nav-order-btn {
  text-decoration: none;
  color: #4a3328;
  font-size: 15px;
  font-weight: 700;
  background: transparent;
  border: 0;
  font-family: inherit;
}

button,
a {
  cursor: pointer;
}

.cart-btn,
.primary-btn,
.secondary-btn,
.filter-btn,
.detail-btn {
  border: 0;
  text-decoration: none;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  transition: 0.25s ease;
}

.cart-btn,
.primary-btn,
.filter-btn.active {
  background: #c9a75d;
  color: #2c2119;
}

.secondary-btn,
.filter-btn,
.detail-btn {
  border: 1px solid #c9a75d;
  color: #4a3328;
  background: rgba(255, 250, 242, 0.78);
}

.cart-btn:hover,
.primary-btn:hover,
.filter-btn:hover {
  background: #b89142;
  color: #2c2119;
}

.detail-btn:hover {
  background: #fff3d6;
}

.hero {
  min-height: calc(92vh - 84px);
  padding: 82px 7%;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 42px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(45, 31, 23, 0.8), rgba(45, 31, 23, 0.48), rgba(45, 31, 23, 0.18)),
    url("images/product7.jpeg");
  background-size: cover;
  background-position: center;
  color: #fff8e9;
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-heading p {
  color: #b89142;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(42px, 8vw, 104px);
  line-height: 0.98;
  color: #fff8e9;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 650px;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.65;
  color: #f4dec1;
  margin-bottom: 34px;
}

.hero-logo-seal {
  align-self: end;
  justify-self: end;
  width: 260px;
  padding: 14px;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(255, 232, 183, 0.48);
  border-radius: 50%;
  box-shadow: 0 24px 70px rgba(22, 13, 8, 0.24);
}

.hero-logo-seal img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.hero-actions,
.hero-trust,
.card-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 34px;
}

.hero-trust span {
  padding: 10px 14px;
  background: rgba(255, 250, 242, 0.16);
  border: 1px solid rgba(255, 232, 183, 0.38);
  border-radius: 999px;
  color: #fff2d5;
  font-size: 14px;
}

.signature-strip {
  padding: 54px 7%;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  background: #fffaf2;
  border-bottom: 1px solid rgba(184, 142, 73, 0.18);
}

.signature-strip h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  color: #3b281f;
}

.signature-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.signature-products img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(201, 167, 93, 0.35);
  box-shadow: 0 18px 45px rgba(66, 42, 25, 0.12);
}

.categories,
.shop,
.contact {
  padding: 90px 7%;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2,
.interiors h2,
.contact-intro h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.1;
  color: #3b281f;
}

.category-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.category-grid article,
.product-card,
.contact-card {
  background: #fffaf2;
  border: 1px solid rgba(184, 142, 73, 0.22);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(66, 42, 25, 0.08);
}

.category-grid span {
  color: #c9a75d;
  font-weight: 700;
}

.category-grid h3 {
  font-size: 26px;
  margin: 18px 0 10px;
}

.category-grid p,
.product-card p,
.interiors p,
.contact-card p {
  color: #6c5647;
  line-height: 1.7;
}

.filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-media {
  width: 100%;
  height: 285px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  background: linear-gradient(145deg, #fffaf2, #eadbc2);
  border: 1px solid rgba(184, 142, 73, 0.18);
}

.product-media span {
  color: #9b733f;
  font-weight: 700;
  font-size: 14px;
}

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media img.is-hidden {
  display: none;
}

.product-card h3 {
  font-size: clamp(23px, 2.4vw, 28px);
  line-height: 1.12;
  margin: 8px 0;
}

.category-label {
  color: #9b733f;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.price-row {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: #4a3328;
  white-space: nowrap;
}

.add-btn {
  border: 0;
  background: #4a3328;
  color: #f8e8bd;
  padding: 12px 16px;
  border-radius: 4px;
  font-weight: 700;
}

.interiors {
  margin: 40px 7%;
  padding: 76px;
  background:
    linear-gradient(rgba(57, 38, 27, 0.76), rgba(57, 38, 27, 0.76)),
    url("images/product6.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
  border-radius: 8px;
}

.interiors h2 {
  color: #fff8e9;
  max-width: 780px;
  margin-bottom: 20px;
}

.interiors p {
  max-width: 680px;
  color: #f3dfbd;
  margin-bottom: 28px;
}

.contact {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(245, 234, 214, 0.82)),
    radial-gradient(circle at top right, rgba(201, 167, 93, 0.24), transparent 34%);
}

.contact-intro {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  margin-bottom: 38px;
}

.contact-intro img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(184, 142, 73, 0.35);
  box-shadow: 0 16px 38px rgba(66, 42, 25, 0.12);
}

.contact-elegant {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-card {
  min-height: 230px;
  background: linear-gradient(145deg, #fffaf2, #f5ead6);
}

.contact-card span {
  display: block;
  margin-bottom: 14px;
  color: #9b733f;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.contact-card h3 {
  font-size: clamp(20px, 2.4vw, 24px);
  color: #3b281f;
  margin-bottom: 18px;
  word-break: break-word;
}

.contact-card a {
  color: #4a3328;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #c9a75d;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -430px;
  width: min(430px, 100%);
  height: 100vh;
  background: #fffaf2;
  z-index: 40;
  padding: 24px;
  overflow-y: auto;
  transition: 0.3s ease;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.16);
}

.cart-panel.active {
  right: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(47, 36, 29, 0.45);
  opacity: 0;
  visibility: hidden;
  z-index: 30;
  transition: 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-header,
.modal-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.cart-header button,
.modal-close {
  width: 36px;
  height: 36px;
  border: 0;
  background: #4a3328;
  color: white;
  font-size: 20px;
  border-radius: 4px;
  flex: 0 0 auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(184, 142, 73, 0.22);
}

.cart-item h4 {
  margin-bottom: 6px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.qty-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid #c9a75d;
  background: transparent;
  border-radius: 4px;
}

.cart-total {
  margin: 24px 0;
  padding: 18px;
  background: #f5ead6;
  border-radius: 8px;
}

.cart-total p,
.cart-total h3 {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}

.cart-total small,
.delivery-hint,
.modal-copy {
  display: block;
  color: #7b604f;
  line-height: 1.45;
}

.cart-total small {
  margin-top: 10px;
}

.delivery-hint {
  font-size: 14px;
}

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

.checkout-form input,
.checkout-form textarea,
.small-modal-card input {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(184, 142, 73, 0.4);
  background: white;
  border-radius: 4px;
  font: inherit;
}

.checkout-form textarea {
  min-height: 92px;
  resize: vertical;
}

.payment-option {
  padding: 14px;
  background: #f7eddc;
  border-radius: 4px;
}

.full-btn {
  width: 100%;
  margin-top: 8px;
}

.product-modal,
.otp-modal,
.orders-modal {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.product-modal.active,
.otp-modal.active,
.orders-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-card,
.small-modal-card {
  background: #fffaf2;
  border: 1px solid rgba(184, 142, 73, 0.35);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(28, 18, 12, 0.28);
}

.modal-card {
  width: min(920px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.small-modal-card {
  width: min(520px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: 28px;
}

.modal-image {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #fffaf2, #eadbc2);
}

.modal-image span {
  color: #9b733f;
  font-weight: 700;
}

.modal-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-image img.is-hidden {
  display: none;
}

.modal-info {
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.modal-info h3,
.small-modal-card h3 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  color: #3b281f;
  margin-bottom: 14px;
}

.modal-info p {
  color: #6c5647;
  line-height: 1.75;
  font-size: 17px;
}

.modal-price {
  margin: 24px 0;
  font-size: 30px;
  font-weight: 700;
  color: #4a3328;
}

.modal-notes,
.demo-otp-box,
.order-card {
  margin-top: 18px;
  padding: 18px;
  background: #f5ead6;
  border-radius: 8px;
  color: #6c5647;
  line-height: 1.6;
}

.demo-otp-box {
  margin-bottom: 14px;
  color: #4a3328;
}

.orders-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.order-card h4 {
  color: #3b281f;
  margin-bottom: 8px;
}

.order-card p {
  margin: 4px 0;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-logo-seal {
    width: 180px;
    justify-self: start;
    align-self: start;
  }

  .category-grid,
  .product-grid,
  .contact-elegant {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header {
    min-height: auto;
    padding: 16px 5%;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .brand {
    justify-content: center;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  nav {
    width: 100%;
    gap: 10px;
    justify-content: center;
  }

  nav a,
  .nav-order-btn {
    padding: 8px 10px;
    font-size: 14px;
  }

  .cart-btn {
    width: 100%;
  }

  .hero {
    min-height: 78vh;
    padding: 56px 5%;
    align-items: end;
    background:
      linear-gradient(rgba(45, 31, 23, 0.74), rgba(45, 31, 23, 0.7)),
      url("images/product7.jpeg");
    background-size: cover;
    background-position: center;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-logo-seal {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }

  .signature-strip,
  .categories,
  .shop,
  .contact {
    padding: 58px 5%;
  }

  .signature-products,
  .category-grid,
  .product-grid,
  .contact-elegant {
    grid-template-columns: 1fr;
  }

  .signature-products img {
    height: 300px;
  }

  .product-media {
    height: 295px;
  }

  .filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .filter-btn {
    padding: 12px 10px;
  }

  .interiors {
    margin: 24px 5%;
    padding: 42px 22px;
  }

  .contact-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-intro img {
    width: 92px;
    height: 92px;
  }

  .cart-panel {
    right: -100%;
    width: 100%;
    padding: 20px;
  }

  .modal-card {
    grid-template-columns: 1fr;
  }

  .modal-image {
    min-height: 360px;
  }

  .modal-info {
    padding: 26px;
  }
}

@media (max-width: 420px) {
  .header {
    padding: 14px 4%;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }

  nav a,
  .nav-order-btn {
    text-align: center;
    font-size: 12px;
    padding: 8px 2px;
  }

  .hero {
    padding: 48px 5%;
  }

  .hero h1 {
    font-size: 39px;
  }

  .signature-strip,
  .categories,
  .shop,
  .contact {
    padding: 50px 5%;
  }

  .section-heading h2,
  .signature-strip h2,
  .interiors h2,
  .contact-intro h2 {
    font-size: 34px;
  }

  .category-grid article,
  .product-card,
  .contact-card {
    padding: 22px;
  }

  .product-media {
    height: 255px;
  }

  .price-row,
  .cart-item {
    align-items: stretch;
    flex-direction: column;
  }

  .card-actions,
  .filter-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .add-btn,
  .detail-btn {
    width: 100%;
  }

  .product-modal,
  .otp-modal,
  .orders-modal {
    padding: 12px;
  }

  .modal-image {
    min-height: 290px;
  }
}