/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Serif', serif;
}

html {
    scroll-behavior: auto;
    scroll-padding-top: 0;
    overflow-x: hidden;
}

body {
    scroll-behavior: auto;
    scroll-padding-top: 0;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #ff6b9d;
    --text-dark: #000000;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Z-Index Hierarchy:
   1: Floating elements (background)
   10: Cart count badge
   1000: Navigation bar
   1001: Top banner
   1002: Mobile dropdown menu
*/

body {
    font-family: 'Noto Serif', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        url('5.png');
    background-size: 200px 200px;
    background-repeat: repeat;
    background-position: 0 0;
    animation: backgroundMove 20s linear infinite;
    overflow-x: hidden;
}

/* Ensure all text elements use Noto Serif */
h1, h2, h3, h4, h5, h6, p, span, div, a, button, input, textarea, label, li, ul, ol, th, td, caption {
    font-family: 'Noto Serif', serif;
}

/* Floating Elements - Much Larger */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Only cover the viewport height */
    pointer-events: none;
    z-index: 1; /* Below navigation (1000+) */
    transform: translateZ(0); /* Hardware acceleration */
    backface-visibility: hidden; /* Smooth rendering */
    transition: opacity 0.8s ease-in-out;
    display: none; /* Hide floating elements completely */
}

/* Hide floating elements when scrolled past hero section */
.floating-elements.hidden {
    opacity: 0;
    pointer-events: none;
}

.floating-cherry,
.floating-boob {
    position: absolute;
    cursor: grab;
    pointer-events: auto;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    will-change: transform;
    transform: translateZ(0); /* Hardware acceleration */
    backface-visibility: hidden; /* Smooth rendering */
}

.floating-cherry:active,
.floating-boob:active {
    cursor: grabbing;
    transform: scale(1.2);
}

.floating-cherry img,
.floating-boob img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) brightness(0) invert(1) contrast(1.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, filter;
    opacity: 0.9;
}

.floating-cherry:hover img,
.floating-boob:hover img {
    transform: rotate(15deg) scale(1.15);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)) brightness(0) invert(1) contrast(1.2);
    opacity: 1;
}

/* Initial positions for floating elements with varied floating animations */
#cherry1 { top: 25%; left: 15%; animation: smoothFloat 8s ease-in-out infinite; }
#cherry2 { top: 20%; right: 5%; animation: gentleFloat 6s ease-in-out infinite reverse; }
#cherry3 { bottom: 25%; left: 15%; animation: slowFloat 10s ease-in-out infinite; }
#boob1 { top: 45%; right: 8%; animation: smoothFloat 9s ease-in-out infinite; }
#boob2 { bottom: 35%; right: 5%; animation: gentleFloat 7s ease-in-out infinite reverse; }
#boob3 { top: 65%; left: 15%; animation: slowFloat 12s ease-in-out infinite; }

@keyframes floatBounce {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-25px) rotate(3deg) scale(1.02); 
    }
    50% { 
        transform: translateY(-12px) rotate(-2deg) scale(0.98); 
    }
    75% { 
        transform: translateY(-20px) rotate(2deg) scale(1.01); 
    }
}

@keyframes smoothFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-15px) translateX(8px) rotate(3deg) scale(1.05); 
    }
    50% { 
        transform: translateY(-25px) translateX(-5px) rotate(-2deg) scale(1.08); 
    }
    75% { 
        transform: translateY(-10px) translateX(12px) rotate(2deg) scale(1.03); 
    }
}

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    50% { 
        transform: translateY(-20px) rotate(1deg) scale(1.02); 
    }
}

@keyframes slowFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); 
    }
    33% { 
        transform: translateY(-12px) translateX(6px) rotate(1deg) scale(1.03); 
    }
    66% { 
        transform: translateY(-18px) translateX(-3px) rotate(-1deg) scale(1.05); 
    }
}

/* Top Banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #f8b5c1;
    background-image: url('5.png');
    background-size: 200px 200px;
    background-repeat: repeat;
    background-position: 0 0;
    animation: backgroundMove 20s linear infinite;
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 0.4rem 0;
    z-index: 1001;
    transition: all 0.3s ease-in-out;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.top-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: #ffffff;
}

.top-banner.hidden {
    display: none;
}

.banner-image {
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.banner-logo {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    height: 40px;
    width: auto;
    max-width: 150px;
    z-index: 10;
}

.top-banner a {
    text-decoration: none;
    display: block;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-text {
    font-family: 'Noto Serif', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.shipping-banner {
    font-family: 'Noto Serif', serif;
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Navigation - Tata'z Pasties Style */
.navbar {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
    padding: 0.5rem 0;
}

.navbar.hidden {
    display: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 50px;
    position: relative;
}

/* Mobile menu toggle removed */

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    font-family: 'Noto Serif', serif;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
    background: transparent;
    box-shadow: none;
}



.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.search-btn,
.cart-btn {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 182, 193, 0.1));
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0.8rem;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.2);
    backdrop-filter: blur(5px);
}

.search-btn {
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.cart-btn {
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    position: relative;
}

.search-btn:hover,
.cart-btn:hover {
    color: var(--accent-color);
    transform: translateY(-2px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 182, 193, 0.2));
    border-color: rgba(255, 107, 157, 0.5);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.cart-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.search-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.cart-count {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 10;
    border: 2px solid #000000;
}

/* Hero Section - Centered Logo */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding-top: 8rem; /* Account for fixed navigation */
}

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}


.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}


/* Main logo styles removed - using banner-logo instead */

/* Logo-large styles removed - using banner-logo instead */

/* Logo-large hover styles removed - using banner-logo instead */

.hero-tagline {
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.main-title {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 0.25rem;
}

.hero .title-image,
.main-title .title-image,
.hero-tagline .title-image {
    width: 624.26px !important;
    height: 150px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero .title-image:hover,
.main-title .title-image:hover,
.hero-tagline .title-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-cta {
    margin-top: 2rem;
}


.hero-cta a {
    display: inline-block;
    text-decoration: none;
}

.shop-button {
    cursor: pointer;
    transition: var(--transition);
    max-width: 100px;
    height: auto;
    border-radius: 50px;
    box-shadow: 
        0 6px 20px rgba(255, 107, 157, 0.4),
        0 12px 30px rgba(255, 107, 157, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid white;
    filter: brightness(1.05) saturate(1.1);
}

.shop-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(255, 107, 157, 0.5),
        0 20px 40px rgba(255, 107, 157, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid white;
    filter: brightness(1.1) saturate(1.2);
}

.btn {
    padding: 0.8rem 2rem;
    border: 3px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    font-family: 'Noto Serif', serif;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: none;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--bg-white);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--bg-white);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
}

.view-all-img {
    cursor: pointer;
    transition: var(--transition);
    max-width: 100px;
    height: auto;
    border-radius: 50px;
    box-shadow: 
        0 6px 20px rgba(255, 107, 157, 0.4),
        0 12px 30px rgba(255, 107, 157, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid white;
    filter: brightness(1.05) saturate(1.1);
    margin: 0 auto;
    object-fit: contain;
}

.view-all-img:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(255, 107, 157, 0.5),
        0 20px 40px rgba(255, 107, 157, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid white;
    filter: brightness(1.1) saturate(1.2);
}

.send-button-img {
    cursor: pointer;
    transition: var(--transition);
    max-width: 100px;
    height: auto;
    border-radius: 50px;
    border: 3px solid #8B0000;
    filter: brightness(1.05) saturate(1.1);
    display: block;
    margin: 0 auto;
}

button:has(.send-button-img) {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 auto;
    display: block;
}

.send-button-img:hover {
    transform: translateY(-4px) scale(1.05);
    border: 3px solid #8B0000;
    filter: brightness(1.1) saturate(1.2);
}

/* Read Our Story Image Button */
.story-text img.btn {
    cursor: pointer;
    transition: var(--transition);
    max-width: 150px;
    height: auto;
    border-radius: 50px;
    border: 3px solid white !important;
    filter: brightness(1.05) saturate(1.1);
    padding: 0;
    background: transparent;
}

.story-text img.btn:hover {
    transform: translateY(-4px) scale(1.05);
    border: 3px solid white !important;
    filter: brightness(1.1) saturate(1.2);
}

/* Products Section */
.products {
    padding: 8rem 0 6rem 0; /* Add top padding to account for fixed navigation */
}

.section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.section-header .main-title {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
}

.section-header .title-image {
    display: block;
    margin: 0;
    text-align: left;
}

.section-header .main-title:last-child .title-image {
    max-height: 30px;
    max-width: 300px;
}

.section-header:last-child .title-image {
    max-height: 50px;
    max-width: 400px;
}

/* Shop page title images - smaller and same size */
.products .section-header .title-image {
    width: 400px !important;
    height: 96px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* About Section */
.about {
    padding: 8rem 0 6rem 0; /* Add top padding to account for fixed navigation */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    font-family: 'Noto Serif', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    padding: 8rem 0 6rem 0; /* Add top padding to account for fixed navigation */
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-family: 'Noto Serif', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.products-cta {
    text-align: center;
    margin-top: 2rem;
    width: 100%;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-card.featured {
    border: 2px solid var(--text-dark);
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-image {
    margin-bottom: 1.5rem;
}

.placeholder-product {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--border-radius);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.placeholder-product::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: var(--text-dark);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1rem 0;
}

.products-stats {
    text-align: center;
    margin-top: 2rem;
}

.products-stats p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Story Section */
.story {
    padding: 8rem 0 6rem 0; /* Add top padding to account for fixed navigation */
    text-align: center;
}

.story-content h2 {
    font-family: 'Noto Serif', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-header h2 {
    font-family: 'Noto Serif', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.reviews-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    text-align: center;
    padding: 1rem;
    max-width: 250px;
    margin: 0 auto;
}

.review-image {
    margin-bottom: 1rem;
}

.placeholder-review {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
}

.review-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-style: italic;
}

.review-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Founder Story Section */
.founder-story {
    padding: 8rem 0 6rem 0; /* Add top padding to account for fixed navigation */
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.story-text h2 {
    font-family: 'Noto Serif', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.4;
    font-style: italic;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-founder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--text-dark), #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: var(--shadow);
}

.founder-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
    border: 4px solid var(--accent-color);
}

/* Contact Us Section */
.contact-us {
    padding: 4rem 0;
    text-align: center;
    background: transparent;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-us-full-image {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    width: 100%;
}

.contact-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.contact-email {
    font-family: 'Noto Serif', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 107, 157, 0.1);
    border: 2px solid transparent;
}

.contact-email:hover {
    color: var(--text-dark);
    background: rgba(255, 107, 157, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

/* Contact Form */
.contact-form {
    margin-top: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.contact-form h3 {
    font-family: 'Noto Serif', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.form-email {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #d1a3ff;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Noto Serif', serif;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-family: 'Noto Serif', serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Noto Serif', serif;
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: 1rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form .btn:hover {
    background: #e55a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* Privacy Policy Page */
.privacy-policy {
    padding: 8rem 0 6rem 0; /* Add top padding to account for fixed navigation */
    min-height: 80vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.policy-title-image {
    max-width: 400px;
    height: auto;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 1rem;
    color: white;
    font-style: italic;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-section a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.policy-section a:hover {
    color: white;
    text-decoration: underline;
}

/* About Page Styles */
.page-header {
    text-align: center;
    margin: 3rem 0;
}

.page-title-image {
    max-width: 400px;
    height: auto;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}


.about-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-section h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
    font-size: 1.1rem;
    line-height: 1.6;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list strong {
    color: var(--accent-color);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    background: #e55a8a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.social-link i {
    font-size: 1.2rem;
}

/* Story Page Styles - Stringys Format */
.story-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 107, 157, 0.05));
    border-radius: 16px;
    margin-bottom: 3rem;
}

.story-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-intro {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-main {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.story-main h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.story-main p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-commitment {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(255, 107, 157, 0.03));
    border-radius: 12px;
    margin-bottom: 2rem;
}

.story-commitment h2 {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.story-promise {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--accent-color);
    color: white;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.story-promise h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.story-values {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.story-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 107, 157, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 157, 0.3);
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.story-community {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 107, 157, 0.05));
    border-radius: 12px;
}

.story-community h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.story-community p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-community a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.story-community a:hover {
    color: #e55a8a;
    text-decoration: underline;
}

/* About Content Styling - Clean layout */
.about-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.about-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
    font-family: 'Noto Serif', serif;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Noto Serif', serif;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-family: 'Noto Serif', serif;
}

.about-content a:hover {
    color: #e55a8a;
    text-decoration: underline;
}

/* Email styling - underline all emails */
a[href^="mailto:"] {
    text-decoration: underline;
}

.email-underline {
    text-decoration: underline;
    color: inherit;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .about-content {
        padding: 2rem 1rem;
        margin: 2rem auto;
    }
    
    .about-content h1 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
        text-align: left;
    }
}

/* Minimal Contact Form Styling */
.contact-form-minimal {
    background: #f5f5dc;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 800px;
    width: 100%;
}

.form-note {
    text-align: center;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 600;
    font-family: 'Noto Serif', serif;
}

.form-note-image {
    display: block;
    margin: 0 auto 2rem auto;
    max-width: 300px;
    height: auto;
}

.form-field {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.form-field label {
    min-width: 100px;
    font-weight: 600;
    color: #8B0000;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-field input {
    flex: 1;
    border: none;
    border-bottom: 1px solid #8B0000;
    background: transparent;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #8B0000;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-field input:focus {
    border-bottom-color: #8B0000;
}

.form-field input::placeholder {
    color: #8B0000;
    opacity: 0.7;
}

.form-field textarea {
    flex: 1;
    border: 1px solid #8B0000;
    background: transparent;
    padding: 0.75rem;
    font-size: 1rem;
    color: #8B0000;
    outline: none;
    resize: vertical;
    min-height: 100px;
    font-family: 'Noto Serif', serif;
    transition: border-color 0.3s ease;
}

.form-field textarea:focus {
    border-color: #8B0000;
}

.form-field textarea::placeholder {
    color: #8B0000;
    opacity: 0.7;
}

/* Ambassador Program Page Styling - Dark Red */
.ambassador-program .form-field label {
    color: #8B0000 !important;
    font-family: 'Noto Serif', serif !important;
}

.ambassador-program .form-field input {
    border-bottom: 1px solid #8B0000 !important;
    color: #8B0000 !important;
    font-family: 'Noto Serif', serif !important;
    background: transparent !important;
}

.ambassador-program .form-field input:focus {
    border-bottom-color: #8B0000 !important;
}

.ambassador-program .form-field textarea {
    border: 1px solid #8B0000 !important;
    color: #8B0000 !important;
    font-family: 'Noto Serif', serif !important;
    background: transparent !important;
}

.ambassador-program .form-field textarea:focus {
    border-color: #8B0000 !important;
}

.ambassador-program .form-field input::placeholder,
.ambassador-program .form-field textarea::placeholder {
    color: #8B0000 !important;
    opacity: 0.7;
    font-family: 'Noto Serif', serif !important;
}

/* Contact Page Styling - Dark Red Text */
.contact-page .form-field label {
    color: #8B0000 !important;
    font-family: 'Noto Serif', serif !important;
}

.contact-page .form-field input {
    border-bottom: 1px solid #8B0000 !important;
    color: #8B0000 !important;
    font-family: 'Noto Serif', serif !important;
    background: transparent !important;
}

.contact-page .form-field input:focus {
    border-bottom-color: #8B0000 !important;
}

.contact-page .form-field textarea {
    border: 1px solid #8B0000 !important;
    color: #8B0000 !important;
    font-family: 'Noto Serif', serif !important;
    background: transparent !important;
}

.contact-page .form-field textarea:focus {
    border-color: #8B0000 !important;
}

.contact-page .form-field input::placeholder,
.contact-page .form-field textarea::placeholder {
    color: #8B0000 !important;
    opacity: 0.7;
    font-family: 'Noto Serif', serif !important;
}

/* Homepage Founder Section - White Font */
.founder-story .story-text h2 {
    color: white !important;
    font-family: 'Noto Serif', serif !important;
}

.founder-story .story-text .founder-subtitle {
    color: white !important;
    font-family: 'Noto Serif', serif !important;
    font-style: italic;
    margin-bottom: 1rem;
}

/* FAQ Dropdown Styling */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    background: #f8f8f8;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Noto Serif', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #8B0000;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question.active {
    background: #fff5f5;
    color: #8B0000;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #8B0000;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.faq-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #8B0000;
}

.faq-question.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #8B0000;
    font-family: 'Noto Serif', serif;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #8B0000;
    font-family: 'Noto Serif', serif;
}

/* FAQ Section Headers */
.policy-section h2 {
    font-family: 'Noto Serif', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B0000;
    margin-bottom: 2rem;
    margin-top: 3rem;
    border-bottom: 2px solid #8B0000;
    padding-bottom: 0.5rem;
}

.policy-section h2:first-child {
    margin-top: 0;
}

/* Mobile hamburger menu removed */

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Ensure proper spacing on tablets */
    .container {
        padding: 1.5rem;
        margin-top: 6rem; /* Account for fixed navigation */
    }
    
    .nav-menu {
        gap: 1.5rem; /* Reduce gap on tablets */
    }
    
    .nav-link {
        font-size: 1rem !important;
        padding: 6px 12px !important;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .story-content {
        gap: 2rem;
    }
    
    .hero {
        padding-top: 6rem; /* Reduce padding on tablets */
    }
    
    .newsletter {
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .newsletter input {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .newsletter button {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .products {
        padding: 6rem 0 4rem 0; /* Tablet products padding */
    }
    
    .privacy-policy {
        padding: 6rem 0 4rem 0; /* Tablet privacy policy padding */
    }
    
    .about {
        padding: 6rem 0 4rem 0; /* Tablet about padding */
    }
    
    .contact {
        padding: 6rem 0 4rem 0; /* Tablet contact padding */
    }
    
    .story {
        padding: 6rem 0 4rem 0; /* Tablet story padding */
    }
    
    .founder-story {
        padding: 6rem 0 4rem 0; /* Tablet founder story padding */
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0.5rem 0.8rem;
        position: relative;
        justify-content: space-between;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Simple responsive navigation - no dropdown */
    .nav-menu {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
    }
    
    .nav-menu .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
        text-align: center;
        color: white;
        text-decoration: none;
        background: transparent;
        border-radius: 4px;
        transition: all 0.3s ease;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        min-width: 60px;
    }
    
    .nav-menu .nav-link:hover {
        background: transparent;
        color: white;
        transform: translateY(-1px);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .nav-link {
        font-size: 0.9rem !important;
        padding: 6px 10px !important;
    }
    
    .nav-actions {
        gap: 0.5rem;
        margin-left: 0;
    }
    
    .search-icon, .cart-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Top Banner */
    .top-banner {
        padding: 0.3rem 0.5rem;
        min-height: 50px;
        overflow: hidden;
        position: relative;
    }
    
    .banner-image {
        max-width: 250px;
        height: auto;
        position: relative;
        z-index: 5;
    }
    
    .banner-logo {
        max-width: 80px;
        height: 30px;
        left: 10px; /* Move closer to left edge but with padding */
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Main Content */
    .container {
        padding: 1rem;
        margin-top: 8rem; /* Ensure content doesn't overlap with fixed nav */
    }
    
    .hero {
        padding-top: 8rem; /* Mobile hero padding */
    }
    
    .products {
        padding: 8rem 0 4rem 0; /* Mobile products padding */
    }
    
    .privacy-policy {
        padding: 8rem 0 4rem 0; /* Mobile privacy policy padding */
    }
    
    .about {
        padding: 8rem 0 4rem 0; /* Mobile about padding */
    }
    
    .contact {
        padding: 8rem 0 4rem 0; /* Mobile contact padding */
    }
    
    .story {
        padding: 8rem 0 4rem 0; /* Mobile story padding */
    }
    
    .founder-story {
        padding: 8rem 0 4rem 0; /* Mobile founder story padding */
    }
    
    .policy-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .policy-title-image {
        max-width: 100%;
        height: auto;
    }
    
    /* FAQ Page Specific */
    .faq-page .policy-title-image {
        width: 250px !important;
        max-width: 90% !important;
    }
    
    /* FAQ Items */
    .faq-item {
        margin-bottom: 0.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-answer.active {
        padding: 1rem;
    }
    
    .faq-answer p {
        line-height: 1.5;
    }
    
    .faq-answer ul {
        padding-left: 1rem;
    }
    
    .faq-answer li {
        margin-bottom: 0.3rem;
    }
    
    /* Forms */
    .contact-form-minimal {
        padding: 1rem;
    }
    
    .form-field {
        margin-bottom: 1rem;
    }
    
    .form-field input,
    .form-field textarea {
        padding: 0.8rem;
    }
    
    .send-button-img {
        max-width: 120px;
        height: auto;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul {
        padding-left: 0;
    }
    
    .footer-section li {
        margin-bottom: 0.3rem;
    }
    
    /* Homepage Specific */
    .hero-content h1 {
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        margin-bottom: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .story-content {
        flex-direction: column;
        text-align: center;
    }
    
    .story-text {
        margin-bottom: 2rem;
    }
    
    .story-text h2 {
        margin-bottom: 1rem;
    }
    
    .story-text p {
        margin-bottom: 1rem;
    }
    
    .story-image img {
        max-width: 200px;
        height: auto;
    }
    
    
    /* Floating Elements - Hide on Mobile */
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile */
    .nav-link {
        font-size: 0.8rem !important;
        padding: 4px 8px !important;
    }
    
    /* Mobile menu toggle removed */
    
    .container {
        padding: 0.5rem;
    }
    
    .policy-header {
        margin-bottom: 1rem;
    }
    
    .faq-page .policy-title-image {
        width: 200px !important;
        max-width: 95% !important;
    }
    
    .faq-question {
        padding: 0.8rem;
    }
    
    .hero-content h1 {
    }
    
    .hero-content p {
    }
    
    .about-content {
        padding: 1rem 0.5rem;
        margin: 1rem auto;
    }
    
    .about-content h1 {
        font-size: 1.8rem;
    }
    
    .about-content p {
        font-size: 0.9rem;
    }
    
    .hero {
        padding-top: 7rem; /* Extra small mobile hero padding */
    }
    
    .container {
        margin-top: 7rem; /* Extra small mobile content margin */
    }
    
    .products {
        padding: 7rem 0 3rem 0; /* Extra small mobile products padding */
    }
    
    .privacy-policy {
        padding: 7rem 0 3rem 0; /* Extra small mobile privacy policy padding */
    }
    
    .about {
        padding: 7rem 0 3rem 0; /* Extra small mobile about padding */
    }
    
    .contact {
        padding: 7rem 0 3rem 0; /* Extra small mobile contact padding */
    }
    
    .story {
        padding: 7rem 0 3rem 0; /* Extra small mobile story padding */
    }
    
    .founder-story {
        padding: 7rem 0 3rem 0; /* Extra small mobile founder story padding */
    }
}

/* Ambassador Program Heading - White */
.ambassador-program .policy-section h2 {
    color: white !important;
}

/* Contact Page Heading - White */
.contact-page .policy-section h2 {
    color: white !important;
}

/* Privacy Policy Page Headings */
.privacy-policy .policy-section h2,
.privacy-policy .policy-section h3,
.privacy-policy .policy-section h4 {
    color: white !important;
}

/* FAQ Page Title Image - Smaller */
.faq-page .policy-title-image {
    width: 300px !important;
    height: auto !important;
    max-width: 60% !important;
}

.send-button {
    background: #2d5a27;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.send-button:hover {
    background: #1e3d1a;
}

.send-icon {
    font-size: 1.2rem;
}

/* Contact Message Section - Navigation Title Font */
.contact-message-section {
    font-family: 'Noto Serif', serif;
}

.contact-message-section h2 {
    font-family: 'Noto Serif', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-message-section p {
    font-family: 'Noto Serif', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background: #f8b5c1;
    background-image: url('5.png');
    background-size: 200px 200px;
    background-repeat: repeat;
    background-position: 0 0;
    animation: backgroundMove 20s linear infinite;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 10;
    font-family: 'Noto Serif', serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Noto Serif', serif;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
    font-family: 'Noto Serif', serif;
}

.footer-section ul li a:hover {
    color: white;
}

.newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.footer-section p {
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Noto Serif', serif;
}

.newsletter input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #007bff;
    border-radius: var(--border-radius);
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 1rem;
    box-sizing: border-box;
}

.newsletter input::placeholder {
    color: #d63384;
    font-family: 'Noto Serif', serif;
}

.newsletter button {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 600;
    box-sizing: border-box;
}

.newsletter button:hover {
    background: #e55a8a;
}

.newsletter-note {
    font-size: 0.9rem;
    color: #d63384;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid white;
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-family: 'Noto Serif', serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile nav-menu styles are handled in the main mobile section above */
    
    .title-image {
        width: 500px;
        height: 120px;
        max-width: 100%;
    }
    
    .logo-large {
        height: 130px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .floating-cherry img,
    .floating-boob img {
        width: 80px;
        height: 80px;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) brightness(0) invert(1) contrast(1.2);
        opacity: 0.9;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .banner-image {
        max-width: 200px;
        height: auto;
        position: relative;
        z-index: 5;
    }
    
    .banner-logo {
        max-width: 70px;
        height: 25px;
        left: 8px; /* Even closer to left edge for small screens */
        top: 50%;
        transform: translateY(-50%);
    }
    
    .title-image {
        width: 400px;
        height: 96px;
        max-width: 100%;
    }
    
    .logo-large {
        height: 110px;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .newsletter input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .newsletter button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .floating-cherry img,
    .floating-boob img {
        width: 60px;
        height: 60px;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) brightness(0) invert(1) contrast(1.2);
        opacity: 0.9;
    }
}

/* Force beige backgrounds on contact forms - High specificity override */
.contact-form-minimal {
    background: #f5f5dc !important;
    background-color: #f5f5dc !important;
}

.contact-form-minimal .form-field input,
.contact-form-minimal .form-field textarea,
.contact-page .contact-form-minimal .form-field input,
.contact-page .contact-form-minimal .form-field textarea,
.ambassador-program .contact-form-minimal .form-field input,
.ambassador-program .contact-form-minimal .form-field textarea {
    background: transparent !important;
    background-color: transparent !important;
    color: #8B0000 !important;
}

/* Additional override for form inputs and textareas */
.contact-form-minimal input[type="text"],
.contact-form-minimal input[type="email"],
.contact-form-minimal input[type="tel"],
.contact-form-minimal textarea {
    background: transparent !important;
    background-color: transparent !important;
    color: #8B0000 !important;
}