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

.doc-root {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: #fdfbf7;
}

.site-body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  background-color: #fdfbf7;
  color: #1a1a1a;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin: 0;
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fdfbf7;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.8s ease-out;
}

.loader-hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c5a059;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* Top Bar */
.top-bar {
  background-color: #1a1a1a;
  color: #fdfbf7;
  text-align: center;
  padding: 8px 15px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}

/* Header */
.header-main {
  background-color: rgba(253, 251, 247, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(26,26,26,0.05);
  transition: all 0.3s ease;
}

.header-scrolled {
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.wrapper-slim {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.logo-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo-highlight {
  color: #c5a059;
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 45px;
}

.menu-item {
  text-decoration: none;
  color: #555555;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.menu-item:hover {
  color: #c5a059;
}

.menu-item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #c5a059;
  transition: width 0.3s ease;
}

.menu-item:hover::after {
  width: 100%;
}

/* Buttons */
.btn-gold {
  display: inline-block;
  background-color: #c5a059;
  color: #ffffff;
  padding: 16px 36px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-gold:hover {
  background-color: #1a1a1a;
}

.btn-dark {
  display: inline-block;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 16px 36px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-dark:hover {
  background-color: #c5a059;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.75rem;
}

.btn-block {
  width: 100%;
  box-sizing: border-box;
}

/* Luxury Split Hero */
.lux-hero {
  display: flex;
  min-height: 85vh;
  background-color: #fdfbf7;
}

.lux-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
}

.lux-kicker {
  color: #c5a059;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: block;
}

.lux-title {
  font-size: 4.5rem;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.lux-desc {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 20px;
  max-width: 500px;
}

.lux-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 35px;
  line-height: 1;
}

.lux-price-light {
  color: #ffffff;
  margin-bottom: 35px;
}

.lux-price-review {
  margin-bottom: 25px;
}

.lux-hero-img-box {
  flex: 1;
  position: relative;
}

.lux-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lookbook Features */
.lookbook-section {
  padding: 150px 0;
  background-color: #ffffff;
}

.lb-header {
  margin-bottom: 100px;
}

.lb-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 150px;
}

.lb-row:last-child {
  margin-bottom: 0;
}

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

.lb-img-wrap {
  flex: 1;
  position: relative;
}

.lb-img {
  width: 100%;
  display: block;
}

.lb-img-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid #c5a059;
  z-index: -1;
}

.lb-row-reverse .lb-img-accent {
  left: 20px;
}

.lb-text-wrap {
  flex: 1;
  padding: 0 50px;
}

.lb-title {
  font-size: 3rem;
  margin-bottom: 25px;
}

.lb-desc {
  color: #555555;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Action Banner */
.lux-action {
  background-color: #1a1a1a;
  padding: 120px 0;
  text-align: center;
}

.lux-action-title {
  color: #ffffff;
  font-size: 3.5rem;
  margin-bottom: 25px;
}

.lux-action-desc {
  color: #cccccc;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

/* Order Page Styling */
.shop-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

.shop-gallery {
  padding: 80px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(0,0,0,0.05);
}

.shop-main-img {
  width: 100%;
  max-width: 600px;
  margin-bottom: 40px;
}

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

.shop-thumb-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border 0.3s ease;
}

.thumb-active {
  border: 1px solid #c5a059;
}

.shop-info {
  padding: 80px 10%;
  background-color: #fdfbf7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-brand {
  font-size: 0.9rem;
  color: #c5a059;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.shop-title {
  font-size: 3.5rem;
  margin-bottom: 30px;
  line-height: 1.1;
}

.shop-price-box {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.shop-price-lbl {
  font-size: 0.8rem;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.shop-price-val {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin: 0 0 10px 0;
}

.shop-sub-lbl {
  font-size: 0.85rem;
  color: #888888;
  margin: 0;
}

/* Utilities */
.page-pad {
  padding: 120px 0;
}

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

.title-large {
  font-size: 3.5rem;
  margin-bottom: 40px;
}

.title-medium {
  font-size: 2rem;
  margin-top: 60px;
  margin-bottom: 25px;
}

.title-medium-first {
  margin-top: 0;
}

.body-text {
  font-size: 1.15rem;
  color: #444444;
  margin-bottom: 25px;
}

.review-action-box {
  margin-top: 80px;
}

.review-action-title {
  margin-bottom: 25px;
}

.contact-box {
  background-color: #ffffff;
  padding: 60px;
  border: 1px solid rgba(0,0,0,0.05);
  margin-top: 60px;
}

.contact-lbl {
  font-size: 0.8rem;
  color: #c5a059;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.contact-val {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.contact-lnk {
  color: inherit;
  text-decoration: none;
}

.contact-val-last {
  margin-bottom: 0;
}

.contact-val:last-child {
  margin-bottom: 0;
}

.legal-box {
  background-color: #ffffff;
  padding: 60px;
  border: 1px solid rgba(0,0,0,0.05);
}

/* Footer */
.footer-lux {
  background-color: #fdfbf7;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}

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

.foot-desc {
  color: #555555;
  font-size: 0.95rem;
  margin-top: 25px;
  line-height: 1.8;
}

.foot-title {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.foot-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.foot-lnk {
  color: #555555;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.foot-lnk:hover {
  color: #c5a059;
}

.foot-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
  color: #888888;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.foot-base .foot-lnk {
  text-transform: lowercase;
}

/* Cookie Banner */
.lux-cookie {
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-width: 400px;
  background-color: #1a1a1a;
  padding: 40px;
  z-index: 9999;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.lux-cookie.show {
  transform: translateY(0);
  opacity: 1;
}

.lux-cookie-txt {
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.lux-cookie-acts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lux-cookie-lnk {
  color: #c5a059;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.lux-cookie-lnk:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-flex {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
    gap: 20px;
  }
  .nav-center {
    order: 1;
  }
  .nav-left {
    order: 2;
  }
  .nav-right {
    display: none;
  }
  .lux-hero {
    flex-direction: column;
  }
  .lux-hero-img-box {
    min-height: 400px;
  }
  .lux-hero-text {
    padding: 60px 30px;
    text-align: center;
  }
  .lb-row, .lb-row-reverse {
    flex-direction: column;
    gap: 40px;
  }
  .lb-text-wrap {
    padding: 0 20px;
    text-align: center;
  }
  .shop-wrap {
    grid-template-columns: 1fr;
  }
  .shop-gallery {
    padding: 40px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .shop-info {
    padding: 60px 20px;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .lux-title {
    font-size: 3rem;
  }
  .lb-title {
    font-size: 2.2rem;
  }
  .shop-title {
    font-size: 2.5rem;
  }
  .title-large {
    font-size: 2.5rem;
  }
  .lux-action-title {
    font-size: 2.5rem;
  }
  .wrapper {
    padding: 0 20px;
  }
  .lux-cookie {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
  }
}
