
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: Lora, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #313131;
  background: #fff;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.75; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
figure { margin: 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: Karla, Lato, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: 0.08em;
  font-weight: 400;
}

/* ===== QUICK SHOP (hidden) ===== */
.quick-shop-wrapper { display: none; }

/* ===== HEADER ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e8e0d8;
}

.header-tools-wrapper {
  padding: 0 20px;
  border-bottom: 1px solid #f0ebe4;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.aligned-left,
.aligned-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navigation-toggle {
  cursor: pointer;
  font-family: Karla, Lato, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #494245;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.navigation-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.navigation-toggle-icon::before,
.navigation-toggle-icon::after,
.nav-bar-mid {
  content: '';
  display: block;
  width: 100%;
  height: 1.5px;
  background: #494245;
}

.cart-count {
  font-family: Karla, Lato, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #494245;
}

.checkout-link {
  font-family: Karla, Lato, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #494245;
  display: none;
}

.search-form {
  display: flex;
  align-items: center;
  border: 1px solid #e0d8d0;
  border-radius: 2px;
  overflow: hidden;
}

.search-input {
  border: none;
  padding: 4px 8px;
  font-family: Karla, Lato, sans-serif;
  font-size: 0.75rem;
  color: #313131;
  outline: none;
  width: 120px;
  background: transparent;
}

.search-form input[type="submit"] {
  border: none;
  background: transparent;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 0.7rem;
  color: #494245;
  font-family: Karla, Lato, sans-serif;
  letter-spacing: 0.05em;
}

/* BRANDING */
.branding {
  text-align: center;
  padding: 14px 20px;
}

.branding h1,
.branding a {
  font-family: Karla, Lato, -apple-system, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #242424;
  font-weight: 400;
}

/* ===== NAVIGATION WRAPPER ===== */
.navigation-wrapper {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transition: left 0.3s ease;
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0,0,0,0.12);
  border-right: 1px solid #e8e0d8;
}

.navigation-wrapper.is-open {
  left: 0;
}

.navigation-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1999;
}

.navigation-overlay.is-open {
  display: block;
}

.navigation .branding {
  padding: 20px;
  border-bottom: 1px solid #e8e0d8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navigation .branding a {
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.navigation-close {
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navigation-close::before,
.navigation-close::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: #494245;
}

.navigation-close::before { transform: rotate(45deg); }
.navigation-close::after { transform: rotate(-45deg); }

.navigation > ul > li {
  border-bottom: 1px solid #f0ebe4;
}

.navigation > ul > li > a {
  display: block;
  padding: 14px 20px;
  font-family: Karla, Lato, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #313131;
}

.navigation > ul > li > a:hover {
  background: #faf7f4;
  opacity: 1;
}

.navigation ul ul {
  background: #faf7f4;
  display: none;
}

.navigation ul li.is-open ul {
  display: block;
}

.navigation ul ul li a {
  display: block;
  padding: 10px 32px;
  font-family: Karla, Lato, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #545454;
}

.navigation ul ul li a:hover {
  color: #115683;
  opacity: 1;
}

.enter-linklist {
  float: right;
  font-size: 0.7rem;
  color: #8a8a8a;
}

.mobile-link { display: none; }

.nav-cart-count {
  display: block;
  padding: 14px 20px;
  font-family: Karla, Lato, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-top: 1px solid #e8e0d8;
  color: #313131;
}

/* ===== DESKTOP NAV ===== */
@media (min-width: 1024px) {
  .main-header {
    border-bottom: none;
  }

  .navigation-wrapper {
    position: static;
    width: 100%;
    height: auto;
    background: #fff;
    z-index: 100;
    box-shadow: none;
    border-right: none;
    border-bottom: 1px solid #e8e0d8;
    overflow: visible;
  }

  .navigation-overlay { display: none !important; }

  .navigation .branding { display: none; }
  .mobile-link { display: none !important; }
  .nav-cart-count { display: none; }

  .navigation {
    max-width: 1200px;
    margin: 0 auto;
  }

  .navigation > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .navigation > ul > li {
    border-bottom: none;
    position: relative;
  }

  .navigation > ul > li > a {
    padding: 14px 16px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

  .navigation > ul > li > a:hover {
    background: transparent;
    color: #115683;
  }

  .navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e8e0d8;
    display: none;
    z-index: 500;
  }

  .navigation ul li:hover ul {
    display: block;
  }

  .navigation ul li.is-open ul {
    display: block;
  }

  .navigation ul ul li a {
    padding: 10px 16px;
    color: #313131;
    white-space: nowrap;
  }

  .navigation-toggle { display: none; }

  .back { display: none; }
}

/* ===== PAGE OFFSET ===== */
.page-offset {
  padding-top: 110px;
}

@media (min-width: 1024px) {
  .page-offset {
    padding-top: 130px;
  }
}

/* ===== HERO SLIDESHOW ===== */
.home-slideshow {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.slideshow-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-1 {
  background: linear-gradient(135deg, #c9b8aa 0%, #e8ddd4 30%, #d4c8bc 60%, #b8a898 100%);
  position: relative;
}

.slide-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(180,160,140,0.3) 0%, transparent 50%);
}

.slide-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.slide-hero-title {
  font-family: Karla, Lato, sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  margin-bottom: 12px;
}

.slide-hero-sub {
  font-family: Lora, serif;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  letter-spacing: 0.15em;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

/* Floral SVG decoration */
.floral-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floral-decor svg {
  position: absolute;
  opacity: 0.12;
}

.floral-left {
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 400px;
}

.floral-right {
  right: -40px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  width: 300px;
  height: 400px;
}

/* ===== MASONRY FEATURES ===== */
.masonry-features-wrapper {
  padding: 0;
}

.masonry-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.masonry-feature {
  position: relative;
  overflow: hidden;
  background: #e8ddd4;
}

.masonry-feature figure {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

/* Feature gradient backgrounds since images are missing */
.feature-1 { --fg: linear-gradient(135deg, #c4a882 0%, #d4b896 50%, #b89070 100%); }
.feature-2 { --fg: linear-gradient(135deg, #a8b4a0 0%, #c4d0bc 50%, #8a9882 100%); }
.feature-3 { --fg: linear-gradient(135deg, #d4b8c4 0%, #e8ccd8 50%, #c4a4b4 100%); }
.feature-4 { --fg: linear-gradient(135deg, #b4c4d4 0%, #c8d8e8 50%, #98b0c4 100%); }
.feature-5 { --fg: linear-gradient(135deg, #c8b490 0%, #dcc8a4 50%, #b49c74 100%); }
.feature-6 { --fg: linear-gradient(135deg, #b0a8b8 0%, #c8c0d0 50%, #989098 100%); }

.masonry-feature figure a,
.masonry-feature figure > div {
  display: block;
  width: 100%;
  height: 100%;
}

.masonry-feature-bg {
  width: 100%;
  height: 100%;
  background: var(--fg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.masonry-feature:hover .masonry-feature-bg {
  transform: scale(1.04);
}

.masonry-feature-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
  transition: background 0.3s ease;
}

.masonry-feature:hover .masonry-feature-bg::after {
  background: rgba(0,0,0,0.14);
}

/* Floral pattern overlay */
.masonry-feature-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.08) 0%, transparent 30%);
}

.masonry-feature-icon {
  position: relative;
  z-index: 1;
  opacity: 0.25;
}

.masonry-feature-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.45));
  text-align: center;
  z-index: 10;
}

.masonry-feature-title a {
  font-family: Karla, Lato, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
}

@media (min-width: 600px) {
  .masonry-features {
    grid-template-columns: 1fr 1fr;
  }
  .masonry-feature figure { height: 260px; }
}

@media (min-width: 1024px) {
  .masonry-features {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
  }
  .masonry-feature figure { height: 100%; }

  .feature-1 {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .feature-1 figure { height: 100%; }
}

/* ===== INTRODUCTION ===== */
.introduction-message-wrap {
  padding: 60px 20px;
  background: #fff;
}

.introduction-message {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.introduction-message h3 {
  font-family: Lora, serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.8;
  color: #494245;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ===== FEATURED PRODUCTS ===== */
.featured-products {
  padding: 40px 20px 60px;
  background: #faf7f4;
}

.section-title {
  text-align: center;
  font-family: Karla, Lato, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #494245;
  margin-bottom: 32px;
  font-weight: 400;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #c4a882;
  margin: 12px auto 0;
}

.featured-products-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .featured-products-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-list-item {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-list-item:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.product-list-item-thumbnail {
  position: relative;
  overflow: hidden;
  background: #e8ddd4;
  aspect-ratio: 1 / 1;
}

/* Product placeholder backgrounds */
#product-list-item-8658963521 .product-list-item-thumbnail {
  background: linear-gradient(145deg, #e8d4c0 0%, #d4b896 50%, #c4a07a 100%);
}

#product-list-item-5442291957920 .product-list-item-thumbnail {
  background: linear-gradient(145deg, #c4a880 0%, #b89060 50%, #a47840 100%);
}

#product-list-item-5442249687200 .product-list-item-thumbnail {
  background: linear-gradient(145deg, #c4784c 0%, #b0603a 50%, #9c4c28 100%);
}

#product-list-item-5442175697056 .product-list-item-thumbnail {
  background: linear-gradient(145deg, #e8c4d0 0%, #d4a4b8 50%, #c084a0 100%);
}

.product-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-thumb-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.product-thumb-placeholder svg {
  opacity: 0.2;
  width: 48px;
  height: 48px;
}

.quick-shop-modal-trigger {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(36,36,36,0.85);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-family: Karla, Lato, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.product-list-item:hover .quick-shop-modal-trigger {
  opacity: 1;
}

.product-list-item-details {
  padding: 14px 12px;
}

.product-list-item-title {
  font-family: Karla, Lato, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #313131;
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 1.4;
}

.product-list-item-price {
  font-family: Lora, serif;
  font-size: 0.9rem;
  color: #494245;
}

/* ===== INSTAGRAM WIDGET ===== */
.social-widget-wrapper {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

.instagram-follow {
  font-family: Karla, Lato, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #494245;
}

.instagram-follow a {
  color: #115683;
  font-weight: 500;
}

.instagram-follow a:hover {
  opacity: 0.75;
}

/* ===== FEATURED IN ===== */
.featuredin {
  padding: 50px 20px;
  background: #faf7f4;
  text-align: center;
  border-top: 1px solid #e8e0d8;
  border-bottom: 1px solid #e8e0d8;
}

.featuredin h3 {
  font-family: Karla, Lato, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 30px;
  font-weight: 400;
}

.featuredin-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 40px;
}

.publication-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  opacity: 0.55;
  transition: opacity 0.3s;
}

.publication-logo:hover { opacity: 0.85; }

.publication-logo span {
  font-family: Karla, Lato, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #494245;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid #c4b8a8;
  padding: 5px 14px;
  border-radius: 1px;
}

/* ===== MAIN CONTENT WRAPPER ===== */
.main-content {
  background: #fff;
}

/* ===== FOOTER ===== */
.main-footer {
  background: #242424;
  color: #c4b8a8;
}

.upper-footer {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 50px 30px;
}

@media (min-width: 768px) {
  .upper-footer {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand {
  grid-column: 1 / -1;
  text-align: center;
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: auto;
    text-align: left;
  }
}

.footer-brand-name {
  font-family: Karla, Lato, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #e8ddd4;
  font-weight: 400;
  margin-bottom: 12px;
}

.footer-brand-tagline {
  font-family: Lora, serif;
  font-style: italic;
  font-size: 0.85rem;
  color: #8a8a8a;
  line-height: 1.7;
}

.footer-linklist h4 {
  font-family: Karla, Lato, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8ddd4;
  margin-bottom: 16px;
  font-weight: 400;
}

.footer-linklist ul li {
  margin-bottom: 10px;
}

.footer-linklist ul li a {
  font-family: Karla, Lato, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8a8a;
  transition: color 0.2s;
}

.footer-linklist ul li a:hover {
  color: #c4b8a8;
  opacity: 1;
}

/* Social icons */
.social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Karla, Lato, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8a8a;
  transition: color 0.2s;
}

.social-icon:hover {
  color: #c4b8a8;
  opacity: 1;
}

.social-icon-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #54d6c3;
  flex-shrink: 0;
}

/* Sub footer */
.sub-footer {
  border-top: 1px solid #404040;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.payment-options {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  min-width: 36px;
  border: 1px solid #545454;
  border-radius: 3px;
  font-family: Karla, Lato, sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a8a8a;
  background: #313131;
  padding: 0 5px;
}

.payment-icon::after {
  display: block;
}

.american-express::after { content: 'AMEX'; }
.apple-pay::after { content: '⌘ Pay'; font-size: 0.55rem; }
.google-pay::after { content: 'G Pay'; }
.master::after { content: 'MC'; }
.paypal::after { content: 'PP'; }
.shopify-pay::after { content: 'Shop'; }
.unionpay::after { content: 'UP'; }
.visa::after { content: 'VISA'; font-size: 0.6rem; font-style: italic; color: #a8c0e8; }

.copyright-wrapper {
  text-align: right;
}

.copyright {
  font-family: Karla, Lato, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #626262;
}

.copyright a {
  color: #8a8a8a;
}

/* ===== MAIN CONTENT AREA ===== */
.main-content {
  min-height: 200px;
}

/* ===== UTILITY ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .sub-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .upper-footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1;
  }
}

/* ===== SCROLL FADE ANIMATION ===== */
.has-animation {
  animation: fadeInUp 0.6s ease both;
}

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

/* ===== DROPDOWN TOGGLE ===== */
.has-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.enter-linklist {
  margin-left: 8px;
}

/* Back button in mobile nav */
.back {
  display: block;
  padding: 10px 20px;
  font-family: Karla, Lato, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #8a8a8a;
  cursor: pointer;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .back { display: none; }
}
