@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* RESET & BASE USING CLASSES ONLY */
.html-root {
  font-family: 'Montserrat', sans-serif;
  color: #1a1a1a;
  background-color: #faf9f6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.body-root {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.box-sizing-reset {
  box-sizing: border-box;
}

.box-sizing-reset * {
  box-sizing: border-box;
}

.text-reset {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

/* TYPOGRAPHY */
.heading-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #2c1e16;
}

.text-cognac {
  color: #b35928; /* Cognac accent color */
}

.text-light {
  color: #8c8c8c;
}

.text-center {
  text-align: center;
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.flex-row {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-between {
  justify-content: space-between;
}

.flex-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.wrap {
  flex-wrap: wrap;
}

.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.gap-40 { gap: 40px; }

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.bg-white {
  background-color: #ffffff;
}

.bg-dark {
  background-color: #1a1a1a;
  color: #ffffff;
}

.bg-dark .heading-brand {
  color: #ffffff;
}

.bg-dark .heading-brand.text-cognac {
  color: #b35928;
}

.bg-dark .spec-desc {
  color: #cccccc;
}

.bg-cream {
  background-color: #f4eee8;
}

/* NAVIGATION */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(179, 89, 40, 0.1);
  transition: all 0.3s ease;
}

.header-scrolled {
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.brand-logo {
  font-size: 28px;
  letter-spacing: 1px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link-item {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link-item:hover {
  color: #b35928;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  border-radius: 2px;
}

.btn-primary {
  background-color: #b35928;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #8c421c;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(179, 89, 40, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: #2c1e16;
  border: 1px solid #2c1e16;
}

.btn-outline:hover {
  background-color: #2c1e16;
  color: #ffffff;
}

.btn-block {
  display: block;
  width: 100%;
}

/* HERO SECTION */
.hero-section {
  padding-top: 150px;
  padding-bottom: 80px;
  background-color: #faf9f6;
}

.hero-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-content {
  flex: 1;
  max-width: 500px;
}

.hero-kicker {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #b35928;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 25px;
}

.hero-subtitle {
  font-size: 18px;
  color: #666666;
  margin-bottom: 35px;
}

.price-tag {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #2c1e16;
  margin-bottom: 30px;
}

.hero-image-wrap {
  flex: 1;
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* GALLERY */
.gallery-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-title {
  font-size: 42px;
  margin-top: 0;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  color: #666666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 400px;
  gap: 20px;
}

.grid-img-large {
  grid-column: 1 / -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.grid-img-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* FEATURE SECTION */
.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.feature-row-reverse {
  flex-direction: row-reverse;
}

.feature-text-box {
  flex: 1;
}

.feature-img-box {
  flex: 1;
}

.feature-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.feature-title {
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 20px;
}

.feature-desc {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
}

/* SPECS & ICONS */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  padding-top: 60px;
}

.spec-icon {
  font-size: 40px;
  color: #b35928;
  margin-bottom: 20px;
}

.spec-title {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
}

.spec-desc {
  font-size: 14px;
  color: #666666;
}

/* REVIEW PAGE */
.review-page-top {
  padding-top: 160px;
  padding-bottom: 60px;
}

.review-hero-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.review-content-wrap {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.review-main-img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 40px;
}

.review-paragraph {
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.review-highlight {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: #b35928;
  text-align: center;
  padding: 40px;
  margin: 40px 0;
  background-color: #f4eee8;
  border-radius: 4px;
}

.review-subheading {
  font-size: 28px;
  margin-top: 50px;
  margin-bottom: 20px;
}

/* SHOP PAGE */
.shop-wrap {
  display: flex;
  gap: 60px;
  padding-top: 160px;
  padding-bottom: 80px;
}

.shop-gallery {
  flex: 1;
}

.shop-main-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.shop-thumbs {
  display: flex;
  gap: 15px;
}

.shop-thumb-item {
  width: calc(25% - 11.25px);
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.shop-thumb-item-active, .shop-thumb-item:hover {
  opacity: 1;
  border-color: #b35928;
}

.shop-details {
  flex: 1;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.shop-brand-name {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b35928;
  margin-bottom: 15px;
}

.shop-product-title {
  font-size: 42px;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 25px;
}

.shop-product-desc {
  font-size: 16px;
  color: #666666;
  margin-bottom: 40px;
}

.shop-price-area {
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
  margin-bottom: 30px;
}

.shop-price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888888;
  margin-bottom: 5px;
  display: block;
}

.shop-price-value {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #2c1e16;
  margin-top: 0;
  margin-bottom: 10px;
}

/* FOOTER */
.site-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 15px;
  display: block;
}

.footer-owner {
  font-size: 13px;
  color: #888888;
  margin-bottom: 20px;
  display: block;
}

.footer-text-desc {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.8;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 25px;
  color: #ffffff;
}

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

.footer-link-item {
  margin-bottom: 15px;
}

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #b35928;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #888888;
}

/* PRELOADER */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #faf9f6;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.loader-circle {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(179, 89, 40, 0.2);
  border-top-color: #b35928;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  z-index: 9998;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner-visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 13px;
  color: #666666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.cookie-link {
  color: #b35928;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-wrap, .feature-row, .shop-wrap {
    flex-direction: column;
  }
  .image-grid {
    grid-auto-rows: 250px;
  }
  .specs-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 42px;
  }
  .header-nav .nav-links {
    display: none; /* simple mobile view */
  }
}
