* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
  --single-line-body-base-font-family: "Montserrat", sans-serif;
  --single-line-body-base-font-weight: 400;
  --single-line-body-base-font-size: 16px;
  --single-line-body-base-letter-spacing: 0px;
  --single-line-body-base-line-height: 100%;
  --single-line-body-base-font-style: normal;
}

@font-face {
    font-family: "TOP_LUXURY-Regular";
    src: url("../fonts/TOPLUXURY.otf") format("opentype");
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat.ttf") format("truetype");
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
}

body {
    font-family: var(--single-line-body-base-font-family), sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Ensure Montserrat is the default font for all paragraphs and text elements */
p, span, div, li, td, th, a, input, textarea, select, button, label {
    font-family: var(--single-line-body-base-font-family), sans-serif;
}

/* Override any elements that might have different fonts */
.nav-link, .btn-appointment, .btn-explore {
    font-family: var(--single-line-body-base-font-family), sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(0deg,
            rgba(49, 48, 50, 0) 0%,
            rgba(49, 48, 50, 0.3) 37%,
            rgba(49, 48, 50, 1) 100%);
    /* padding: 20px 0; */
    transition: all 0.6s ease-in-out;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
  position: relative;
  top: 0px;
  left: 0px;
  right: 0px;
  background: white;
  z-index: 1000;
  padding: 2px 0px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding-left: 26px;
  min-width: 191px;
}

.hamburger-menu span {
  width: 25px;
  height: 1.6px;
  margin-top: 2px;
  border-radius: 24px;
  background: #000000;
  transition: 0.3s;
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 0;
  justify-content: flex-end;
  width: auto;
  padding-right: 26px;
}

.nav-icons button,
.nav-icons a {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icons button:hover {
  color: #e6a791;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.6s ease-in-out;
}

.nav-link:hover {
    color: #f0f0f0;
}

.logo-default {
    display: inline-block;
    height: 140px;
    vertical-align: middle;
    transition: all 0.6s ease-in-out;
}

.logo-scrolled {
    display: none;
    height: 80px;
    vertical-align: middle;
    transition: all 0.6s ease-in-out;
}

.scrolled .logo-default {
    display: none;
}

.scrolled .logo-scrolled {
    display: inline-block;
}


.nav-icons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.icons {
    display: flex;
    gap: 15px;
}

.icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
}

.icon:hover {
    transform: scale(1.1);
}

.nav-icons button:hover svg path,
.nav-icons button:hover svg line,
.nav-icons a:hover svg path,
.nav-icons a:hover svg line {
    stroke: #f7b44f;
    stroke-width: 2;
    transition-duration: 0.6s;
}
.nav-icons button svg path,
.nav-icons button svg line,
.nav-icons a svg path,
.nav-icons a svg line {
    transition-duration: 0.6s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-height: 913px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 116%;
    height: 116%;
    object-fit: cover;
    z-index: 1;
    image-rendering: -webkit-optimize-contrast;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg,
            rgba(49, 48, 50, 0) 100%,
            rgba(49, 48, 50, 0.3) 30%,
            rgba(49, 48, 50, 1) 0%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: "TOP_LUXURY-Regular", serif;
    font-size: clamp(2rem, 5vw, 53px);
    color: #1c1c1c;
    font-weight: 200;
    margin-left: 6vw;
    max-width: 492px;
    line-height: 1.2;
    margin-top: 18%;
    max-height: 245px;
}

/* Responsive Hero Section */

@media (max-width: 1200px){
    .hero-title{
        margin-left: -170%;
        max-width: 200px;
    }
}

@media (max-width: 900px){
    .hero-title{
        margin-left: -120%;
        max-width: 200px;
    }
    .hamburger-menu{
        min-width: 100px;
    }
}


@media (max-width: 768px) {
    .hero {
        align-items: flex-end;
    }
    
    .hero::before {
        background: linear-gradient(179deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    }
    
    .hero-content {
        width: 100%;
        padding: 0 15px 40px;
    }
    
    .hero-title {
        margin-left: 0;
        max-width: 200px;
        text-align: start;
        color: #ffffff;
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        padding: 15px;
    }

    .hamburger-menu{
        min-width: auto;
    }
}

/* About Section */
.about {
    padding: 80px 0px 0;
    text-align: center;
    background: white;
}

.about-icon {
    margin-bottom: 48px;
}

.about-icon img {
    width: 66px;
    height: 70px;
}

.home .about-text {
    margin: 0 auto;
    margin-bottom: 0;
    font-size: 15px;
    color: #373b3b;
    line-height: 28px;
    max-width: 485px;
    font-family: var(--single-line-body-base-font-family);
    font-weight: 500;
}

/* Collection Sections */
.collection-section,
.collection-section-2,
.presence-section {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

/* Overlapping Collection Sections */
.collection-section,
.collection-section-2 {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.presence-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Simple z-index baseline management */
.collection-section {
    z-index: 10;
}

.collection-section-2 {
    z-index: 20;
}

.presence-section {
    z-index: 30;
}

/* Sections after collections should be above sticky sections */
.product-grid-section {
    position: relative;
    z-index: 25;
}

.category-section {
    position: relative;
    z-index: 26;
}

/* Footer should be above everything */
.footer {
    position: relative;
    z-index: 100;
}

.collection-section {
    background: url("../images/image-2.jpg") center/cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.collection-section-2 {
    background: url("../images/image-3.jpg") center/cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.presence-section {
    background: url("../images/image-4.jpg") center/cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}


.collection-section::before,
.collection-section-2::before,
.presence-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(49, 48, 50, 0) 0%,
            rgba(49, 48, 50, 0.3) 100%,
            rgba(49, 48, 50, 1) 100%);
}

.collection-content, .collection-content-2, .presence-content {
    margin: auto;
    z-index: 1;
}

.collection-title,
.presence-title {
    font-family: "TOP_LUXURY-Regular", serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    font-weight: normal;
}

.btn-explore,
.btn-appointment {
    background: transparent;
    border: none;
    color: white;
    font-family: var(--single-line-body-base-font-family), sans-serif;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 0;
}

/* Product Grid Section */
.product-grid-section {
    padding: 0;
    background: #f6f6f6;
}

.grid-layout {
    display: grid;
    grid-template-columns: 0.3fr 0.3fr 0.4fr;
    gap: 0;
    width: 100%;
    overflow: hidden;
    height: 800px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at center, #eaeaea 0%, #e9e9e9 100%);
    background: #fff; /* temporary till i can edit images and renable this radial-gradient */
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: scale(1);
    display: block;
}

.overlay-item img {
    object-fit: cover;
}

.grid-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.overlay-item {
    position: relative;
    grid-row: 1 / -1;
    height: 100%;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg,
            rgba(49, 48, 50, 0) 0%,
            rgba(49, 48, 50, 0.8) 100%);
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.product-overlay h4{
    display: none;
}

.overlay-title {
    font-family: "TOP_LUXURY-Regular", serif;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: normal;
}

@media (max-width: 1024px){
    .grid-item{
        height: fit-content;
    }
    .grid-column-large{
        grid-column: span 2;
    }
    .grid-item.large{
        height: 400px;
    }
    .collection-content, .collection-content-2, .presence-content {
    margin: auto;
    padding-top: 90%;
    z-index: 1;
    }
    .collection-section-2::before,
    .presence-section::before{
    background: linear-gradient(179deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);;
}
}

/* Category Section */
.category-section {
    padding: 100px 0 120px 0; /* Made section taller */
    background: #fff;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

.section-title {
    font-family: "TOP_LUXURY-Regular", serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 80px; /* Increased spacing */
    font-weight: normal;
    text-transform: uppercase;
    padding: 0 20px;
}

.category-grid {
    display: block; /* Changed from grid to allow Owl Carousel to handle layout */
    padding: 0 60px; /* Increased padding for better full-width experience */
    max-width: none !important; /* Override any max-width constraints */
    width: 100vw !important; /* Ensure full viewport width */
    margin-left: calc(-50vw + 50%); /* Full width hack */
    position: relative;
    /* Removed conflicting left/right positioning */
}

.category-item {
    text-align: center;
    padding: 0 10px; /* Reduced padding for tighter spacing */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.category-image-container {
    background: #f0f0f0;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 2/3; /* Made images taller (changed from 3/4) */
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: transform 0.3s ease;
}

.category-item:hover img {
    transform: scale(1.02); /* Subtle hover effect */
}

.category-item h3.category-name {
    font-family: var(--single-line-body-base-font-family), sans-serif;
    font-size: 17px;
    font-weight: normal;
    color: black;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-name {
    font-family: var(--single-line-body-base-font-family), sans-serif;
    font-size: 22px;
}

/* Footer Z-Index Hierarchy - Normal Sections */
/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
    font-family: var(--single-line-body-base-font-family), sans-serif;
    position: relative;
    z-index: 60; /* Highest footer section */
}

.services-title {
    font-size: 21px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: normal;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.service-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 15px;
    font-weight: normal;
}

/* Experience Section - Normal scrolling (parallax removed) */
.experience-section {
    min-height: 100vh;
    background: url("../images/04-image.jpg") center/cover;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 59; /* Second highest footer section */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    width: 100%;
}

.experience-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.experience-text {
    max-width: 400px;
    color: black;
}

.experience-title {
    font-family: "TOP_LUXURY-Regular", serif;
    font-size: 2.8rem;
    margin-bottom: 40px;
    margin-left: 120px;
    font-weight: normal;
    line-height: 1.2;
}

.btn-appointment {
    color: #4a4d60;
    border: 1px solid #4a4d60;
    padding: 10px 20px;
    margin-left: 120px;
    background: transparent;
    text-decoration: none;
    font-family: var(--single-line-body-base-font-family), sans-serif;
    font-size: 18px;
    transition-duration: 0.6s;
}

.btn-appointment:hover{
  background: gray;
  color: white;
  transition-duration: 0.6s;
}

/* Newsletter Section - Normal section */
.newsletter-section {
    background: white;
    position: relative;
    z-index: 58; /* Higher z-index than footer-container */
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: full;
    margin: 0 auto;
}

.newsletter-text {
    padding: 80px 40px;
    width: 100%;
    max-width: 700px;
    grid-column: 1;
    justify-self: center;
    margin-left: 50px;
}

.newsletter-image {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-title {
    font-size: 2rem;
    font-family: var(--single-line-body-base-font-family), sans-serif;
    margin-bottom: 30px;
    line-height: 1.4;
}

.newsletter-description {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: var(--single-line-body-base-font-family), sans-serif;
    max-width: 400px;
    color: #666;
}

.newsletter-form {
    padding: 0 2px;
}

.email-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #4a4d60;
    background: transparent;
    padding: 10px 0;
    font-size: 15px;
    color: #4a4d60;
    font-family: var(--single-line-body-base-font-family), sans-serif;
    transition: border-color 0.3s ease;
}

.email-input::placeholder {
    color: #d9d9d9;
}

.email-input:focus {
    outline: none;
    border-bottom-color: #000;
    box-shadow: none;
}

.email-input:focus-visible {
    outline: none;
    border-bottom-color: #000;
    box-shadow: none;
}

/* Newsletter Form Expansion Styles */
.newsletter-form-expanded {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
    margin-top: 0;
}

.newsletter-form-expanded.is-expanded {
    max-height: 600px;
    opacity: 1;
    margin-top: 30px;
}

/* Form Row Styles */
.form-row {
    margin-bottom: 25px;
}

/* Two Column Form Row */
.form-row-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Three Column Form Row */
.form-row-three-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.form-column {
    display: flex;
    flex-direction: column;
}

/* Centered Submit Row */
.submit-row {
    display: flex;
    justify-content: center;
    text-align: center;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #D2D2D2;
    margin-bottom: 10px;
    font-family: var(--single-line-body-base-font-family), sans-serif;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #4a4d60;
    font-family: var(--single-line-body-base-font-family), sans-serif;
}

.radio-option input[type="radio"] {
    margin-right: 8px;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #4a4d60;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-option input[type="radio"]:checked {
    background-color: #4a4d60;
    border-color: #4a4d60;
}

.radio-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
}

.radio-option input[type="radio"]:focus {
    outline: none;
    box-shadow: none;
}

.radio-label {
    user-select: none;
}

/* Name Input Styles */
.name-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #4a4d60;
    background: transparent;
    padding: 10px 0;
    font-size: 15px;
    color: #4a4d60;
    font-family: var(--single-line-body-base-font-family), sans-serif;
    transition: border-color 0.3s ease;
}

.name-input:focus {
    outline: none;
    border-bottom-color: #000;
    box-shadow: none;
}

.name-input:focus-visible {
    outline: none;
    border-bottom-color: #000;
    box-shadow: none;
}

.name-input::placeholder {
    color: #d9d9d9;
}

/* Country Dropdown Styles */
.country-select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #4a4d60;
    background: transparent;
    padding: 10px 0;
    font-size: 15px;
    color: #4a4d60;
    font-family: var(--single-line-body-base-font-family), sans-serif;
    transition: border-color 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a4d60' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 20px;
    padding-right: 30px;
}

.country-select:focus {
    outline: none;
    border-bottom-color: #000;
    box-shadow: none;
}

.country-select:focus-visible {
    outline: none;
    border-bottom-color: #000;
    box-shadow: none;
}

/* Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 12px;
    color: #D2D2D2;
    font-family: var(--single-line-body-base-font-family), sans-serif;
    line-height: 1.5;
    margin-bottom: 15px;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 2px;
    appearance: none;
    width: 14px;
    height: 14px;
    border: 1px solid #4a4d60;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: #4a4d60;
    border-color: #4a4d60;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.checkbox-label input[type="checkbox"]:focus {
    outline: none;
    box-shadow: none;
}

.checkbox-text {
    flex: 1;
    user-select: none;
    border: none;
    outline: none;
    color: #000;
}

.checkbox-text strong {
    font-weight: 600;
}

.privacy-consent {
    margin-bottom: 20px;
}

.optional-consent {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

/* Submit Button Styles */
.newsletter-submit {
    background: #4a4d60 !important;
    color: white !important;
    border: none;
    padding: 12px 40px;
    font-size: 15px;
    font-family: var(--single-line-body-base-font-family), sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 20px auto 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    min-height: 44px;
    min-width: 150px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.newsletter-submit:hover {
    background: #000;
    transform: translateY(-1px);
}

.newsletter-submit:focus {
    outline: none;
    box-shadow: none;
}

.newsletter-submit:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}


/* Enhanced Email Input Focus State */
.newsletter-form.email-focused .newsletter-form-expanded {
    max-height: 600px;
    opacity: 1;
    margin-top: 30px;
}

/* Newsletter Form Messages */
.newsletter-message {
    margin-top: 20px;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--single-line-body-base-font-family), sans-serif;
    line-height: 1.4;
    animation: fadeInUp 0.3s ease-out;
}

.newsletter-error {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.newsletter-success {
    background-color: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

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

/* Responsive Styles for Form Fields */
@media (max-width: 1024px) {
    .form-row-three-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .radio-group {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-form-expanded.is-expanded {
        max-height: 800px;
    }

    .form-row {
        margin-bottom: 20px;
    }

    .form-row-two-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-row-three-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .newsletter-submit {
        width: 100%;
        padding: 15px;
        margin: 20px auto 0;
    }

    .checkbox-label {
        font-size: 11px;
        line-height: 1.4;
    }

    .checkbox-text {
        padding-left: 5px;
    }

    .privacy-consent {
        margin-bottom: 20px;
    }

    .optional-consent {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .checkbox-label {
        font-size: 10px;
        line-height: 1.3;
    }

    .country-select {
        font-size: 14px;
    }

    .form-row {
        margin-bottom: 15px;
    }
}

.newsletter-image img {
    width: 50%;
    height: 50%;
    opacity: 0.05;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Footer */
.footer {
    padding: 0px;
}

/* Footer Container - Only sticky element in footer (bottom sticky) */
.footer-container{
    background: #f6f6f6;
    padding: 32px 20px;
    position: sticky;
    bottom: 0;
    z-index: 57; /* Lowest z-index - appears under normal footer sections */
}

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

.footer-right-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    width: 275px;
}

.contact-info p {
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.contact-info a {
    color: black;
    text-decoration: underline;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 18px;
    height: 17px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    font-family: var(--single-line-body-base-font-family), sans-serif;
}

.footer-column h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}

.store-locator h4{
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333333;
    font-family: "Montserrat", Helvetica;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 15px;
}

.footer-column a {
    color: #535555;
    text-decoration: underline;
    font-size: 13px;
    line-height: 2;
}

.store-locator h4 {
    font-size: 14px;
    font-weight: 500;
    color: #4a4d60;
    margin-bottom: 10px;
}

/* Store Locator Form Styles */
.store-locator-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.store-country-select {
    flex: 1;
    border: none;
    border-bottom: 1px solid #4a4d60;
    background: transparent;
    padding: 10px 0;
    font-size: 15px;
    color: #4a4d60;
    font-family: var(--single-line-body-base-font-family), sans-serif;
    transition: border-color 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a4d60' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 20px;
    padding-right: 30px;
}

.store-country-select:focus {
    outline: none;
    border-bottom-color: #000;
    box-shadow: none;
}

.store-country-select:focus-visible {
    outline: none;
    border-bottom-color: #000;
    box-shadow: none;
}

.store-country-select option {
    background: white;
    color: #4a4d60;
}

.store-locator-submit {
    background: transparent;
    border: none;
    color: #4a4d60;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
    min-width: 44px;
    height: 44px;
}

.store-locator-submit:hover {
    transform: translateX(2px);
    color: #000;
}

.store-locator-submit:focus {
    outline: none;
    color: #000;
}

.store-locator-submit:focus-visible {
    outline: none;
    color: #000;
}

.store-locator-submit svg {
    transition: transform 0.2s ease;
}

.store-locator-submit:hover svg {
    transform: translateX(2px);
}

.store-locator p {
    font-size: 14px;
    color: #4a4d60;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

.footer-bottom p {
    font-size: 14px;
    color: #4a4d60;
    opacity: 0.7;
}

.contact-mobile{
    display: none;
    align-content: center;
    font-family: var(--single-line-body-base-font-family), sans-serif;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-end;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        flex-direction: column;
        gap: 20px;
    }
    .mobile-hide {
        display: none !important;
    } 

    .nav-links {
        gap: 20px;
    }

    .grid-layout {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }

    .grid-item.large {
        grid-row: span 1;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-content {
        grid-template-columns: 1fr;
    }

    .newsletter-text {
        grid-column: 1 / -1;
        justify-self: stretch;
    }

    .newsletter-image {
        grid-column: 1 / -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .store-locator-form {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .store-country-select {
        width: 100%;
    }

    .store-locator-submit {
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .mobile-hide {
        display: none !important;
    }
    
    .contact-mobile{
        display: flex;
        justify-content: space-between;
    }

    .nav-content {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        align-items: center;
        padding: 0 10px;
    }
    
    .hamburger-menu {
        justify-self: start;
    }
    
    .logo {
        justify-content: center;
        display: flex;
    }
    
    .nav-icons {
        justify-self: end;
        width: 100%;
        justify-content: flex-end;
        margin-right: 0;
    }
    
    .cart-btn {
        display: flex !important;
        visibility: visible !important;
    }
    
    .logo img {
        max-height: 65px;
        width: auto;
    }

    .nav-icons .nav-link {
        display: none;
    }

    .hero {
        height: 95vh;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-content {
        justify-content: start;
        text-align: start;
    }

    .experience-title {
        font-size: 2rem;
        max-width: 100px;
        margin-left: 0;
    }

    .btn-appointment{
        margin-left: 0;
    }

    /* Newsletter responsive styles */
    .newsletter-content {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .newsletter-text {
        grid-column: 1;
        margin-left: 0;
        padding: 40px 20px;
    }

    .newsletter-image {
        display: none !important;
    }

    .newsletter-title {
        font-size: 30px;
        font-weight: 400;
        margin-bottom: 20px;
    }

    .newsletter-description {
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .social-icons{
        gap: 18px;
    }

    .collection-title,
    .presence-title {
        font-size: 1.5rem;
    }

    .presence-title{
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hamburger-menu{
        min-width: auto;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-text {
        padding: 30px 18px;
    }

    .newsletter-title {
        font-size: 1.5rem;
        text-align: left;
        max-width: 175px;
    }

    .newsletter-description {
        font-size: 15px;
        text-align: left;
    }

    .experience-title {
        font-size: 44px;
        line-height: initial;
        margin-left: 0;
    }
}

/* Fullscreen menu */
.fullscreen-menu{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #ffffff;
    z-index: 3000;
    transform: translateX(-100%);
    transition: transform 1.6s ease;
    display: flex;
    flex-direction: column;
}
.is-menu-open .fullscreen-menu{ transform: translateX(0); }
.menu-backdrop{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.35);
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}
.is-menu-open .menu-backdrop{ opacity: 1; visibility: visible; }
.menu-header{ display:flex; align-items:center; justify-content:flex-start; padding: 16px 24px; }
.menu-close{     
    background: none;
    display: flex;
    border: none;
    color: #4a4d60;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Montserrat';
    align-content: center;
    align-items: center;
    padding-left: 18px;
    gap: 5px; }
.menu-layout{ display:grid; grid-template-columns: 1fr 1fr; height: 100%; }
.menu-left{ padding: 24px; overflow:auto; position: relative; }
.menu-right{ position: relative; background: url('../images/ham-image.jpg') center/cover; }
.menu-right .menu-hero{ position:absolute; top:0; right:0; bottom:0; left:0; display:flex; align-items:center; justify-content:center; color:#ffffff; }
.menu-nav{ margin-top: 8px; }
.menu-list{ list-style:none; padding:0; }
.menu-list > li{ padding: 10px 0; }
.menu-list a{ color:#1c1c1c; text-decoration:none; font-size:14px; }
.menu-list .menu-item-has-children > a{ font-weight:600; }
.menu-bottom-links{ position:absolute; bottom:24px; left:24px; right:24px; display:grid; gap:12px; }
.menu-bottom-links a{ color:#989898; text-decoration:none; font-size: 15px; font-weight: 500; font-family: 'Montserrat';}

@media (max-width: 1024px){
  .menu-layout{ grid-template-columns: 1fr; }
  .menu-right{ display:none; }
}

.fullscreen-menu .menu-layout {
  position: relative;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr min(652px, 40%);
  align-items: stretch;
}

/* Pin the right panel to the top of the viewport so its background starts under the browser top (covers header area) */
.menu-right {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  min-height: 100vh;
  max-width: 652px;
  width: 100%;
  background-image: url('../images/ham-image.jpg');
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 2999; 
}

/* Ensure the left panel content is not hidden behind the fixed right panel when the menu opens */
.is-menu-open .menu-left {
  /* reserve space for the fixed right panel */
  margin-right: 652px;
}

.menu-right .menu-hero {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 40px;
  box-sizing: border-box;
}

.arrow{
    left: 30px;
    display: inline;
    position: relative;
    top: 2px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.submenu a:hover .arrow{
    opacity: 10;
    visibility: visible;
}

@media (max-width: 1024px){
  .menu-layout{ grid-template-columns: 1fr; }
  .menu-right{ display:none; position: static; background-attachment: scroll; }
}

.is-menu-open .menu-left {
  /* reserve space for the fixed right panel */
  margin-right: 0px;
}

.row-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem 1rem;
  }
  /* For mobile responsiveness: stack vertically on small screens */
  @media (max-width: 600px) {
    .row-links {
      flex-direction: column;
      align-items: stretch;
    }
  }
  .row-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem 1rem;
  }
  @media (max-width: 600px) {
    .row-links {
      flex-direction: column;
      align-items: stretch;
    }
  }
 /* Menu card */
 .menu {
    width:100%;
    max-width:420px;
    background:linear-gradient(180deg,var(--card), #06101a);
    border-radius:var(--radius);
    padding:14px;
    overflow:hidden;
  }

  /* hide the checkboxes visually but keep them available to CSS */
  .menu input[type="checkbox"]{
    position:absolute;
    opacity:0;
    pointer-events:none;
    height:0;
    width:0;
  }

  .menu-hero a{
    color: white;
    position: relative;
    top: 80px;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
  }

  /* Top-level links look like anchors */
  .top-link {
    display:block;
    text-decoration:none;
    color:var(--text);
    font-weight:600;
    padding:12px 14px;
    border-radius:8px;
    margin:6px 0;
    transition:background .18s, transform .12s;
    cursor:pointer;
  }

  .top-link:hover { background:rgba(255,255,255,0.03); transform:translateY(-1px); }

  /* label wrapping the first <a> will act as the toggle control */
  .top-label { display:block; cursor:pointer; }

  .top-label .top-link{
    display:flex;
    justify-content:space-between;
    align-items:center;
  }

  .caret {
    font-size:15px;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding:12px 14px;
    /* margin-bottom: 20px !important;
    padding-bottom: 15px; */
    transform-origin:center;
    transition: transform .25s ease-in-out;
    position: relative;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-transform: uppercase;
  }

  /* Add plus icon */
  .caret::before {
    content: url('../images/plus-icon.svg');
    position: absolute;
    right: -90px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    transition-duration: all 1.25s ease-in-out;
  }

  /* Change to minus icon when menu is open */
  #m1:checked + label.top-label .caret::before {
    content: url('../images/minus-icon.svg');
  }

  /* For nested submenus */
  /* .submenu label.sub-toggle .caret::before {
    content: '+';
  } */

  /* #m2:checked + label.sub-toggle .caret::before {
    content: '-';
  } */

  /* SUBMENU - initially collapsed */
  .submenu {
    overflow:hidden;
    max-height:0;
    transition: max-height 1.25s cubic-bezier(.2,.1,.2,1), opacity 1.25s ease;
    opacity:0;
  }

  .submenu a {
    display:block;
    text-decoration:none;
    font-size:15px;
    font-family: 'Montserrat', sans-serif;
    color: #989898;
    font-weight: 500;
    padding:10px 14px;
    border-radius:8px;
    background-color: transparent;
    transition: color 0.4s ease, background-color 0.4s ease;
  }
  .submenu a:hover { 
    color:#000000; 
    background:rgba(255,255,255,0.02); 
}

  /* nested sub-submenu (level 3) */
  .subsubmenu {
    overflow:hidden;
    max-height:0;
    transition: max-height .35s cubic-bezier(.2,.9,.2,1), opacity .25s ease;
    opacity:0;
    padding-left:10px; /* further indent */
  }

  .subsubmenu a{
    display:block;
    padding:8px 12px;
    margin:6px 0;
    font-size:0.9rem;
    color:#bcd7fb;
    text-decoration:none;
    border-radius:6px;
  }
  .subsubmenu a:hover { background:rgba(255,255,255,0.02); color:var(--text); }

  /* When first checkbox is checked, open submenu and rotate caret */
  #m1:checked + label.top-label + .submenu {
    max-height:600px; /* large enough to show all children */
    opacity:1;
    padding-top: 12px;
  }
  
  #m1:checked + label.top-label .caret {
    transform:rotate(90deg);
    color:var(--accent);
  }

  /* nested checkbox for level 3 inside submenu */
  .submenu input[type="checkbox"]{ display:none; }
  .submenu label.sub-toggle{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 14px;
    border-radius:8px;
    cursor:pointer;
    color:var(--muted);
    font-size:0.95rem;
    margin:6px 0;
    text-decoration:none;
  }
  .submenu label.sub-toggle:hover { color:var(--text); background:rgba(255,255,255,0.02); }

  /* open the subsubmenu when its checkbox is checked */
  #m2:checked + label.sub-toggle + .subsubmenu {
    max-height:400px;
    opacity:1;
  }
  /* rotate its caret */
  #m2:checked + label.sub-toggle .caret {
    transform:rotate(90deg);
    color:var(--accent);
  }

  /* second and third top links (simple anchors) */
  .top-static {
    display:block;
    font-size:15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-decoration:none;
    color:#000000;
    padding:12px 14px;
    border-radius:8px;
    margin:6px 0;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .top-static:hover { background:rgba(255,255,255,0.03); }

  .link-2{
    padding-top: 20px;
  }

  /* small responsive tweaks */
  @media (max-width:480px){
    body{ padding:18px; }
    .menu{ max-width:100%; padding:10px; border-radius:10px; }
    .top-link, .top-static, .submenu a, .submenu label.sub-toggle { font-size:0.95rem; }
    .caret{
        font-size: 0.95rem;
        font-family: var(--single-line-body-base-font-family), sans-serif;
        padding: 12px 14px;
    }
  }

  @media (min-width:900px){
    .menu{ max-width:520px; }
  }

/* Marquee Section */
.marquee-section {
    overflow: hidden;
    padding: 130px 0;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 53px;
}

.marquee-line {
    font-family: "TOP_LUXURY-Regular", serif;
    font-size: 40px;
    color: #989898;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    will-change: transform;
    line-height: 1;
}

/* GSAP will handle the marquee animations - CSS animations removed */

.coll-grid-item a{
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .service-item h3 {
        font-size: 14px;
        font-weight: normal;
        line-height: 18px;
        max-width: 12ch;
        margin-left: auto;
        margin-right: auto;
    }
}
