@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url(../fonts/Oswald-VariableFont_wght.ttf);
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'DM Sans', sans-serif;
  background-color: #f9f6f2;
  /* main light background for all non-header/footer areas */
  color: #2c2824;
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: #201a18;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* buttons & theme */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fcc41a;
  color: #201a18;
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 60px;
  border: none;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  cursor: poDM Sans;
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background-color: #e0b015;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 196, 26, 0.3);
  color: #201a18;
}

/* header (dark) */
.site-header {
  background-color: #201a18;
  border-bottom: 1px solid rgba(252, 196, 26, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.logo svg,
.logo img {
  display: block;
}

.advert-note {
  font-size: 0.85rem;
  color: #b0a89c;
  letter-spacing: 0.2px;
  text-align: end;
}

/* product gallery area (light background) */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 48px;
}

.gallery-main .main-img {
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid #e6dfd7;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.gallery-main .main-img img {
  width: 100%;
  display: block;
}

.thumb-list {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.thumb-item {
  flex: 1;
  cursor: poDM Sans;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: 0.2s;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.thumb-item img {
  width: 100%;
  display: block;
}

.thumb-item.active {
  border-color: #fcc41a;
}

/* product info */
.product-title {
  font-size: 3rem;
  font-weight: 500;
  color: #201a18;
  margin-bottom: 0.75rem;
}

.rating {
  margin-bottom: 20px;
}

.price-block {
  margin: 24px 0 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(32, 26, 24, 0.1);
}

.price-old {
  font-size: 1.3rem;
  text-decoration: line-through;
  color: #8e8882;
  margin-right: 12px;
}

.price-new {
  font-size: 2.2rem;
  font-weight: 500;
  color: #cc5a20;
  font-family: 'Oswald', sans-serif;
  background: linear-gradient(135deg, #201a18 0%, #fcc41a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: #c96f0c;
}

.qty-cart {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 60px;
  padding: 4px;
  border: 1px solid #e2dbd3;
}

.quantity-selector button {
  background: none;
  border: none;
  font-size: 1.6rem;
  width: 44px;
  color: #fcc41a;
  cursor: poDM Sans;
  font-weight: 600;
}

.quantity-selector input {
  width: 60px;
  text-align: center;
  background: transparent;
  border: none;
  color: #201a18;
  font-size: 1.2rem;
  font-weight: 500;
}

/* info boxes on light bg */
.info-section {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.spec-box,
.delivery-box {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid #ece5dd;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}

.spec-list {
  list-style: none;
  margin-top: 16px;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(32, 26, 24, 0.08);
  font-weight: 400;
}

.spec-list li strong {
  color: #c96f0c;
  font-weight: 600;
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 32px;
  padding: 40px 32px;
  margin: 60px 0;
  gap: 32px;
  border: 1px solid #ece5dd;
}

.feature-card {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1;
  min-width: 200px;
}

.feature-icon {
  background: #fef6e8;
  width: 64px;
  height: 64px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fcc41a40;
  flex-shrink: 0;
}

.feature-icon img {
  width: 32px;
}

.feature-text h5 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #201a18;
}

.feature-text p {
  font-size: 0.85rem;
  color: #5b5550;
}

/* related products */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.product-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  transition: transform 0.2s;
  border: 1px solid #ece5dd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: #fcc41a80;
}

.product-card img {
  width: 100%;
  border-radius: 20px;
  background: #f3efe9;
  margin-bottom: 16px;
}

.product-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.product-price {
  color: #c96f0c;
  font-weight: 500;
  font-size: 1.1rem;
}

/* contact block on light background */
.contact-block {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 30px;
  background: #ffffff;
  border-radius: 32px;
  padding: 48px 40px;
  margin: 60px 0 80px;
  border: 1px solid #ece5dd;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  background: #f9f6f2;
  border: 1px solid #e2dbd3;
  padding: 16px 20px;
  border-radius: 60px;
  color: #201a18;
  font-family: 'DM Sans', sans-serif;
  transition: 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #fcc41a;
  background: #ffffff;
}

/* footer (dark) */
.footer {
  background-color: #201a18;
  padding: 60px 0 24px;
  border-top: 1px solid rgba(252, 196, 26, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo svg {
  margin-bottom: 20px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #b0a89c;
  line-height: 1.5;
}

.footer-widget h4 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #fcc41a;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-links li {
  color: #ccc6bc;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fcc41a;
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(252, 196, 26, 0.15);
  font-size: 0.8rem;
  color: #a0988c;
}

/* responsive */
@media (max-width: 991px) {
  .info-section {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-block {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .product-grid {
    display: flex;
    flex-direction: column-reverse;
  }
  .header-inner {
    flex-direction: column;

  }
  .contact-block {
    grid-template-columns: 1fr;
  }
  .header-inner div {
    text-align: center !important;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .features-row {
    flex-direction: column;
  }
  .product-title {
    font-size: 2rem;
  }
  .contact-block {
    padding: 32px 24px;
  }
}
@media (max-width: 400px) {
  .spec-list li {
    display: flex;
    flex-direction: column;
  }
  .qty-cart {
    grid-template-columns: 1fr;
  }
  .feature-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.smooth {
  scroll-behavior: smooth;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  animation: slideUp 0.4s ease-out;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.02);
  padding: 20px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  backdrop-filter: blur(0px);
  border: 1px solid #f0f0f0;
}

.cookie-banner__content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 2;
  min-width: 240px;
}

.cookie-banner__icon {
  flex-shrink: 0;
  background: #fff6e8;
  width: 44px;
  height: 44px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #201a18;
  letter-spacing: -0.2px;
}

.cookie-banner__desc {
  font-size: 0.85rem;
  line-height: 1.45;
  color: #4a4540;
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: poDM Sans;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
}

.cookie-btn--primary {
  background: #201a18;
  color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.cookie-btn--primary:hover {
  background: #fcc41a;
  transform: translateY(-1px);
}

.cookie-btn--secondary {
  background: #ece5dd;
  color: #4a4540;
  border: 1px solid #c96f0c;
}

.cookie-btn--secondary:hover {
  background: #c96f0c;
  border-color: #c96f0c;
  color: white;
}

.cookie-link {
  font-size: 0.85rem;
  color: #fcc41a;
  text-decoration: none;
  transition: color 0.2s;
}

.cookie-link:hover {
  color: #1e293b;
  text-decoration: underline;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }
  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner__actions {
    justify-content: flex-start;
    margin-top: 8px;
  }
  .cookie-btn {
    padding: 8px 20px;
  }
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 150px 0 150px
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px
}
.thanks p {
  text-align: center;
  font-size: 18px
}
.thanks p.thanks-text {
  font-weight: 700;
  color: #fcc41a;
}
.docs {
  word-break: break-word;
  padding: 80px 0;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 36px
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px
}
.docs li,
.docs p {
  color: inherit;
  line-height: 1.929
}
.docs a {
  text-decoration: none !important;
  color: #fcc41a;
  transition: 0.3s
}
.docs a:hover {
  color: #201a18
}