@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;800&display=swap');

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

.site-body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

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

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

.loader-anim {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: #111827;
  animation: rotate-loader 1s ease-in-out infinite;
}

@keyframes rotate-loader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.top-bar {
  background-color: #111827;
  color: #d1d5db;
  text-align: center;
  padding: 10px 15px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.header-main {
  background-color: rgba(255, 255, 255, 0.98);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #f3f4f6;
  transition: box-shadow 0.3s ease;
}

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

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

.wrapper-slim {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-flex {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 90px;
}

.nav-left {
  display: flex;
  justify-content: flex-start;
}

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

.nav-right {
  display: flex;
  justify-content: flex-end;
}

.logo-link {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-highlight {
  color: #6b7280;
  font-weight: 400;
}

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

.menu-item {
  text-decoration: none;
  color: #4b5563;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
  position: relative;
  display: inline-block;
}

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

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

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

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #111827;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #111827;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

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

.btn-solid {
  display: inline-block;
  background: #111827;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: none;
  transition: background 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-solid:hover {
  background: #374151;
}

.btn-white {
  background: #ffffff;
  color: #111827;
}

.btn-white:hover {
  background: #f3f4f6;
}

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

/* Editorial Hero */
.editorial-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  background-color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-glass-box {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  padding: 60px;
  max-width: 700px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.hero-kicker {
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
}

.hero-heading {
  font-size: 3.5rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  margin: 0 0 20px 0;
  letter-spacing: -1.5px;
}

.hero-desc {
  font-size: 1.1rem;
  color: #4b5563;
  margin: 0 0 25px 0;
}

.hero-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 35px 0;
  letter-spacing: -1px;
}

.hero-price-light {
  color: #ffffff;
  margin-bottom: 30px;
}

/* Zigzag Features */
.editorial-split {
  padding: 120px 0;
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
}

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

.split-row-reverse .split-text {
  order: 2;
}

.split-row-reverse .split-img-box {
  order: 1;
}

.split-img-box {
  width: 100%;
  position: relative;
}

.split-img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.split-num {
  font-size: 1rem;
  font-weight: 700;
  color: #9ca3af;
  margin-bottom: 15px;
  display: block;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 10px;
  width: 50px;
}

.split-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.split-desc {
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0;
}

/* Bento Gallery */
.bento-section {
  padding: 100px 0;
  background-color: #f9fafb;
}

.section-title-center {
  text-align: center;
  margin-bottom: 80px;
}

.headline-large {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
  letter-spacing: -1px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  height: 600px;
}

.bento-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bento-item {
  position: relative;
  overflow: hidden;
  background: #fff;
  height: 100%;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover img {
  transform: scale(1.05);
}

.action-banner {
  padding: 120px 0;
  background-color: #111827;
  text-align: center;
}

.action-banner .headline-large {
  color: #ffffff;
  margin-bottom: 20px;
}

.action-banner .hero-desc {
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

/* Order Page - Minimalist Split */
.order-editorial-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.order-img-side {
  background-color: #f3f4f6;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.order-img-main {
  width: 100%;
  max-width: 500px;
  mix-blend-mode: multiply;
}

.order-thumb-row {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.order-thumb-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.1);
  transition: border 0.3s ease;
  background: #fff;
}

.thumb-active-new {
  border: 2px solid #111827;
}

.order-info-side {
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.order-info-brand {
  color: #6b7280;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
}

.order-info-title {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 30px 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.order-info-lbl {
  color: #9ca3af;
  font-size: 0.9rem;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.order-info-sub {
  font-size: 0.8rem;
  margin-top: -10px;
  margin-bottom: 25px;
  color: #6b7280;
}

.order-info-val {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 20px 0;
}

.availability-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 30px;
}

.green-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
}

.avail-text {
  color: #4b5563;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Typography utilities */
.page-pad {
  padding: 100px 0;
}

.txt-headline {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.txt-sub-headline {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 15px;
}

.txt-para {
  color: #4b5563;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.contact-card {
  background-color: #f9fafb;
  padding: 50px;
  border: 1px solid #e5e7eb;
  margin-top: 40px;
}

.contact-label {
  color: #6b7280;
  margin: 0 0 5px 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-value-large {
  color: #111827;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.contact-value {
  color: #111827;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-info-group {
  margin-bottom: 30px;
}

.contact-info-group-last {
  margin-bottom: 0;
}

.review-action-box {
  margin-top: 80px;
  text-align: center;
  background-color: #f9fafb;
  padding: 60px 40px;
  border: 1px solid #e5e7eb;
}

.review-action-title {
  color: #111827;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 20px 0;
}

.footer-area {
  background-color: #ffffff;
  padding: 80px 0 40px 0;
  border-top: 1px solid #f3f4f6;
}

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

.foot-desc {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 20px 0 0 0;
  line-height: 1.8;
}

.foot-col-head {
  font-weight: 700;
  color: #111827;
  font-size: 1rem;
  margin: 0 0 25px 0;
}

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

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

.foot-link:hover {
  color: #111827;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #f3f4f6;
  color: #9ca3af;
  font-size: 0.85rem;
}

.review-main-title {
  font-size: 3rem;
  margin-bottom: 40px;
  text-align: center;
}

.review-intro-para {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 60px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  padding: 30px;
  border-radius: 12px;
  z-index: 9999;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cookie-text {
  font-size: 0.9rem;
  color: #4b5563;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

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

.btn-cookie {
  padding: 12px 24px;
  font-size: 0.85rem;
}

.cookie-link {
  font-size: 0.85rem;
  color: #6b7280;
  text-decoration: underline;
}

.cookie-link:hover {
  color: #111827;
}

@media (max-width: 992px) {
  .nav-flex {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 15px 0;
    gap: 10px;
  }
  .nav-center {
    order: 1;
  }
  .nav-left {
    order: 2;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .nav-right {
    display: none;
  }
  .menu-list {
    gap: 20px;
  }
  .menu-item {
    font-size: 0.8rem;
  }
  .split-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-row-reverse .split-text {
    order: 1;
  }
  .split-row-reverse .split-img-box {
    order: 2;
  }
  .bento-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .order-editorial-wrap {
    grid-template-columns: 1fr;
  }
  .order-img-side {
    padding: 40px 20px;
  }
  .order-info-side {
    padding: 60px 20px;
  }
  .foot-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-glass-box {
    padding: 40px 20px;
  }
  .hero-heading {
    font-size: 2.5rem;
  }
  .wrapper {
    padding: 0 20px;
  }
  .txt-headline {
    font-size: 2rem;
  }
  .cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
  }
}
