/** Shopify CDN: Minification failed

Line 1362:0 Expected "}" to go with "{"

**/
/* Oscar Niemeyer Inspired Variables */
:root {
    --color-niemeyer-white: #F8F8F8; /* Pristine White */
    --color-niemeyer-light-grey: #EAEAEA; /* Soft Light Grey */
    --color-niemeyer-dark-grey: #4A4A4A; /* Gentle Dark Grey for text */
    --color-niemeyer-sky-blue: #00AEEF; /* Clear Sky Blue accent */
    --color-niemeyer-earth-tone: #A36A5B; /* Subtle earthy accent */
    --color-niemeyer-shadow-light: rgba(0, 0, 0, 0.04); /* Very soft shadow */
    --color-niemeyer-shadow-medium: rgba(0, 0, 0, 0.08); /* Medium soft shadow */

    --font-heading: 'Playfair Display', serif; /* Elegant, artistic */
    --font-body: 'Lato', sans-serif; /* Clean, modern, light */

    /* Re-mapping original vars for consistency */
    --color-primary: var(--color-niemeyer-sky-blue);
    --color-secondary: var(--color-niemeyer-earth-tone);
    --color-text: var(--color-niemeyer-dark-grey);
    --color-light-bg: var(--color-niemeyer-white);
    --color-white: var(--color-niemeyer-white);
    --color-dark-bg-carousel: #000000; /* Keep dark for carousel images */
    --color-text-light: #FFFFFF;
    --color-border: rgba(0,0,0,0.02); /* Almost invisible border */
    --nav-height: 90px; /* Define nav height as variable */

    /* NEW: Gradient Variable for CTA-like sections */
    --gradient-niemeyer-cta: linear-gradient(135deg, var(--color-niemeyer-sky-blue) 0%, var(--color-niemeyer-earth-tone) 100%);
}


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

html {
    scroll-behavior: smooth;
    /* Set a base font size for rem units. 16px is standard. */
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-niemeyer-white);
    color: var(--color-niemeyer-dark-grey);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Ensure body font size is consistent */
    font-size: 1rem; /* This will be 16px based on html font-size */
    font-weight: 400;
}

/* Specific font size adjustments with !important for Shopify override */
.nav-links a {
  color: var(--color-niemeyer-dark-grey);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  display: inline-block;
}
.logo-text {
    font-size: 2.5rem !important; /* ~40px */
}
.hero-tagline {
    font-size: 3rem !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    color: var(--color-niemeyer-sky-blue) !important; /* Added to set the blue color */
}
.hero-description {
    font-size: 1.6rem !important; /* ~25.6px */
    opacity: 1 !important; 
    visibility: visible !important; 
    transform: translateY(0) !important;
}
.section-subtitle {
    font-size: 2.2rem !important; /* ~25.6px */
}
.product-description {
    font-size: 1.5rem !important; /* ~24px */
}
.footer p {
    font-size: 1.6rem !important; /* ~17.6px */
}
.copyright {
    font-size: 1rem !important; /* ~16px */
}


/* Hide mobile nav elements if they are not used on desktop */
/* This block was incorrectly placed and had a closing brace */
/* Removed the extra closing brace and placed it correctly below */
.nav-drawer,
.mobile-nav,
.logo-fallback {
    visibility: hidden;
    opacity: 0;
    display: none; /* Ensure they are not rendered */
}


/* Niemeyer-Inspired Background Elements (Subtle Curves) */
.niemeyer-bg-curve {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: radial-gradient(circle at 10% 90%, rgba(0, 174, 239, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 10%, rgba(163, 106, 91, 0.03) 0%, transparent 40%);
    animation: gentleFlow 40s ease-in-out infinite alternate;
}

@keyframes gentleFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Nav Icons (Search, Account, Cart) */
.nav-icons {
    display: flex !important;
    gap: 25px !important; /* Adjusted from 1.5rem to 25px for consistency */
    align-items: center !important;
    justify-content: flex-end !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
}

.nav-icons a {
    color: var(--color-niemeyer-dark-grey) !important;
    font-size: 1.8rem !important; /* Adjusted for larger icons */
    transition: color 0.3s ease;
    position: relative;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-decoration: none !important;
}

.nav-icons a:hover {
    color: var(--color-niemeyer-sky-blue) !important;
}

.nav-icons a i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Navigation (Light & Minimal) */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 25px 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    display: flex; /* Ensure flex display */
    justify-content: space-between; /* Space out children: logo, nav-links, nav-icons */
    align-items: center; /* Vertically center children */
    box-shadow: 0 1px 5px var(--color-niemeyer-shadow-light);
    transition: all 0.3s ease;
    height: var(--nav-height);
    width: 100%; /* Ensure it takes full width */
}

.logo {
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 15px;
    transition: transform 0.3s ease;
    text-shadow: none;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-niemeyer-sky-blue);
    text-shadow: 0.5px 0.5px 1px rgba(0,0,0,.05);
    white-space: nowrap;
    position: relative;
    display: inline-block;
}

.logo .logo-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-niemeyer-sky-blue);
    transform: skewX(-20deg) scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
    border-radius: 50%;
}
.logo:hover .logo-text::after {
    transform: skewX(0deg) scaleX(1);
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
    flex-grow: 1; /* Allow to take available space */
    justify-content: center; /* Center links within their flex space */
    padding: 0; /* Ensure no extra padding pushing them */
    margin: 0; /* Ensure no extra margin pushing them */
}

.nav-links a:hover {
  color: var(--color-niemeyer-sky-blue);
  font-weight: 500; /* Keep same weight to prevent reflow */
  text-shadow: 0 0 1px rgba(0, 174, 239, 0.3);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-niemeyer-earth-tone);
    color: var(--color-white);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}

.cta-btn {
    font-family: var(--font-body);
    background: var(--color-niemeyer-sky-blue);
    color: var(--color-white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 15px rgba(0, 174, 239, 0.2);
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    background: var(--color-niemeyer-earth-tone);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(163, 106, 91, 0.3);
}

.btn-secondary {
    font-family: var(--font-body);
    background: transparent;
    color: var(--color-niemeyer-sky-blue);
    border: 2px solid var(--color-niemeyer-sky-blue);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: var(--color-niemeyer-sky-blue);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.3);
}

/* General Section Styling */
section {
    padding: 50px ;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 7.5rem;
    color: var(--color-niemeyer-dark-grey);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.02);
}

/* Image Carousel Section (Niemeyer Adaptation) */
.image-carousel-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: transparent;
  margin-top: var(--nav-height);
  height: calc(100vh - var(--nav-height)); /* Full viewport minus nav */
  padding: 0;
  z-index: 1;
}

.image-carousel-section.banner-full {
  height: 100vh;
}
.image-carousel-section.banner-large {
  height: 75vh;
}
.image-carousel-section.banner-medium {
  height: 50vh;
}
.image-carousel-section.banner-small {
  height: 35vh;
}

.carousel-aspect-ratio-box {
  position: relative;
  width: 100%;
  height: 100%; /* Take full height from parent */
  background-color: transparent;
}

.carousel-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

.carousel-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-container,
.carousel-slide {
  height: 100%;
  width: 100%;
}



/* Changed top gradient to transparent to avoid "black border" appearance */
.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height); /* Match nav height */
    background: linear-gradient(to bottom, rgba(255,255,255,0.0), transparent); /* Fully transparent gradient */
    z-index: 2;
}

/* This gradient creates a fade to white at the bottom, keep if intended */
.carousel-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--color-niemeyer-white));
}

.carousel-button-container {
   position: absolute;
  bottom: 70px;
  left: 20%;
  transform: translateX(-50%);
  z-index: 3;
}

.carousel-button-container .cta-btn {
  font-size: 1.3rem;
  padding: 15px 30px;
  white-space: nowrap;
}

.carousel-nav-btn, .carousel-dots {
    display: none;
}

/* Hero Section (Niemeyer Adaptation) */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 120px;
    position: relative;
    background: var(--color-niemeyer-white);
    border-bottom: none;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    animation: fadeInSlightlyUp 1.5s ease-out;
    padding: 20px;
    position: relative;
}

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

.hero-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 8rem;
    color: var(--color-niemeyer-dark-grey);
    margin-bottom: 20px;
    line-height: 1;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.05);
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.1) 0%, transparent 50%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.5;
    z-index: -1;
    animation: lightPulse 5s ease-in-out infinite alternate;
}

@keyframes lightPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section (Curves & Lightness) */
.features {
    background-color: var(--color-niemeyer-light-grey);
    border-bottom: none;
    padding: 100px 50px;
}
.features .section-title {
    color: var(--color-niemeyer-dark-grey);
}
.features .section-subtitle {
    color: var(--color-niemeyer-dark-grey);
    opacity: 0.9;
}
/* Features Grid (Now 3 Columns) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.feature-card {
    background-color: var(--color-white);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px var(--color-niemeyer-shadow-medium);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-out;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 174, 239, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease-out;
}
.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px var(--color-niemeyer-shadow-medium);
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-niemeyer-sky-blue);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 3rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 174, 239, 0.2);
}
.feature-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-niemeyer-dark-grey);
    margin-bottom: 15px;
    letter-spacing: normal;
}
.feature-description {
    font-family: var(--font-body);
    color: var(--color-niemeyer-dark-grey);
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    flex-grow: 1;
}

/* Product Previews Section (Sculptural Innovations) */
.product-previews-section {
    background: var(--gradient-niemeyer-cta);
    border-top: none;
    border-bottom: 1px solid var(--color-border);
    padding: 100px 50px;
    margin-top: 30px;
}
.product-title {
    font-size: 2.8rem; /* Was 2.2rem */
}

.product-price {
    font-size: 1.8rem; /* Was 1.4rem */
}


/* Adjust text colors within the new gradient section */
.product-previews-section .section-title,
.product-previews-section .section-subtitle {
    color: var(--color-white);
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}
/* Product Grid (Back to a standard Grid) */
.product-previews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    margin-top: 60px;
    overflow-x: unset;
    -webkit-overflow-scrolling: unset;
    padding: 0;
    justify-content: unset;
    align-items: unset;
}
/* Hide scrollbar for aesthetic purposes (optional) */
.product-previews-grid::-webkit-scrollbar {
    height: 8px;
    background: transparent;
}
.product-previews-grid::-webkit-scrollbar-thumb {
    background-color: rgba(0, 174, 239, 0.3);
    border-radius: 10px;
}
.product-previews-grid::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.product-card {
    background: var(--color-white);
    border: none;
    border-radius: 30px;
    box-shadow: 0 10px 30px var(--color-niemeyer-shadow-light);
    padding: 40px;
    transition: all 0.4s ease-out;
    display: flex;
    align-items: center;
    gap: 60px;
    height: auto;
    scroll-snap-align: unset;
    text-align: left;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    flex-direction: row;
}


.product-card-reverse {
    flex-direction: row-reverse;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 15px 40px var(--color-niemeyer-shadow-medium);
}

.product-media {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;

}

.product-image {
    border: none;
    object-fit: cover;
    height: 300px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 0;
}

/* Image Shapes */
.image-rounded-square {
    border-radius: 20px;
}

.image-circle {
    border-radius: 50%;
    width: 300px;
}

.product-content {
    flex: 1;  /* Remove or comment out: flex: 1; */
    
}

.product-card-reverse .product-content {
    align-items: flex-end;
    text-align: right;
}

.product-title {
    font-family: var(--font-heading);
    color: var(--color-niemeyer-sky-blue);
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.2;
}

.product-price {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-niemeyer-earth-tone);
    margin-bottom: 15px;
}

.product-description {
    font-family: var(--font-body);
    color: var(--color-niemeyer-dark-grey);
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}
.product-btn {
    background: var(--color-white);
    color: var(--color-niemeyer-sky-blue);
    border: 2px solid var(--color-niemeyer-sky-blue);
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.2);
    margin-top: auto;
    text-align: center;
    width: auto;
}
.product-btn:hover {
    background: var(--color-niemeyer-sky-blue);
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.3);
    transform: translateY(-3px);
}

/* Company Reviews Section (Fluid Testimonials) */
.reviews-section {
    background: var(--gradient-niemeyer-cta);
    border-top: none;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-niemeyer-dark-grey);
    padding: 100px 50px;
}
/* Adjust text colors within the new gradient section */
.reviews-section .section-title,
.reviews-section .section-subtitle {
    color: var(--color-white);
}
/* Reviews Grid (Now 3 columns) */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.review-card {
    background: var(--color-white);
    border: none;
    border-radius: 40px;
    box-shadow: 0 8px 20px var(--color-niemeyer-shadow-light);
    padding: 35px;
    transition: all 0.4s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.review-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 12px 30px var(--color-niemeyer-shadow-medium);
}
.review-text {
    font-family: var(--font-body);
    color: var(--color-niemeyer-dark-grey);
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.9;
    flex-grow: 1;
}
.reviewer-name {
    font-family: var(--font-heading);
    color: var(--color-niemeyer-sky-blue);
    font-size: 1.4rem;
    margin-top: 20px;
}
.reviewer-title {
    font-family: var(--font-body);
    color: var(--color-niemeyer-dark-grey);
    font-size: 0.95rem;
}

/* CTA Section (Seamless Engagement) */
.cta-section {
    background: var(--gradient-niemeyer-cta);
    color: var(--color-white);
    padding: 100px 50px;
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom-left-radius: 500px 50px;
    border-bottom-right-radius: 500px 50px;
}

.cta-section .section-title {
    color: var(--color-white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}
.cta-section .section-subtitle {
    color: var(--color-text-light);
    opacity: 0.9;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Styles for the subscribe field */
.subscribe-form {
    display: flex !important;
    flex-direction: row; /* Default to row for larger screens */
    justify-content: center;
    margin-top: 40px;
    gap: 20px; /* Spacing between input and button */
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.subscribe-form input[type="email"] {
    padding: 18px 30px;
    border-radius: 50px;
    border: none;
    width: 400px;
    max-width: 100%; /* Changed from 80% to 100% for better flexibility */
    font-size: 1.1rem;
    font-family: var(--font-body);
    color: var(--color-niemeyer-dark-grey);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.subscribe-form input[type="email"]::placeholder {
    color: rgba(74, 74, 74, 0.6);
}

.subscribe-form input[type="email"]:focus {
    outline: none;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1), 0 0 0 3px var(--color-niemeyer-sky-blue);
}

.subscribe-form .cta-btn {
    padding: 18px 40px;
    font-size: 1.3rem;
    margin-top: 0; /* Reset margin-top for larger screens */
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}


/* Footer (Elegant Foundation) */
.footer {
    padding: 60px 50px;
    background-color: var(--color-niemeyer-light-grey);
    color: var(--color-niemeyer-dark-grey);
    border-top: none;
    font-family: var(--font-body);
    width: 100%; /* Ensure footer spans full width */
    box-sizing: border-box; /* Include padding in width */
    display: flex; /* Make footer a flex container */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    text-align: center; /* Keep for text within p tags etc. */
}
/* Footer Logo (Now an image with text) */
.footer-logo {
    display: flex;
    justify-content: center; /* Centers items horizontally within the flex container */
    align-items: center;
    margin-bottom: 20px;
    width: 100%; /* Ensure the logo container takes full width to allow centering */
}
/* Style for footer logo text */
.footer-logo img {
    height: 40px !important; /* Force height */
    width: auto !important; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure it doesn't overflow its container */
    margin-right: 10px;
    opacity: 0.8;
}
.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--color-niemeyer-sky-blue);
    text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.05);
    opacity: 0.8;
}

.social-icons {
    margin-top: 30px;
}
.social-icons a {
    color: var(--color-niemeyer-dark-grey);
    font-size: 1.8em;
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    opacity: 0.8;
}
.social-icons a:hover {
    color: var(--color-niemeyer-sky-blue);
    transform: translateY(-3px);
    opacity: 1;
}


/* IMPORTANT: This rule ensures the accessibility UL is hidden */
ul[hidden] {
    display: none !important;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .product-previews-grid, .reviews-grid, .features-grid {
        grid-template-columns: 1fr;
        padding: 0 30px;
        gap: 50px;
    }
    .product-card, .review-card, .feature-card {
        min-width: unset;
        width: auto;
    }
    .carousel-button-container {
        position: static;
        margin-top: 20px;
        transform: none;
        text-align: center;
        width: 100%;
    }
    /* Product Card for mobile */
    .product-card, .product-card-reverse {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .product-media {
        margin-bottom: 20px;
    }
    .product-content {
        align-items: center;
    }
    .product-card-reverse .product-content {
        align-items: center;
    }
    .product-image {
        height: 220px;
        width: auto;
        max-width: 100%;
    }

    /* Newsletter form stacking on smaller screens */
    .subscribe-form {
        flex-direction: column; /* Stack input and button vertically */
        align-items: center; /* Center them when stacked */
        gap: 15px; /* Adjust gap for vertical stacking */
    }
    .subscribe-form input[type="email"] {
        width: 100%; /* Ensure input takes full width when stacked */
        max-width: 350px; /* Limit max width for better appearance */
    }
    .subscribe-form .cta-btn {
        width: 100%; /* Ensure button takes full width when stacked */
        max-width: 350px; /* Limit max width for better appearance */
    }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--color-niemeyer-dark-grey);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile visibility */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}


@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: var(--color-light-bg);
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    padding: 20px 0;
    box-shadow: 0 4px 10px var(--color-niemeyer-shadow-light);
    z-index: 999;
  }
    .nav-links a {
    text-align: center;
    font-size: 1.3rem;
  }
.nav-links.open {
  display: flex;
}
  .hamburger {
  background-color: red;
}

    .logo img {
        height: 40px;
        margin-right: 10px;
    }
    .logo-text {
        font-size: 1.8rem !important;
    }

    section {
        padding: 60px 20px;
    }
    .section-title {
        font-size: 3.5rem;
    }
    .section-subtitle {
        font-size: 1.3rem !important;
    }
    
    .carousel-nav-btn, .carousel-dots {
        display: none;
    }
    .carousel-button-container {
        position: static;
        margin-top: 20px;
        text-align: center;
        width: 100%;
    }
    .carousel-slide {
        justify-content: space-around;
        padding-bottom: 20px;
    }

    .hero-logo {
        font-size: 6rem;
    }
    hero-tagline {
  
  font-size: 2rem !important;

   }
    .hero-description {
        font-size: 1.3rem !important;
    }

    .features-grid, .product-previews-grid, .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    .product-card, .review-card, .feature-card {
        min-width: unset;
        width: auto;
    }
    
    .cta-section .section-title {
        font-size: 3rem;
    }
    .cta-section .section-subtitle {
        font-size: 1.3rem !important;
    }

    .subscribe-form input[type="email"] {
        width: 90%;
    }

    .footer-logo img {
        height: 30px;
        margin-right: 8px;
    }
    .footer-logo .logo-text {
        font-size: 1.6rem !important;
    }
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
  @media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .nav-toggle i {
    font-size: 1.8rem;
    color: var(--color-niemeyer-dark-grey);
  }
}

  /* Desktop default: full screen */
.image-carousel-section.banner-full {
  height: 100vh;
}

  /* Hide the <img> on desktop, show on mobile */
.banner-mobile-img {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
}

  @media (max-width: 768px) {
  .banner-mobile-img {
    display: block;
  }

    /* Hide background-based banner on mobile */
  .carousel-container {
    display: none;
  }
    .image-carousel-section {
    height: auto !important;
    padding: 0;
    margin-top: var(--nav-height);
  }
}

  
/* Mobile Banner Height Fixes */
@media (max-width: 768px) {
  .image-carousel-section {
   margin-top: var(--nav-height);
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  .image-carousel-section.banner-full {
   height: auto;
    aspect-ratio: 16 / 9; /* or adjust to your image shape */
  }
  
  .image-carousel-section.banner-large {
    height: 80vh; /* Increased from 75vh */
    min-height: 80vh;
  }
  
  .image-carousel-section.banner-medium {
    height: 60vh; /* Increased from 50vh */
    min-height: 60vh;
  }
  
  .image-carousel-section.banner-small {
    height: 50vh; /* Increased from 35vh */
    min-height: 50vh;
  }
  
  .carousel-aspect-ratio-box {
    height: 100%;
    min-height: inherit;
  }
  
  .carousel-container {
height: auto !important;
    min-height: 50vh;
  }
  
  .carousel-slide {
   height: auto !important;
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

   .carousel-container,
  .carousel-slide {
    height: 100%;
    width: 100%;
  }

    .carousel-slide {
    background-size: cover;
    background-position: center center;
  }
  }
  .product-previews-section {
    margin-top: 15px !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
  /* Ensure the button container is properly positioned on mobile */
 @media (max-width: 768px) {
.carousel-button-container {
    carousel-button-container {
    position: absolute !important;
    bottom: 20px !important; /* Move further down */
    left: 20px !important;   /* Align left */
    transform: none !important; /* Remove center transform */
    z-index: 10 !important;
    width: auto !important;
    text-align: left !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    pointer-events: auto !important;
  }
  
  /* Make sure the CTA button is visible and properly sized on mobile */
    .carousel-button-container .cta-btn {
   display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 11 !important;
    padding: 12px 24px !important;
    font-size: 1.1rem !important;
    white-space: nowrap !important;
    pointer-events: auto !important;
    background: var(--color-niemeyer-sky-blue) !important;
    color: var(--color-white) !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  }
 .product-previews-section {
    margin-top: 10px !important;
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
} 

@media (max-width: 768px) {
    .product-card,
    .product-card-reverse {
        flex-direction: column;
    }

   /* Force all product content to be left-aligned on mobile */
    .product-card .product-content,
    .product-card-reverse .product-content {
        text-align: center !important;
    }
  
    .product-content {
        width: 100%;
        text-align: left;
    }
    
    .product-media {
        width: 100%;
    }
  @media (max-width: 768px) {
    .product-btn {
        width: 100%;
        text-align: center;
    }

}

  @media (max-width: 768px) {
    .product-card .product-btn {
        flex: none;
        width: auto;
        align-self: flex-start;
    }
}

/* Additional fix for very small screens */
@media (max-width: 480px) {
  .image-carousel-section {
    min-height: 50vh;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }

  .image-carousel-section.banner-small {
    height: 45vh;
    min-height: 45vh;
  }

  .carousel-button-container {
    position: static !important;
    margin-top: 20px;
    text-align: center;
    transform: none !important;
    padding: 0 20px;
    width: 100%;
    z-index: 3;
  }

  .carousel-button-container .cta-btn {
    display: inline-block;
    font-size: 1rem;
    padding: 12px 20px;
  }
}


  .image-carousel-section {
  padding: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .product-previews-section {
    margin-top: 10px !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .image-carousel-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}



}
