/* ================== VARIABLES & GLOBAL STYLES ================== */
:root {
  --bg-color: #121212;
  --primary-text: #E0E0E0;
  --accent-color: #C5A46C;
  --card-bg: #1F1F1F;
  --border-color: rgba(255, 255, 255, 0.1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--primary-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: white;
  font-weight: 500;
}

a {
  color: var(--primary-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  font-size: 0.9rem;
  color: var(--accent-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.section-title h2 {
  font-size: 3rem;
  margin-top: 10px;
}

/* ================== HEADER ================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background-color: var(--bg-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo h1 {
  font-size: 1.8rem;
  color: white;
}

.logo span {
  font-size: 0.7rem;
  color: var(--primary-text);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  gap: 35px; 
}
/* ================== HEADER (UPDATED FOR CART) ================== */
.header-right {
  display: flex;
  align-items: center;
  gap: 30px; /* This creates the space between "Contacts" and the cart icon */
}

.header-cart a {
    position: relative;
    font-size: 1.4rem;
    color: var(--primary-text);
    display: flex; /* Helps align the icon and counter */
    align-items: center;
    gap: 8px; /* Space between the icon and the number */
}
.header-cart a:hover {
  color: var(--accent-color);
}
.cart-counter {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    /* Hide the counter if it's zero (JS will handle this) */
    display: none; 
}
/* ================== MOBILE CART LINK STYLES ================== */

/* By default, hide the mobile cart link on desktop screens */
.mobile-cart-link {
    display: none;
}


/* ================== HERO SECTION ================== */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0;
}

.hero-slides-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 40px;
  border-radius: 10px;
  transition: opacity 0.5s ease-in-out;
}

.hero-content.has-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.hero-content h1,
.hero-content h2,
.hero-content p {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content h2 {
  color: var(--accent-color);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 3px;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin: 20px 0;
  line-height: 1.2;
}

.hero-content p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn:hover {
  background-color: var(--accent-color);
  color: var(--bg-color);
}

/* ================== OUR PROMISE SECTION ================== */
#our-promise {
    background-color: var(--card-bg);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.promise-item {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.promise-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.promise-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.promise-item h3 {
    color: #FFFFFF;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.promise-item p {
    color: var(--primary-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================== ABOUT SECTION ================== */
#about {
    background-color: var(--bg-color);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    padding-right: 30px;
}

.about-text > span {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.about-text h2 span {
    display: inline;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 3rem;
    text-transform: none;
    letter-spacing: normal;
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--primary-text);
}

.btn-secondary {
    color: var(--accent-color);
    font-weight: bold;
}

.btn-secondary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover i {
    transform: translateX(5px);
}

.about-images-stack {
    flex: 1;
    position: relative;
    min-height: 450px; 
    cursor: pointer;
}

.stack-image-wrapper {
    position: absolute;
    width: 80%;
    height: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease-in-out, z-index 0.5s step-end;
}

.stack-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #fff;
}

.close-image-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-images-stack:hover .stack-pos-3 .close-image-btn {
    opacity: 1;
}

.stack-pos-1 { transform: rotate(-8deg); z-index: 1; }
.stack-pos-2 { top: 30px; left: 5%; transform: rotate(2deg); z-index: 2; }
.stack-pos-3 { top: 15px; left: 15%; transform: rotate(10deg); z-index: 3; }

.about-images-stack:hover .stack-pos-1 { transform: rotate(-12deg) translate(-20px, 10px); }
.about-images-stack:hover .stack-pos-2 { transform: rotate(0deg) translateY(-10px); }
.about-images-stack:hover .stack-pos-3 { transform: rotate(15deg) translate(20px, 10px); }


/* ================== RESPONSIVE FOR IMAGE STACK ================== */

@media (max-width: 768px) {
    /* Target the container of the image stack */
    .about-images-stack {
        min-height: auto; /* Remove the fixed height */
        padding: 20px 0;
    }

    /* Target the individual image wrappers inside the stack */
    .stack-image-wrapper {
        position: relative; /* Change from absolute to relative to stack them vertically */
        width: 100%; /* Make them full width of the container */
        height: auto; /* Let the height be determined by the image aspect ratio */
        
        /* Reset all the desktop transformations and positioning */
        transform: none !important;
        top: auto !important;
        left: auto !important;
        
        /* Hide all but the first image */
        display: none;
    }

    /* This rule specifically targets ONLY the first image in the stack and makes it visible */
    .stack-image-wrapper:first-child {
        display: block;
    }

    /* Hide the 'close' button on mobile as it's no longer needed */
    .close-image-btn {
        display: none;
    }
}
/* ================== PRODUCTS SECTION (REVAMPED) ================== */
#products {
  background-color: var(--card-bg);
}

.product-grid-revamped {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card-revamped {
  background-color: var(--bg-color);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.product-card-revamped:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.product-card-revamped img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card-revamped:hover img {
    transform: scale(1.05);
}

.product-card-revamped h3 {
  font-size: 1.4rem;
  padding: 20px;
}

.product-card-revamped .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--bg-color);
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 4px;
}

.view-more-container {
    text-align: center;
    margin-top: 60px;
}


/* ================== TESTIMONIALS (REVAMPED & STYLED) ================== */
#testimonials {
  background-color: var(--bg-color);
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden; /* Ensures no weird overlaps */
}

.title-underline {
  position: relative;
  padding-bottom: 25px; /* Makes space for the line */
}

.title-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='8' viewBox='0 0 80 8'%3E%3Cpath d='M0 4 Q 10 0, 20 4 T 40 4 T 60 4 T 80 4' stroke='%23C5A46C' fill='transparent' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}



.testimonial-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.testimonial-content {
  max-width: 700px;
  text-align: center;
  border: 2px solid var(--accent-color); /* Kept the elegant border */
  padding: 60px 50px; /* Increased padding */
  position: relative;
  border-radius: 20px; /* Slightly more rounded */
  background-color: var(--card-bg);
  /* NEW: Subtle geometric background pattern like the reference */
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233a3a3a' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  transition: opacity 0.3s ease-in-out;
}

.quote-icon {
  /* This now styles the <i> tag */
  font-size: 3rem; /* Adjusted size for an icon */
  color: var(--accent-color);
  position: absolute;
  top: 30px; /* Adjusted position */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8; /* Made it slightly more prominent */
}

.testimonial-content p {
  font-size: 1.4rem; /* INCREASED: Larger font size */
  line-height: 1.8; /* INCREASED: More space between lines */
  font-weight: 300;
  color: var(--primary-text); 
  padding: 0 15px; /* Adds horizontal space */
}

.arrow {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--primary-text);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--bg-color);
}
/* ================== PRODUCT MODAL (ENHANCED) ================== */
#product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#product-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--card-bg);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233a3a3a' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 90%;
    max-width: 1000px;
    padding: 40px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 15px;
}

#product-modal.show .modal-content {
    transform: scale(1);
}

@keyframes modalContentFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#product-modal.show .modal-image,
#product-modal.show .modal-details {
    animation: modalContentFadeIn 0.5s ease 0.2s backwards;
}

#close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--primary-text);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#close-modal:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.modal-image img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(201, 164, 108, 0.15);
}

.modal-details h2 {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.modal-details h4 {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: #fff;
    margin-top: 25px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.modal-details p {
    color: var(--primary-text);
    line-height: 1.7;
    font-size: 1.05rem;
}


/* ================== MODAL OPTIONS (ENHANCED) ================== */
.modal-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
    gap: 30px;
}

.modal-options .form-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-options label {
    font-weight: 700;
    color: var(--primary-text);
    font-size: 1rem;
    flex-shrink: 0; /* Prevents label from wrapping */
}

/* Common styles for select and number input */
.modal-options select,
.modal-options input[type="number"] {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--primary-text);
    border-radius: 8px;
    padding: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.modal-options select:focus,
.modal-options input[type="number"]:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Custom styling for the dropdown */
.modal-options select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C5A46C' 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 12px center;
    padding-right: 40px; /* Make space for the custom arrow */
}

/* Custom styling for the quantity input */
.modal-options input[type="number"] {
    width: 80px;
    text-align: center;
}
/* Hide the default spinners */
.modal-options input[type="number"]::-webkit-inner-spin-button,
.modal-options input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.modal-options input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.modal-price-display {
    text-align: right;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 15px;
}

.modal-action {
    margin-top: 30px;
}


/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
        padding: 30px;
    }
    .modal-details h2 {
        font-size: 2rem;
    }
    .modal-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .modal-options .form-group {
        width: 100%;
        justify-content: space-between;
    }
}


/* ================== FOOTER ================== */
.footer {
  background-color: #0c0c0c;
  padding: 80px 0 0;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  display: grid;
  /* UPDATED: Adjust grid for 4 columns on desktop */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col .logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-about {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.social-icons a {
  margin-right: 15px;
  font-size: 1.2rem;
}

.footer-col h3 {
  margin-bottom: 20px;
  color: var(--accent-color);
  font-size: 1.3rem;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-col ul li i {
  color: var(--accent-color);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer-col ul li a:hover {
  padding-left: 5px;
}

/* NEW: Styles for the quote in the footer */
.footer-quote {
    font-style: italic;
    color: var(--primary-text);
    opacity: 0.8;
    line-height: 1.7;
    border-left: 3px solid var(--accent-color);
    padding-left: 15px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* ================== UTILITIES ================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--accent-color);
  color: var(--bg-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1200px) {
  /* On tablets, go to 2 columns */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-text {
    padding-right: 0;
  }
  
  .promise-grid, .product-grid-revamped {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr; /* On mobile, stack to 1 column */
  }
}
/* ================== MOBILE NAVIGATION STYLES ================== */

/* Hide the toggle button on desktop */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-text);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001; /* Ensure it's on top */
}

.icon-close {
    display: none; /* Hide the 'X' icon by default */
}


/* This is where the magic happens - when the screen is 768px or less */
@media (max-width: 768px) {
    
    /* Show the hamburger button */
    .mobile-nav-toggle {
        display: block;
    }

    /* Change the desktop nav into a mobile panel */
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--card-bg);
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        z-index: 1000;
        
        /* Hide it off-screen by default */
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }
    
    /* When the .nav-open class is added, slide the panel in */
    .nav-open .main-nav {
        transform: translateX(0);
    }
    
    /* Style the links for a mobile menu */
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        padding-top: 100px; /* Space from the top */
        gap: 0;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 20px 0;
        width: 100%;
        text-align: center;
        font-size: 1.2rem;
        transition: background-color 0.3s ease;
    }

    .main-nav ul li a:hover {
        background-color: var(--accent-color);
        color: var(--bg-color);
    }
    
    /* Hide the hamburger and show the 'X' when the menu is open */
    .nav-open .icon-hamburger {
        display: none;
    }
    .nav-open .icon-close {
        display: block;
    }
    
    /* Hide the desktop cart and show the mobile one (if needed, otherwise remove) */
    .header-right > .header-cart {
        display: none; /* We will place it inside the mobile menu later if desired */
    }
    .mobile-cart-link {
        display: block;
        margin-top: 20px; /* Adds some space above it */
        border-top: 1px solid var(--border-color); /* Separator line */
    }
}