/* CSS Variables - Matching React Nordic Light theme */
:root {
  /* Nordic Light - Scandinavian Serenity (HSL values) */
  --background: 40 30% 97%;
  --foreground: 220 20% 12%;
  --card: 40 25% 95%;
  --card-foreground: 220 20% 12%;
  --primary: 175 50% 28%;
  --primary-foreground: 40 30% 97%;
  --secondary: 35 30% 90%;
  --secondary-foreground: 220 20% 15%;
  --muted: 40 20% 92%;
  --muted-foreground: 220 15% 35%;
  --accent: 28 60% 55%;
  --accent-foreground: 40 30% 97%;
  --border: 40 20% 88%;
  --gold: 28 60% 55%;
  --gold-dark: 25 50% 40%;
  --gold-light: 35 55% 65%;
  --destructive: 0 72% 51%;
  --ring: 175 45% 35%;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
/* Prevent anchor links from sitting under the fixed header */
section[id],
main[id] {
  scroll-margin-top: 90px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Accessible, premium-looking focus ring */
:focus-visible {
  outline: 3px solid hsla(var(--gold), 0.55);
  outline-offset: 3px;
  border-radius: 0.5rem;
}

/* Remove focus ring when not keyboard navigating */
:focus:not(:focus-visible) {
  outline: none;
}

button {
  font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, hsl(var(--gold)), hsl(var(--gold-dark)));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 20px hsla(var(--gold), 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212, 162, 77, 0.5);
}

.btn-gold:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-gold-outline {
  background: transparent;
  color: hsl(var(--gold));
  border: 1px solid hsl(var(--gold));
}

.btn-gold-outline:hover {
  background: hsla(var(--gold), 0.1);
}

.btn-outline {
  background: transparent;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}

.btn-outline:hover {
  background: hsl(var(--accent));
  border-color: hsl(var(--gold));
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: hsla(var(--background), 0.95);
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.85;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.875rem;
  }
}

.logo-gold {
  color: hsl(var(--gold));
}
.logo-hot {
  color: hsl(var(--foreground));
}

.logo-haus {
  color: hsl(var(--gold));
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  padding: 0.5rem 0;
  transition: color 0.25s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    hsl(var(--gold)),
    transparent
  );
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 120%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


.cart-button {
  position: relative;
  padding: 0.65rem;
  background: rgba(0,0,0,0.04);
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}

.cart-button:hover {
  background: rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: hsl(var(--gold));
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: flex;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  border-radius: 0.375rem;
}

.mobile-menu-toggle:hover {
  background: hsla(var(--foreground), 0.1);
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem;
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-link {
  padding: 0.75rem 0;
  border-bottom: 1px solid hsl(var(--border));
}

.nav-mobile .nav-link::after {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.55) 100%
  ); */
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 1024px;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(var(--gold), 0.2);
  color: hsl(var(--gold));
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease-out;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  animation: fadeUp 0.6s ease-out 0.2s both;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, hsl(var(--gold)) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease-out 0.3s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.scroll-indicator a:hover {
  color: hsl(var(--gold));
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Sections */
.section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.section-alt {
  background: hsl(var(--card));
}
.hero .btn-outline {
  color: #ffffff;
  border-color: rgba(255,255,255,0.55);
}

.hero .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: hsla(var(--primary), 0.15);
  color: hsl(var(--primary));
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.section-subtitle {
  color: hsl(var(--muted-foreground));
}
.section-divider {
  height: 1px;
  max-width: 640px;
  margin: 5rem auto;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(var(--gold), 0.25),
    transparent
  );
}

/* Product Grid */
.product-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .product-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Product Card */
.product-card {
  background: linear-gradient(135deg, hsl(var(--card)), hsla(var(--card), 0.5));
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  border-color: hsla(var(--gold), 0.35);
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}
.product-card-image {
  position: relative;
  aspect-ratio: 4 / 3;   /* wide product layout */
  background: hsl(var(--background));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  overflow: hidden;
}


.product-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}
.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease;
}
.layout-2m {
  object-fit: cover !important;
  transform: scale(1.2);
}

.product-image-wrapper .hover-img {
  opacity: 0;
}

.product-card:hover .hover-img {
  opacity: 1;
}

.product-card:hover .primary-img {
  opacity: 0;
}

.product-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(var(--background), 0.8), transparent);
}
.product-grid-2 {
  align-items: stretch;
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}




.product-card-image-content {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 1;
}

.product-card .category-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background: hsla(var(--primary), 0.15);
  color: hsl(var(--primary));
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-card h3 {
  font-size: 1.5rem;
}

.product-card-content {
  padding: 1.5rem;
}

.product-card-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}
/* PREMIUM DELUXE CARD */

.product-card-premium {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
}

.product-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-color: hsl(var(--gold));
}

/* Premium Image */
.product-card-premium .premium-image {
  aspect-ratio: auto;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    hsl(var(--background)),
    hsl(var(--secondary))
  );
}

/* Premium Content */
.product-card-premium .premium-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.premium-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: hsl(var(--gold));
  margin-bottom: 1rem;
}

.premium-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .product-card-premium {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .product-card-premium .premium-content {
    padding: 2rem;
  }

  .premium-title {
    font-size: 2rem;
  }
}

.product-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: hsl(var(--primary));
}

.view-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--gold));
  font-weight: 500;
  font-size: 0.875rem;
  transition: gap 0.2s;
}

.product-card:hover .view-details {
  gap: 0.75rem;
}

/* Cart Drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: hsla(var(--background), 0.8);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 448px;
  height: 100vh;
  background: hsl(var(--card));
  border-left: 1px solid hsl(var(--border));
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
}

.cart-header h2 {
  font-size: 1.5rem;
}

.cart-close {
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 0.375rem;
}

.cart-close:hover {
  color: hsl(var(--gold));
  background: hsla(var(--foreground), 0.1);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.cart-empty-icon {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.cart-empty-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.cart-empty-subtitle {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.cart-item {
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background: hsla(var(--background), 0.5);
  margin-bottom: 1rem;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.cart-item-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cart-item-base-price {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.cart-item-remove {
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: color 0.2s;
  border-radius: 0.25rem;
}

.cart-item-remove:hover {
  color: hsl(var(--destructive));
}

.cart-item-upgrades {
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  border-left: 2px solid hsla(var(--primary), 0.3);
}

.cart-item-upgrades-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.cart-item-upgrade {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.cart-item-upgrade .upgrade-price {
  color: hsl(var(--primary));
}

.cart-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.375rem;
  padding: 0.25rem;
}

.cart-item-qty button {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: hsl(var(--foreground));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  transition: background 0.2s;
}

.cart-item-qty button:hover {
  background: hsl(var(--accent));
}

.cart-item-qty span {
  min-width: 32px;
  text-align: center;
  font-weight: 500;
}

.cart-item-total {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  color: hsl(var(--primary));
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid hsl(var(--border));
  background: hsla(var(--background), 0.5);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.cart-total span:last-child {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: hsl(var(--primary));
}

.cart-checkout-btn {
  width: 100%;
}

/* Footer */
.footer {
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.footer-links h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links a,
.footer-links span {
  display: block;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: hsl(var(--gold));
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.footer-contact .contact-item svg {
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Order Modal */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  background: hsla(var(--background), 0.9);
  backdrop-filter: blur(4px);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.order-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.order-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: calc(100% - 2rem);
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  background: hsl(var(--card));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 301;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.order-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.order-modal-header {
  position: sticky;
  top: 0;
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.order-modal-header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.order-modal-header h2 {
  font-size: 1.5rem;
}

.order-back-btn,
.order-close-btn {
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.order-back-btn:hover,
.order-close-btn:hover {
  background: hsla(var(--foreground), 0.1);
}

.order-modal-content {
  padding: 1.5rem;
}

/* Order Summary */
.order-summary {
  padding: 1rem;
  border-radius: 0.5rem;
  background: hsla(var(--background), 0.5);
  border: 1px solid hsl(var(--border));
  margin-bottom: 1.5rem;
}

.order-summary h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.order-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.order-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.order-item-upgrades {
  color: hsl(var(--muted-foreground));
}

.order-item-price {
  color: hsl(var(--primary));
}

.order-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
  font-weight: 500;
}

.order-total-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: hsl(var(--primary));
}

/* Payment Methods */
.payment-methods h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .payment-options {
    grid-template-columns: 1fr 1fr;
  }
}

.payment-option {
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid hsl(var(--border));
  background: hsla(var(--background), 0.5);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
}

.payment-option:hover {
  border-color: hsla(var(--gold), 0.5);
  background: hsla(var(--gold), 0.05);
}

.payment-option svg {
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
}

.payment-option:hover svg {
  color: hsl(var(--gold));
}

.payment-option h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.payment-option p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Forms */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.label-hint {
  font-weight: 400;
  color: hsl(var(--muted-foreground));
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

.form-hint {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.bank-transfer-form h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
  margin-top: 1rem;
}

/* Order Success */
.order-success {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: hsla(var(--primary), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  color: hsl(var(--primary));
}

.order-success h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.order-success p {
  color: hsl(var(--muted-foreground));
}

/* Product Detail Page */
.product-detail-page {
  padding-top: 6rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 2rem;
  padding: 0.5rem;
  margin-left: -0.5rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
}

.back-button:hover {
  color: hsl(var(--gold));
  background: hsla(var(--foreground), 0.05);
}

.product-detail-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Image Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image-container {
  position: relative;
  aspect-ratio: 4 / 3; /* or 16 / 10 */
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
}

.main-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsla(var(--background), 0.8);
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.gallery-nav:hover {
  background: hsl(var(--background));
  border-color: hsl(var(--gold));
}

.gallery-nav-prev {
  left: 1rem;
}

.gallery-nav-next {
  right: 1rem;
}

.thumbnail-strip {
  display: flex;
  gap: 0.75rem;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid hsl(var(--border));
  cursor: pointer;
  transition: border-color 0.2s;
  padding: 0;
  background: none;
}

.thumbnail:hover {
  border-color: hsla(var(--gold), 0.5);
}

.thumbnail.active {
  border-color: hsl(var(--primary));
}

.thumbnail img {
  object-fit: contain;
}

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-category-tag {
  display: inline-block;
  width: fit-content;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: hsla(var(--primary), 0.15);
  color: hsl(var(--primary));
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-title {
  font-size: clamp(2rem, 5vw, 3rem);
}

.product-description {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
}

.features-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.features-heading {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
}

.feature-check {
  color: hsl(var(--primary));
  flex-shrink: 0;
}

/* Upgrades Section */
.upgrades-section {
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.upgrades-heading {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.upgrades-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.upgrade-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
  color: hsl(var(--foreground));
}

.upgrade-option:hover:not(.disabled) {
  border-color: hsla(var(--gold), 0.5);
}

.upgrade-option.selected {
  border-color: hsl(var(--primary));
  background: hsla(var(--primary), 0.1);
}

.upgrade-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: hsla(var(--muted), 0.5);
}

.upgrade-checkbox {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid hsl(var(--muted-foreground));
  transition: all 0.2s;
}

.upgrade-checkbox.checkbox {
  border-radius: 0.25rem;
}

.upgrade-checkbox.radio {
  border-radius: 50%;
}

.upgrade-option.selected .upgrade-checkbox {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

.upgrade-checkbox svg {
  color: hsl(var(--primary-foreground));
}

.radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(var(--primary-foreground));
}

.upgrade-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-left: 0.75rem;
}

.upgrade-name {
  font-weight: 500;
}

.upgrade-hint {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.upgrade-price {
  font-weight: 500;
  color: hsl(var(--primary));
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Purchase Section */
.purchase-section {
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-display {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.total-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  color: hsl(var(--primary));
}

.price-breakdown {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.add-to-cart-btn {
  width: 100%;
}

/* Not Found */
.not-found {
  text-align: center;
  padding: 4rem;
  grid-column: 1 / -1;
}

.not-found h1 {
  margin-bottom: 1.5rem;
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* --- HERO TITLE FINAL OVERRIDE FIX --- */
.hero .hero-title {
  color: #ffffff !important;
}

.hero .hero-subtitle {
  color: rgba(255,255,255,0.92) !important;
}
.bespoke-box {
  background: linear-gradient(
    135deg,
    rgba(212,162,77,0.08),
    rgba(212,162,77,0.02)
  );
  border: 1px solid rgba(212,162,77,0.25);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  margin-top: 2rem;
}

.bespoke-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.bespoke-box p {
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
}
.product-card-premium {
  background: linear-gradient(
    135deg,
    hsl(var(--card)),
    hsla(var(--gold), 0.05)
  );
}
/* ===== INSTALLATION GALLERY ===== */

.installation-slider {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 4rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 600px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slider-image.active {
  opacity: 1;
  position: relative;
}

.installation-description {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.installation-description h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.installation-description p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
/* ===== GALLERY LAYOUT UPGRADE ===== */

.gallery-section {
  padding: 4rem 0 5rem;
}

.gallery-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}



/* Content Panel */
.installation-content {
  background: linear-gradient(
    135deg,
    hsl(var(--card)),
    hsla(var(--gold), 0.04)
  );
  padding: 3rem;
  border-radius: 1.2rem;
  border: 1px solid hsl(var(--border));
}

.installation-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.installation-content p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

/* Bottom image strip */
.gallery-bottom {
  padding: 0 0 6rem;
}

.gallery-images {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .gallery-images {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-images img {
  border-radius: 1rem;
  height: 300px;
  width: 100%;
  object-fit: cover;
  border: 1px solid hsl(var(--border));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-images img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
/* ===== GALLERY CLEAN PREMIUM VERSION ===== */

.gallery-section {
  padding: 2rem 0 4rem;
}

.gallery-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* Slider */
.installation-slider {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.slider-image.active {
  opacity: 1;
  position: relative;
}

/* Content */
.installation-content {
  padding: 2.5rem;
  border-radius: 1.2rem;
  background: linear-gradient(
    135deg,
    hsl(var(--card)),
    hsla(var(--gold), 0.04)
  );
  border: 1px solid hsl(var(--border));
}

.installation-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.installation-content p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  line-height: 1.8;
}
/* ===== PREMIUM SHOWCASE PAGE ===== */

.showcase-page {
  padding-top: 6rem;
}

.showcase-gallery {
  width: 100%;
}

.showcase-item {
  width: 100%;
}

.showcase-item img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  display: block;
}

.showcase-text-block {
  padding: 6rem 0;
}

.showcase-text-block.alt {
  background: hsl(var(--card));
}

.narrow {
  max-width: 760px;
  margin: 0 auto;
}

.showcase-text-block h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.showcase-text-block p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.25rem;
  line-height: 1.9;
  font-size: 1.05rem;
}
/* ===== PREMIUM SHOWCASE SLIDER ===== */

.showcase-page {
  padding-top: 6rem;
}

.showcase-hero {
  position: relative;
  height: 92vh;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
}

.slide-content {
  position: absolute;
  bottom: 10%;
  left: 8%;
  max-width: 600px;
  color: white;
  z-index: 3;
}

.slide-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 2rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.3);
}

.slider-btn.prev { left: 30px; }
.slider-btn.next { right: 30px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: white;
}
/* ===== PARTNERSHIPS WITH IMAGE ===== */

.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.partnership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.partnership-content {
  text-align: left;
}

@media (max-width: 900px) {
  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .partnership-content {
    text-align: left;
  }
}
/* ===== PREMIUM PARTNERSHIP SECTION (Refined Scale) ===== */

.partnership-section {
  padding: 6rem 0; /* reduced from 8rem */
  background: linear-gradient(
    180deg,
    hsl(var(--card)),
    hsl(var(--background))
  );
}

.partnership-container {
  max-width: 1400px; /* slightly tighter */
}

.partnership-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem; /* reduced gap */
  align-items: center;
}

.partnership-image {
  position: relative;
}

.partnership-image img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.partnership-image img:hover {
  transform: translateY(-6px);
  box-shadow:
    0 15px 35px rgba(0,0,0,0.1),
    0 40px 100px rgba(0,0,0,0.18);
}
/* Kerry badge */
.installation-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.partnership-title {
  font-size: clamp(2rem, 4vw, 2.8rem); /* smaller headline */
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.partnership-lead {
  font-size: 1.1rem; /* slightly reduced */
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.partnership-text {
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin-bottom: 1.75rem;
  font-size: 1rem;
}

.partnership-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.partnership-features .feature-item {
  font-size: 0.95rem;
}

.partnership-actions {
  margin-top: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .partnership-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .partnership-image img {
    height: 420px;
  }
}
/* Toast notification */

#toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.toast {
  background: #1a1a1a;
  color: white;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(10px);
  animation: toast-in 0.25s ease forwards;
}

@keyframes toast-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.klarna-finance{
  margin-top:6px;
  font-size:14px;
  color:#666;
}

.klarna-finance strong{
  color:#000;
  font-weight:600;
}
@media (max-width: 768px) {
  .product-card-premium .product-card-image,
  .product-card-premium .premium-image {
    min-height: 260px;
  }

  .product-card-premium .product-image-wrapper img,
  .product-card-premium .product-card-image img {
    object-fit: cover;
  }
}