@font-face {
    font-family: 'MonotionLuxury';
    src: url('assets/fonts/PERTIBD.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Mobile Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    /* Prevent zoom on input focus in iOS Safari */
    input, textarea, select {
        font-size: 16px !important;
    }
    
    /* Fix for iOS Safari button styling */
    button, .lux-icon-btn {
        -webkit-appearance: none;
        -webkit-tap-highlight-color: transparent;
        background: transparent;
        border: none;
        outline: none;
    }
    
    /* Prevent horizontal scrolling and zoom issues */
    html, body {
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
        overflow-x: hidden;
    }
}

body {
    font-family: 'Perpetua', serif;
    background: #fff;
    color: #181818;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    letter-spacing: 0.02em;
    font-weight: 100 !important;
    font-size: 1.15em;
    /* Prevent horizontal scroll on mobile */
    overflow-x: hidden;
    width: 100%;
}
.lux-about, .lux-about-title, .lux-about-desc,
.lux-info-links h2, .lux-link, .lux-footer-inner, .lux-menu-link {
    font-weight: 100 !important;
    font-family: 'Perpetua', serif;
}

.lux-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 110px;
    box-sizing: border-box;
    background: #fff;
    border-bottom: 1px solid #ececec;
    position: relative;
    top: 0;
    z-index: 100;
    font-family: 'Perpetua', serif;
}
.lux-nav-left, .lux-nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
    z-index: 3;
}
.lux-logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    height: 100%;
    margin: 0 auto;
    width: max-content;
    z-index: 2;
    font-family: 'Perpetua', serif;
}
.lux-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: height 0.2s;
    display: block;
    margin: 0 auto;
    font-family: 'Perpetua', serif;
}
.lux-icon-btn {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Perpetua', serif;
    /* Prevent Safari from applying default button styles */
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    color: inherit;
}
.lux-icon-btn:hover {
    background: #f5f5f5;
}
.lux-currency {
    font-size: 1.2em;
    font-family: 'Perpetua', serif;
    font-weight: bold;
}

.lux-hero {
    width: 100vw;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7f7f7;
    min-height: calc(100vh - 120px);
    border-bottom: 1px solid #ececec;
    margin-bottom: 0;
    position: relative;
    padding-top: 40px;
    margin-left: 0;
    margin-right: 0;
}
.lux-hero-img {
    display: block;
    max-width: 60vw;
    max-height: 60vh;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    opacity: 0.98;
    border-radius: 0;
}

.lux-info {
    width: 100vw;
    max-width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4vw 24px 4vw;
    border-bottom: 1px solid #ececec;
    position: relative;
}
.lux-info-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    max-width: 220px;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 20px;
}
.lux-info-links h2 {
    font-family: 'Perpetua', serif;
    font-size: 1.1em;
    font-weight: 300 !important;
    letter-spacing: 0.08em;
    color: #181818;
    margin-bottom: 0;
    margin-top: 0;
}
.lux-link {
    color: #181818;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 300 !important;
    letter-spacing: 0.04em;
    padding: 1px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-bottom 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.lux-link:hover {
    color: #a88c5d;
    border-bottom: 1px solid #a88c5d;
}
.lux-instagram svg {
    margin-right: 4px;
}
.lux-instagram {
    margin-top: 22px !important;
}

.lux-footer {
    width: 100vw;
    background: #fff;
    border-top: 1px solid #ececec;
    padding: 32px 0 24px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.lux-footer-inner {
    font-size: 1em;
    color: #888;
    font-family: 'Perpetua', serif;
    letter-spacing: 0.04em;
    margin-right: 6vw;
    font-weight: 300 !important;
}

.lux-menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.lux-menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.lux-menu-overlay.show ~ body,
body.menu-open {
    overflow: hidden;
}
.lux-side-menu {
    position: fixed;
    top: 0; left: 0;
    width: 320px;
    height: 100vh;
    background: #fff;
    color: #181818;
    font-family: 'Perpetua', serif;
    font-size: 1.1em;
    z-index: 300;
    transform: translateX(-100%);
    transition: transform 0.3s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    padding: 48px 36px 36px 36px;
    border-radius: 18px;
    border: 2px solid #181818;
    overflow: visible;
}
.lux-side-menu.open {
    transform: translateX(0);
}
.lux-side-menu::before {
    display: none !important;
}
.lux-menu-close {
    background: none;
    border: none;
    color: #181818;
    font-size: 2em;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 32px;
    font-family: inherit;
    z-index: 2;
}
.lux-side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.lux-menu-link {
    color: #181818;
    text-decoration: none;
    font-size: 1.18em;
    letter-spacing: 0.08em;
    transition: color 0.2s;
    font-weight: 100 !important;
    background: rgba(0,0,0,0.01);
    padding: 8px 32px;
    border-radius: 8px;
    box-shadow: 0 1px 0 0 #ececec;
    text-align: center;
    font-family: 'Perpetua', serif;
    /* Prevent Safari from applying default link styles */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
.lux-menu-link:hover, .lux-menu-link:focus {
    color: #a88c5d;
    background: #f7f7f7;
    outline: none;
    box-shadow: 0 2px 8px 0 #ececec;
}

.lux-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 2vw;
    text-align: center;
    margin-bottom: 40px;
}
.lux-about-title {
    font-family: 'Perpetua', serif;
    font-size: 2.2em;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: #181818;
    margin-bottom: 24px;
    margin-top: 0;
}
.lux-about-desc {
    font-family: 'Perpetua', serif;
    font-size: 1.18em;
    font-weight: 300;
    color: #444;
    max-width: 540px;
    line-height: 1.7;
    letter-spacing: 0.04em;
    margin: 0 auto;
    opacity: 0.92;
}

.lux-about-frame {
  border: 2px solid #a88c5d;
  border-radius: 18px;
  padding: 24px 20px;
  background: #fff;
  box-shadow: 0 4px 32px rgba(168, 140, 93, 0.08);
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 60px;
  width: 90%;
  max-width: 600px;
}

/* Compact text styling for terms and privacy pages */
.lux-about-frame h1 {
  margin-bottom: 0.8em !important;
  font-weight: 300 !important;
  font-size: 1.8em !important;
  letter-spacing: 0.02em !important;
}

.lux-about-frame h2 {
  margin-top: 1.2em !important;
  margin-bottom: 0.6em !important;
  font-weight: 300 !important;
  font-size: 1.2em !important;
  letter-spacing: 0.01em !important;
}

.lux-about-frame p {
  margin-bottom: 0.8em !important;
  line-height: 1.4 !important;
  font-weight: 300 !important;
  font-size: 0.9em !important;
  letter-spacing: 0.01em !important;
}

.lux-about-frame ul {
  margin-bottom: 0.8em !important;
  font-weight: 300 !important;
  font-size: 0.9em !important;
  letter-spacing: 0.01em !important;
}

.lux-about-frame li {
  margin-bottom: 0.3em !important;
  font-weight: 300 !important;
  font-size: 0.9em !important;
  letter-spacing: 0.01em !important;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 100%;
  width: 100%;
  margin: 0;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 8px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  box-sizing: border-box;
}
.newsletter-form input, .newsletter-form button {
  font-family: 'Perpetua', serif;
  font-weight: 100;
  font-size: 1em;
  padding: 4px 10px;
  border: 1px solid #181818;
  border-radius: 6px;
  outline: none;
}
.newsletter-form input {
  background: #fafafa;
  color: #181818;
}
.newsletter-form button {
  background: #181818;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-weight: 100;
  /* Prevent Safari from applying default button styles */
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
}
.newsletter-form button:hover {
  background: #a88c5d;
  color: #181818;
}

/* --- Monotion Hero Split Section: Edge-to-edge, no black bars --- */
.monotion-hero-split {
  width: 100vw;
  max-width: 100%;
  min-height: 0;
  height: calc(100vh - 110px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  background: #181818;
  border-bottom: 1px solid #ececec;
  margin-bottom: 0;
  padding: 0;
}
.monotion-hero-bg {
  position: relative;
  width: 100vw;
  height: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.monotion-hero-half {
  flex: 1 1 0;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.monotion-hero-left {
  background: url('assets/images/Clothing.jpg') center center/cover no-repeat;
}
.monotion-hero-right {
  background: url('assets/images/Jewellery.jpg') center center/cover no-repeat;
}

/* --- Bottom Hero Section with Waitlist --- */
.monotion-hero-split-bottom {
  width: 100vw;
  max-width: 100%;
  height: calc(100vh - 110px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  background: #fff;
  border-bottom: 1px solid #ececec;
  margin-bottom: 0;
  padding: 0;
}

.monotion-hero-bg-bottom {
  position: relative;
  width: 100vw;
  height: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.monotion-hero-half-bottom {
  flex: 1 1 0;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.monotion-hero-img-bottom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Mobile-specific image sizing */
@media (max-width: 600px) {
  .monotion-hero-img-bottom {
    object-fit: cover;
    object-position: center;
    /* Prevent excessive height on mobile */
    max-height: 100%;
    width: 100%;
  }
}

.newsletter-form-container {
  /* Positioned to align with right-hand side photos */
  position: absolute;
  width: 280px;
  max-width: 280px;
  margin: 0;
  transform: none;
  z-index: auto;
  display: flex;
  justify-content: flex-start;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}

.monotion-hero-label {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0;
  background: none;
  color: inherit;
  font-family: 'Perpetua', serif;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  z-index: 2;
  border: none;
  user-select: none;
}
.monotion-hero-label-left {
  left: 12vw;
  right: auto;
}
.monotion-hero-label-right {
  right: 12vw;
  left: auto;
}
.monotion-hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 22vw;
  min-width: 180px;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 32px rgba(0,0,0,0.18)) brightness(1.08);
  border-radius: 18px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4,0.2,0.2,1), transform 0.5s cubic-bezier(0.4,0.2,0.2,1);
}
.monotion-hero-logo.logo-visible {
  opacity: 1;
}
.monotion-hero-btn {
  display: inline-block;
  font-size: 2rem;
  font-family: 'Perpetua', serif;
  font-weight: 500;
  color: #fff;
  background: none;
  border: none;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  transition: color 0.2s;
  cursor: pointer;
  margin-top: 2.5em;
  padding: 8px 16px;
  /* Prevent Safari from applying default link styles */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.monotion-hero-btn:hover, .monotion-hero-btn:focus {
  color: #a88c5d;
}
@media (max-width: 700px) {
  .monotion-hero-btn {
    font-size: 1.5rem;
    margin-top: 1.2em;
    padding: 6px 12px;
  }
}
/* Blur effect for hero images and labels */
.monotion-hero-half, .monotion-hero-label {
  transition: filter 0.3s cubic-bezier(0.4,0.2,0.2,1);
}
@media (max-width: 900px) {
  .monotion-hero-split {
    height: calc(100vh - 70px);
  }
  .monotion-hero-bg {
    height: 100%;
  }
  .monotion-hero-logo {
    width: 36vw;
    min-width: 110px;
    max-width: 220px;
  }
  .monotion-hero-label {
    font-size: 1.2em;
    padding: 8px 18px;
    bottom: 18px;
  }
  .monotion-hero-label-left {
    left: 6vw;
  }
  .monotion-hero-label-right {
    right: 6vw;
  }
  .monotion-hero-split-bottom {
    height: calc(100vh - 70px);
  }
  .newsletter-form-container {
    padding: 15px;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}
@media (max-width: 600px) {
  .monotion-hero-split {
    height: calc(100vh - 40px);
  }
  .monotion-hero-bg {
    height: 100%;
  }
  .monotion-hero-logo {
    width: 48vw;
    min-width: 70px;
    max-width: 120px;
  }
  .monotion-hero-label {
    font-size: 0.85em;
    padding: 6px 10px;
    bottom: 8px;
  }
  .monotion-hero-label-left {
    left: 4vw;
  }
  .monotion-hero-label-right {
    right: 4vw;
  }
  .monotion-hero-split-bottom {
    height: calc(100vh - 40px);
  }
  .newsletter-form-container {
    padding: 10px;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

@media (max-width: 900px) {
    .lux-header {
        padding: 0 16px;
        height: 70px;
    }
    .lux-logo-center {
        height: 100%;
    }
    .lux-logo-img {
        height: 60px;
    }
    .lux-info-links {
        margin-left: 2vw;
        margin-top: 18px;
        max-width: 90vw;
        gap: 6px;
    }
    .lux-info {
        padding: 24px 0 28px 0;
    }
    .lux-hero-img {
        max-width: 80vw;
        max-height: 40vh;
    }
    .lux-hero {
        min-height: 40vh;
        padding-top: 24px;
        margin-left: 0;
        margin-right: 0;
    }
    .lux-instagram {
        margin-top: 16px !important;
    }
}
@media (max-width: 600px) {
    .lux-header {
        flex-direction: row;
        padding: 0 4vw;
        gap: 0;
        height: 70px;
        align-items: center;
        justify-content: space-between;
    }
    .lux-nav-left {
        order: 1;
        flex: 1;
        justify-content: flex-start;
    }
    .lux-logo-center {
        position: static;
        transform: none;
        width: auto;
        margin: 0;
        justify-content: center;
        order: 2;
        flex: 1;
    }
    .lux-nav-right {
        order: 3;
        flex: 1;
        justify-content: flex-end;
        gap: 8px;
    }
    .lux-logo-img {
        height: 40px;
    }
    .lux-icon-btn {
        padding: 3px;
    }
    .lux-icon-btn svg {
        width: 18px;
        height: 18px;
    }
    .lux-currency {
        font-size: 18px;
        line-height: 1;
    }
    .lux-hero-img {
        max-width: 95vw;
        max-height: 28vh;
    }
    .lux-hero {
        min-height: 28vh;
        padding-top: 12px;
        margin-left: 0;
        margin-right: 0;
    }
    .lux-info {
        padding: 16px 0 18px 0;
    }
    .lux-info-links {
        max-width: 95vw;
        margin-left: 2vw;
        margin-top: 10px;
        gap: 4px;
    }
    .lux-info-links h2 {
        font-size: 0.75em;
        font-weight: 100 !important;
    }
    .lux-link {
        font-size: 0.8em;
        font-weight: 100 !important;
    }
    .lux-footer {
        padding: 18px 0 12px 0;
        justify-content: center;
    }
    .lux-footer-inner {
        margin-right: 0;
        font-size: 0.75em;
        font-weight: 100 !important;
    }
    .lux-instagram {
        margin-top: 10px !important;
    }
    .lux-side-menu {
        width: 90vw;
        padding: 24px 4vw 18px 4vw;
        font-size: 1em;
        border-radius: 10px;
    }
    .lux-about {
        padding: 16vw 2vw 0 2vw;
    }
    .lux-about-title {
        font-size: 1.3em;
    }
    .lux-about-desc {
        font-size: 1em;
        max-width: 98vw;
    }
    .lux-about-title, .lux-about-desc {
        font-weight: 100 !important;
    }
    .lux-about-frame {
      padding: 14px 2vw;
      max-width: 92vw;
      margin-top: 40px;
      margin-bottom: 40px;
    }
    
    .lux-about-frame h1 {
      font-size: 1.4em !important;
    }
    
    .lux-about-frame h2 {
      font-size: 1.1em !important;
    }
    
    .lux-about-frame p,
    .lux-about-frame ul,
    .lux-about-frame li {
      font-size: 0.85em !important;
    }
    .newsletter-form {
      max-width: 98vw;
      padding: 12px 3vw;
    }
    
    /* Mobile: Stack all 4 images vertically */
    .monotion-hero-split {
        height: auto !important;
        min-height: auto !important;
        display: block !important;
    }
    
    .monotion-hero-split-bottom {
        height: auto !important;
        min-height: auto !important;
        display: block !important;
    }
    
    .monotion-hero-bg {
        flex-direction: column !important;
        height: auto !important;
    }
    
    .monotion-hero-bg-bottom {
        flex-direction: column !important;
        height: auto !important;
    }
    
    .monotion-hero-half {
        width: 100% !important;
        height: 30vh !important;
        min-height: 300px !important;
        aspect-ratio: auto !important;
    }
    
    .monotion-hero-half-bottom {
        width: 100% !important;
        height: 30vh !important;
        min-height: 300px !important;
        aspect-ratio: auto !important;
    }
    
    .monotion-hero-img-bottom {
        object-fit: cover !important;
        object-position: center !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Position shop jewellery button to stay on the jewellery image */
    .monotion-hero-label-right {
        position: absolute !important;
        bottom: 6px !important;
        right: 3vw !important;
        left: auto !important;
        z-index: 10 !important;
    }
    
    .monotion-hero-label-left {
        position: absolute !important;
        bottom: 6px !important;
        left: 3vw !important;
        right: auto !important;
        z-index: 10 !important;
    }
    
    .monotion-hero-logo {
        width: 35vw !important;
        min-width: 80px !important;
        max-width: 120px !important;
    }
    
    .monotion-hero-label {
        font-size: 0.75em !important;
        padding: 4px 8px !important;
    }
    
    .monotion-hero-btn {
        font-size: 1rem !important;
        margin-top: 0.8em !important;
        padding: 3px 6px !important;
    }
    
    /* Mobile layout: Links on left, form on right */
    .lux-info {
        flex-direction: row !important;
        gap: 2em !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        padding: 12px 4vw 16px 4vw !important;
    }
    
    .lux-info-links {
        order: 1 !important;
        margin-left: 0 !important;
        margin-top: 20px !important;
        margin-bottom: 0 !important;
        align-items: flex-start !important;
        max-width: 40% !important;
    }
    
    .newsletter-form-container {
        order: 2 !important;
        margin-right: 4vw !important;
        width: 45% !important;
        max-width: 45% !important;
        margin-left: 0 !important;
        flex-shrink: 0 !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }
    
    .newsletter-form {
        width: 100% !important;
        max-width: 100% !important;
        padding: 4px 8px !important;
        box-sizing: border-box !important;
    }
    
    .newsletter-form .newsletter-heading {
        font-size: 0.85em !important;
        margin-bottom: 4px !important;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        font-size: 0.8em !important;
        padding: 2px 6px !important;
    }
} 

.lux-product-grid {
  padding: 2em 0 3em 0;
  background: #fafbfc;
}
.lux-page-title {
  text-align: center;
  font-size: 3rem;
  font-family: 'Perpetua', serif;
  font-weight: 300;
  margin-bottom: 1em;
  color: #181818;
  letter-spacing: 0.01em;
}

.lux-page-desc {
  text-align: center;
  font-size: 1.3rem;
  font-family: 'Perpetua', serif;
  font-weight: 300;
  color: #666;
  max-width: 1200px;
  margin: 0 auto 3em auto;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.lux-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8em;
  max-width: 900px;
  margin: 0 auto;
}
.lux-product-card {
  background: #fff;
  border-radius: 1.5em;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.15s;
  border: none;
}
.lux-product-card:hover {
  box-shadow: 0 8px 40px 0 rgba(0,0,0,0.13);
  transform: translateY(-4px) scale(1.02);
}
.lux-product-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  background: #f3f3f3;
}

/* Carousel styles */
.lux-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.lux-carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.lux-carousel-img.active {
  opacity: 1;
}

.lux-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: #181818;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'MonotionLuxury', serif;
  font-weight: 300;
}

.lux-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-50%) scale(1.1);
}

.lux-carousel-prev {
  left: 10px;
}

.lux-carousel-next {
  right: 10px;
}

/* Smaller jewellery card */
.lux-jewellery-card {
  max-width: 400px;
  margin: 0 auto;
}

/* Smaller clothing card for mobile */
.lux-clothing-card {
  max-width: 400px;
  margin: 0 auto;
}

.lux-product-info {
  padding: 2em 1.5em 1.5em 1.5em;
  text-align: center;
  background: #fff;
}
.lux-product-name {
  font-size: 1.6rem;
  font-family: 'Perpetua', serif;
  font-weight: 500;
  margin-bottom: 0.7em;
  color: #181818;
  text-align: center;
}
.lux-product-desc {
  font-size: 1.25rem;
  color: #444;
  font-family: 'Perpetua', serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-align: center;
}

.lux-waitlist-btn {
  background: #000 !important;
  color: #fff !important;
  border: none;
  padding: 12px 24px;
  font-family: 'Perpetua', serif;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1em;
}

.lux-waitlist-btn:hover {
  background: #222 !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.lux-waitlist-form {
  margin-top: 0.8em;
  padding: 1em;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center;
}

.lux-waitlist-form input,
.lux-waitlist-form button {
  font-family: 'Perpetua', serif;
  font-weight: 100;
  font-size: 1.15em;
  padding: 8px 10px;
  border: 1px solid #181818;
  border-radius: 6px;
  outline: none;
  margin-bottom: 6px;
  width: 100%;
  box-sizing: border-box;
}

.lux-waitlist-form input {
  background: #fff;
  color: #181818;
}

.lux-waitlist-form button {
  background: #181818;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-weight: 100;
  margin-bottom: 0;
  /* Prevent Safari from applying default button styles */
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
}

.lux-waitlist-form button:hover {
  background: #a88c5d;
  color: #181818;
}
@media (max-width: 700px) {
  .lux-product-grid {
    padding: 2em 0 1.5em 0;
  }
  .lux-page-title {
    font-size: 1.5rem;
    margin-bottom: 1.2em;
  }
  .lux-grid {
    gap: 2.5em;
  }
  .lux-product-info {
    padding: 1.2em 0.7em 1em 0.7em;
  }
}

@media (max-width: 600px) {
  .lux-product-grid {
    padding: 1.5em 0 1em 0;
  }
  .lux-page-title {
    font-size: 1.6rem;
    margin-bottom: 1em;
  }
  .lux-page-desc {
    font-size: 0.9rem;
    margin-bottom: 2em;
    line-height: 1.4;
  }
  .lux-grid {
    gap: 2em;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .lux-product-card {
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
  }
  .lux-product-info {
    padding: 1em 0.5em 0.8em 0.5em;
  }
  
  /* Ensure all clothing product cards are the same size */
  .lux-grid .lux-product-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .lux-product-name {
    font-size: 1.3rem;
    margin-bottom: 0.5em;
  }
  .lux-product-desc {
    font-size: 1rem;
  }
  .lux-waitlist-btn {
    font-size: 1rem;
    padding: 10px 20px;
    margin-top: 0.8em;
  }
  .lux-waitlist-form {
    padding: 0.8em;
  }
  .lux-waitlist-form .newsletter-heading {
    font-size: 1em;
    margin-bottom: 8px;
  }
  .lux-waitlist-form input,
  .lux-waitlist-form button {
    font-size: 0.9em;
    padding: 6px 8px;
  }
} 

/* About page full-screen background layout */
.about-main {
    position: relative;
    width: 100%;
    height: calc(100vh - 110px);
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 4vw;
}

.about-textbox {
    max-width: 500px;
    margin-right: 8vw;
}

.about-textbox .lux-about-desc {
    color: #ffffff;
    font-size: 0.95em;
    line-height: 1.8;
    margin: 0;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive design for about page */
@media (max-width: 900px) {
    .about-content {
        justify-content: center;
        padding: 0 2vw;
    }
    
    .about-textbox {
        margin-right: 0;
        max-width: 90%;
        padding: 20px 16px;
    }
    
    .about-textbox .lux-about-desc {
        font-size: 0.85em;
    }
}

@media (max-width: 600px) {
    .about-main {
        height: calc(100vh - 80px);
    }
    
    .about-content {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding-top: 20px !important;
    }
    
    .about-textbox {
        max-width: 95%;
        padding: 12px 10px;
        margin-top: 0 !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    
    .about-textbox .lux-about-desc {
        font-size: 0.7em;
        line-height: 1.5;
        margin-bottom: 0.5em !important;
    }
    
    .about-textbox .lux-about-desc br {
        display: block;
        content: "";
        margin-top: 0.3em;
    }
} 

/* Dark marble background styles */
.marble-bg {
    background-image: url('assets/images/Dark Marble.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.marble-bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/Dark Marble.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: -1;
}

.marble-bg .lux-product-grid {
    background: transparent !important;
    padding: 2em 0 3em 0;
}

.marble-bg .lux-page-title,
.marble-bg .lux-page-desc,
.marble-bg .lux-product-name,
.marble-bg .lux-about-frame h1,
.marble-bg .lux-about-frame h2,
.marble-bg .lux-about-frame p,
.marble-bg .lux-about-frame li,
.marble-bg .lux-about-frame ul {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Override for privacy policy and terms of service pages */
.marble-bg .lux-about-frame h1[style*="color: black"],
.marble-bg .lux-about-frame h2[style*="color: black"],
.marble-bg .lux-about-frame p[style*="color: black"],
.marble-bg .lux-about-frame ul[style*="color: black"],
.marble-bg .lux-about-frame li[style*="color: black"] {
    color: #000000 !important;
    text-shadow: none !important;
}

/* Black text for clothing and jewellery pages */
.marble-bg .lux-page-title,
.marble-bg .lux-page-desc,
.marble-bg .lux-product-name {
    color: #000000 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    text-align: center !important;
}

.marble-bg .lux-about-frame {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.marble-bg .lux-product-card {
    background: #fff !important;
    backdrop-filter: none !important;
    border: none !important;
}
.marble-bg .lux-product-info {
  background: #fff !important;
}
.marble-bg .lux-waitlist-btn {
  background: #000 !important;
  color: #fff !important;
  border: none;
}
.marble-bg .lux-waitlist-btn:hover {
  background: #222 !important;
  color: #fff !important;
}

.marble-bg .lux-carousel-btn {
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.marble-bg .lux-carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
} 