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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1d1d1d;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    content-visibility: auto;
}

:root {
    --annie-green: #039041;
    --annie-pink: #E84B90;
    --light-green: #e8f5e8;
    --light-pink: #fce8f3;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 252, 248, 0.98) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.loading-tagline {
    margin-bottom: 2rem;
}

.loading-undeniably {
    display: block;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--annie-green);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 0.2rem;
    font-family: 'Fredoka', sans-serif;
    text-shadow: 
        2px 2px 0px rgba(3, 144, 65, 0.3),
        4px 4px 8px rgba(0,0,0,0.1);
    animation: slideInFromLeft 1s ease-out 0.3s both;
}

.loading-delicious {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--annie-pink);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 0.9;
    font-family: 'Fredoka', sans-serif;
    text-shadow: 
        3px 3px 0px rgba(232, 75, 144, 0.3),
        6px 6px 12px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, var(--annie-pink) 0%, #ff6bb3 50%, var(--annie-pink) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInFromRight 1s ease-out 0.6s both;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(3, 144, 65, 0.2);
    border-top: 3px solid var(--annie-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
    margin-top: 1rem;
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    padding: 0;
    position: relative;
    top: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    box-shadow: none;
    border-bottom: 1px solid rgba(3, 144, 65, 0);
    transition: all 0.3s ease;
}

nav.scrolled,
nav:hover {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(3, 144, 65, 0.1);
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    position: relative;
    height: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 4rem;
    height: 100%;
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Nav menu container - desktop styles */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.logo {
    height: 90px;
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%) translateY(15px);
    z-index: 1001;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15)) drop-shadow(0 0 8px rgba(255,255,255,0.8));
    transition: filter 0.3s ease;
}

nav.scrolled .logo,
nav:hover .logo {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}

nav ul.nav-main {
    margin-left: 160px; /* Space for the larger logo */
}

nav ul.nav-contact {
    margin: 0;
}

nav a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
}

nav.scrolled a,
nav:hover a {
    color: #000;
}

nav a:hover {
    color: #000;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}

/* Hide mobile submenu on desktop */
.mobile-submenu {
    display: none;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-container {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(3, 144, 65, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    min-width: 500px;
    margin-top: 20px;
}

/* Create a bridge area to prevent menu from closing */
.dropdown-container::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-container,
.dropdown-container:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}

.dropdown-container {
    transition-delay: 0.2s;
}

.dropdown-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown-section h3 {
    color: var(--annie-green);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--annie-pink);
}

.dropdown-section a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(248, 252, 248, 0.5);
    border: 1px solid transparent;
}

.dropdown-section a:hover {
    background: var(--light-green);
    color: #000;
    border-color: var(--annie-green);
    transform: translateX(5px);
}

/* Styling for nutrition items in dropdown */
.nutrition-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(248, 252, 248, 0.5);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.nutrition-item:hover {
    background: var(--light-green);
    border-color: var(--annie-green);
}

.nutrition-item h4 {
    color: #000;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.nutrition-item .nutrition-button {
    flex-shrink: 0;
    color: #000 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    border: 2px solid #000;
    padding: 0.5rem 1rem;
    display: inline-block;
    border-radius: 0;
    background: transparent;
}

.nutrition-item .nutrition-button:hover {
    background: #000;
    color: #fff !important;
    text-decoration: none;
}

.dropdown-section a::after {
    display: none;
}

/* Special styling for the flavor add-ins section */
.dropdown-section.flavor-addins {
    background: var(--light-green);
    padding: 1.25rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    border: 2px solid var(--annie-green);
    text-align: center;
}

.dropdown-section.flavor-addins h3 {
    color: var(--annie-pink);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--annie-pink);
    padding-bottom: 0.75rem;
}

.dropdown-section.flavor-addins a {
    background: white;
    border: 2px solid var(--annie-green);
    padding: 1rem;
    border-radius: 12px;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--annie-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-section.flavor-addins a:hover {
    background: var(--annie-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.dropdown-section.flavor-addins .dropdown-icon-image {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.dropdown-section.flavor-addins a:hover .dropdown-icon-image {
    transform: scale(1.05);
}

/* Arrow indicator for dropdown */
.nav-dropdown > a {
    padding-right: 16px;
}

.nav-dropdown > a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: none;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > a::after {
    width: 0;
    transform: translateY(-50%) rotate(180deg);
}

/* Dropdown backdrop */
.dropdown-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.05));
}

/* Enhanced dropdown animations */
.dropdown-container {
    animation: none;
}

.nav-dropdown:hover .dropdown-container {
    animation: dropdownFadeIn 0.4s ease-out forwards;
}

@keyframes dropdownFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-15px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* Subtle pulse effect on hover */
.dropdown-section a:hover .dropdown-icon {
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Sections */
section {
    padding: 2.5rem 0;
    /* margin-top: 70px; */
}

section:first-of-type {
    margin-top: 0;
}

h1, h2 {
    color: var(--annie-green);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    text-align: center;
    line-height: 1.1;
}

h2 {
    font-size: 3.5rem;
    text-align: center;
    line-height: 1.2;
}

/* Hero Section */
#hero {
    height: 75vh;
    min-height: 500px;
    position: relative;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform; /* Optimize for animations */
}

.hero-slide {
    position: relative;
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    flex-grow: 0;
}

.hero-slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block; /* Prevent inline spacing issues */
}

.hero-controls {
    display: none;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #1d1d1d;
    animation: scrollBounce 2s ease-in-out infinite;
    will-change: transform;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--annie-green);
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-dots {
    display: none;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--annie-pink);
    border-color: white;
    transform: scale(1.2);
}

/* Hero Tagline Container */
.hero-tagline-container {
    background: white;
    text-align: center;
}



.tagline {
    font-size: 1.8rem;
    color: var(--annie-pink);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tagline:last-of-type {
    margin-bottom: 4rem;
}

.cta-button {
    background: var(--annie-pink);
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(232, 75, 144, 0.3);
}

.cta-button:hover {
    background: #d63d7d;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(232, 75, 144, 0.4);
}

/* About Section */
#about {
    background: white;
    padding: 2rem 0 3rem 0;
}

/* Three Column Layout inspired by JonnyPops */
.about-three-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 0;
}

.about-column {
    text-align: center;
    padding: 1rem 1rem;
}

.about-column-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1d;
    margin: 0 0 2rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-column-title strong {
    font-weight: inherit;
}

.about-column-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    max-width: 280px;
    margin: 0 auto;
}

.about-safety-message {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-safety-message p {
    font-size: 1.2rem;
    color: #1d1d1d;
    margin: 0;
    line-height: 1.6;
}

/* Tablet/Medium screen responsiveness */
@media (max-width: 1100px) and (min-width: 769px) {
    .about-three-columns {
        gap: 1.5rem;
    }
    
    .about-column {
        padding: 0.5rem;
    }
    
    .about-column-title {
        font-size: 2rem;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .about-three-columns {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .about-column-title {
        font-size: 2rem;
    }
    
    .about-column-text {
        font-size: 1rem;
    }
}

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

.highlight {
    color: #000;
    font-weight: 600;
}

/* Hero Tagline Styling */
.hero-tagline {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 1rem;
}

.undeniably {
    display: block;
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--annie-green);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 0.2rem;
    font-family: 'Fredoka', sans-serif;
    text-shadow: 
        2px 2px 0px rgba(3, 144, 65, 0.3),
        4px 4px 8px rgba(0,0,0,0.1);
}

.delicious {
    display: block;
    font-size: 6rem;
    font-weight: 900;
    color: var(--annie-pink);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 0.9;
    font-family: 'Fredoka', sans-serif;
    text-shadow: 
        3px 3px 0px rgba(232, 75, 144, 0.3),
        6px 6px 12px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, var(--annie-pink) 0%, #ff6bb3 50%, var(--annie-pink) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* Equipment Section */
#equipment {
    contain: layout;
    padding-bottom: 0;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem 0;
    position: relative;
    contain: content;
}

/* Alternating background pattern - only odd items get backgrounds */
.equipment-item:nth-child(odd) {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(248, 252, 248, 0.6) 10%, 
        rgba(232, 245, 232, 0.4) 50%, 
        rgba(248, 252, 248, 0.6) 90%, 
        transparent 100%);
    margin: 1.5rem -3rem;
    padding: 2.5rem 3rem;
    border-radius: 24px;
}

/* Even items stay completely white - no background */
.equipment-item:nth-child(even) {
    background: none;
    margin: 1.5rem 0;
    padding: 2.5rem 0;
}

/* Layout directions */
.equipment-item.equipment-left {
    flex-direction: row;
}

.equipment-item.equipment-right {
    flex-direction: row-reverse;
}

.equipment-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.equipment-content h3 {
    color: var(--annie-pink);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.equipment-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #1d1d1d;
    margin-bottom: 2rem;
}

.equipment-image {
    flex: 0 0 500px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    min-height: 350px;
}

.equipment-image img {
    width: 100%;
    max-width: 450px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    aspect-ratio: 450 / 350;
}



.taylor-models {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.taylor-model {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(3, 144, 65, 0.1);
}

.taylor-model:hover {
    transform: translateY(-5px);
}

.taylor-model img {
    width: 100%;
    max-width: 140px;
    margin-bottom: 1rem;
}

.taylor-model h4 {
    color: var(--annie-green);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.taylor-model p {
    color: #1d1d1d;
    font-size: 0.9rem;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(3, 144, 65, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--annie-green);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-card p {
    line-height: 1.6;
    color: #1d1d1d;
}

/* Flavors Section */
#flavors {
    background: white;
    position: relative;
    min-height: 100vh;
    padding-bottom: 0;
}

.flavors-container {
    display: grid;
    grid-template-columns: minmax(auto, 600px) 500px;
    gap: 6rem;
    align-items: start;
    justify-content: center;
    justify-items: center;
}

.flavors-content {
    min-width: 0;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0 auto;
}

.flavors-sidebar {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 120px !important;
    align-self: start !important;
    height: max-content;
    min-width: 0;
    margin: 0 auto;
}

.flavors-sidebar.flavors-sidebar-right {
    order: 0;
}

.flavors-vertical-text {
    display: block;
}

.flavors-vertical-text img {
    max-height: calc(100vh - 140px);
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    display: block;
}

.flavors-grid {
    display: flex;
    flex-direction: column;
    /* gap: 1.5rem; */
    margin-top: 0;
    flex: 1;
}

.flavor-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    /* padding: 1rem 0; */
    /* border-bottom: 1px solid rgba(0,0,0,0.05); */
}

.flavor-item.flavor-right {
    flex-direction: row-reverse;
    text-align: right;
}

.flavor-item:last-child {
    border-bottom: none;
}

.flavor-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.flavor-content {
    flex: 1;
}

.flavor-name {
    font-size: 2rem;
    font-weight: 900;
    color: #1d1d1d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Fredoka', sans-serif;
}

.flavors-sticky-text {
    color: #1d1d1d;
    font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.8rem);
    line-height: 1.8;
    font-weight: 400;
    width: 100%;
    font-family: 'Fredoka', sans-serif;
    display: block;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.flavors-sticky-text b {
    color: inherit;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.flavor-description {
    display: none;
    font-size: 1.1rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}

/* Flavor-specific colors */
.flavor-dreamsicle .flavor-name { 
    color: #FF6347; 
    text-shadow: 
        2px 2px 0px rgba(255, 99, 71, 0.3),
        3px 3px 8px rgba(255, 99, 71, 0.2);
}
.flavor-dreamsicle .flavor-description { color: #FF9580; }

.flavor-georgia-peach .flavor-name { 
    color: #FF8C69; 
    text-shadow: 
        2px 2px 0px rgba(255, 140, 105, 0.3),
        3px 3px 8px rgba(255, 140, 105, 0.2);
}
.flavor-georgia-peach .flavor-description { color: #FFB199; }

.flavor-black-raspberry .flavor-name { 
    color: #8B008B; 
    text-shadow: 
        2px 2px 0px rgba(139, 0, 139, 0.3),
        3px 3px 8px rgba(139, 0, 139, 0.2);
}
.flavor-black-raspberry .flavor-description { color: #B84DB8; }

.flavor-blue-moon .flavor-name { 
    color: #4682B4; 
    text-shadow: 
        2px 2px 0px rgba(70, 130, 180, 0.3),
        3px 3px 8px rgba(70, 130, 180, 0.2);
}
.flavor-blue-moon .flavor-description { color: #7BA4D1; }

.flavor-blue-raspberry .flavor-name { 
    color: #0066CC; 
    text-shadow: 
        2px 2px 0px rgba(0, 102, 204, 0.3),
        3px 3px 8px rgba(0, 102, 204, 0.2);
}
.flavor-blue-raspberry .flavor-description { color: #4D94E6; }

.flavor-bubble-gum .flavor-name { 
    color: #FF69B4; 
    text-shadow: 
        2px 2px 0px rgba(255, 105, 180, 0.3),
        3px 3px 8px rgba(255, 105, 180, 0.2);
}
.flavor-bubble-gum .flavor-description { color: #FF94CC; }

.flavor-cake-batter .flavor-name { 
    color: #DAA520; 
    text-shadow: 
        2px 2px 0px rgba(218, 165, 32, 0.3),
        3px 3px 8px rgba(218, 165, 32, 0.2);
}
.flavor-cake-batter .flavor-description { color: #E6C166; }

.flavor-cheesecake .flavor-name { 
    color: #D2B48C; 
    text-shadow: 
        2px 2px 0px rgba(210, 180, 140, 0.3),
        3px 3px 8px rgba(210, 180, 140, 0.2);
}
.flavor-cheesecake .flavor-description { color: #E0CBA8; }

.flavor-chocolate-chip-mint .flavor-name { 
    color: #2E8B57; 
    text-shadow: 
        2px 2px 0px rgba(46, 139, 87, 0.3),
        3px 3px 8px rgba(46, 139, 87, 0.2);
}
.flavor-chocolate-chip-mint .flavor-description { color: #66B585; }

.flavor-fudge-brownie .flavor-name { 
    color: #8B4513; 
    text-shadow: 
        2px 2px 0px rgba(139, 69, 19, 0.3),
        3px 3px 8px rgba(139, 69, 19, 0.2);
}
.flavor-fudge-brownie .flavor-description { color: #B8754D; }

.flavor-coffee-espresso .flavor-name { 
    color: #6F4E37; 
    text-shadow: 
        2px 2px 0px rgba(111, 78, 55, 0.3),
        3px 3px 8px rgba(111, 78, 55, 0.2);
}
.flavor-coffee-espresso .flavor-description { color: #9A7A66; }

.flavor-hawaiian-pineapple .flavor-name { 
    color: #FFD700; 
    text-shadow: 
        2px 2px 0px rgba(255, 215, 0, 0.3),
        3px 3px 8px rgba(255, 215, 0, 0.2);
}
.flavor-hawaiian-pineapple .flavor-description { color: #FFE54D; }

.flavor-key-lime .flavor-name { 
    color: #32CD32; 
    text-shadow: 
        2px 2px 0px rgba(50, 205, 50, 0.3),
        3px 3px 8px rgba(50, 205, 50, 0.2);
}
.flavor-key-lime .flavor-description { color: #70E070; }

.flavor-pink-cotton-candy .flavor-name { 
    color: #FFB6C1; 
    text-shadow: 
        2px 2px 0px rgba(255, 182, 193, 0.3),
        3px 3px 8px rgba(255, 182, 193, 0.2);
}
.flavor-pink-cotton-candy .flavor-description { color: #FFCCD1; }

.flavor-salted-caramel .flavor-name { 
    color: #CD853F; 
    text-shadow: 
        2px 2px 0px rgba(205, 133, 63, 0.3),
        3px 3px 8px rgba(205, 133, 63, 0.2);
}
.flavor-salted-caramel .flavor-description { color: #E0A870; }

.flavor-strawberry .flavor-name { 
    color: #FF1493; 
    text-shadow: 
        2px 2px 0px rgba(255, 20, 147, 0.3),
        3px 3px 8px rgba(255, 20, 147, 0.2);
}
.flavor-strawberry .flavor-description { color: #FF66B8; }

.flavor-pumpkin-pie .flavor-name { 
    color: #FF7518; 
    text-shadow: 
        2px 2px 0px rgba(255, 117, 24, 0.3),
        3px 3px 8px rgba(255, 117, 24, 0.2);
}
.flavor-pumpkin-pie .flavor-description { color: #FF9D5C; }

.flavor-spearmint .flavor-name { 
    color: #00FF7F; 
    text-shadow: 
        2px 2px 0px rgba(0, 255, 127, 0.3),
        3px 3px 8px rgba(0, 255, 127, 0.2);
}
.flavor-spearmint .flavor-description { color: #4DFFAB; }

/* Ordering Section */
#ordering {
    background: white;
    color: #000;
    padding-bottom: 0;
}

/* Support Section */
#support {
    background: var(--light-green);
    color: #000;
}

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

.order-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(3, 144, 65, 0.05);
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.order-card h3 {
    color: var(--annie-green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-info {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--annie-pink);
    margin: 2rem 0;
}

.contact-info a {
    color: var(--annie-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #d63d7d;
}

.pricing-highlight {
    background: var(--annie-pink);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    font-weight: 600;
    font-size: 1.1rem;
    max-width: 400px;
    box-shadow: 0 8px 25px rgba(232, 75, 144, 0.3);
}

/* Contact Section */
#contact {
    background: var(--annie-green);
    color: white;
}

#contact h2 {
    color: white;
}

/* Form Styles */
form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--annie-pink);
    box-shadow: 0 0 0 3px rgba(232, 75, 144, 0.1);
}

form input:hover,
form textarea:hover {
    border-color: var(--annie-green);
}

/* Footer Styles */
footer {
    background: #f8f8f8;
    color: #000;
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    color: #000;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--annie-pink);
    padding-bottom: 0.5rem;
    display: inline-block;
}

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

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

.footer-section ul li a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-section p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #1d1d1d;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    text-align: center;
    color: #1d1d1d;
}

.footer-address {
    font-style: normal;
    margin-bottom: 1rem;
}

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

.contact-card {
    background: rgba(255,255,255,0.1);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.contact-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-card a {
    color: var(--light-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: white;
}

.contact-card p {
    line-height: 1.6;
    margin-top: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(3, 144, 65, 0.3) 20%, 
        rgba(3, 144, 65, 0.6) 50%, 
        rgba(3, 144, 65, 0.3) 80%, 
        transparent 100%
    );
    z-index: 1;
}

.scroll-arrow {
    background: white;
    border: 2px solid var(--annie-green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.scroll-arrow:hover {
    background: var(--annie-green);
    border-color: var(--annie-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.scroll-arrow:hover::after {
    border-top-color: white;
}

.scroll-arrow::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--annie-green);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.scroll-text {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--annie-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    opacity: 0.8;
    text-align: center;
}

/* Nutrition Button Styling (JonnyPops style) */
.nutrition-button {
    color: #000 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    border: 2px solid #000;
    padding: 0.5rem 1rem;
    display: inline-block;
    border-radius: 0;
    background: transparent;
}

.nutrition-button:hover {
    background: #000;
    color: #fff !important;
    text-decoration: none;
}

/* PDF Modal */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.pdf-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 90vh;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

.pdf-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 10001;
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    transition: all 0.3s ease;
}

.pdf-modal-close:hover {
    background: var(--annie-pink);
    color: white;
    transform: rotate(90deg);
}

.pdf-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

/* Annies mobile logo - Hidden on desktop */
.annies-mobile-logo {
    display: none;
}

/* Hamburger Menu - Hidden on desktop */
.hamburger {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        height: auto;
        min-height: 70px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        border-bottom: 1px solid rgba(3, 144, 65, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    nav a {
        text-shadow: none;
    }

    nav .logo {
        filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    }

    nav .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1.5rem;
        height: auto;
        gap: 0;
        position: relative;
    }

    .nav-left {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        height: auto;
        gap: 0;
        flex-wrap: wrap;
        position: relative;
    }

    .logo {
        position: fixed;
        height: 85px;
        left: 50%;
        top: 5px;
        transform: translateX(-50%);
        margin-bottom: 0;
        z-index: 1002;
    }

    /* Annies mobile logo - hide on mobile */
    .annies-mobile-logo {
        display: none;
    }

    /* Hamburger button */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--annie-green);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile nav menu */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: white;
        padding: 1rem 0;
        border-top: 1px solid rgba(3, 144, 65, 0.1);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        max-height: none;
        height: auto;
        overflow-y: visible;
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex;
    }

    nav ul.nav-main {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-left: 0;
        width: 100%;
    }

    nav ul.nav-main li {
        width: 100%;
        text-align: center;
    }

    nav ul.nav-main li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    nav ul.nav-contact {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-top: 0;
        width: 100%;
    }

    nav ul.nav-contact li {
        width: 100%;
        text-align: center;
    }

    nav ul.nav-contact li a {
        display: block;
        padding: 1rem;
    }

    .nav-right {
        display: none;
    }

    /* Add spacing for fixed nav */
    body {
        padding-top: 70px;
    }

    /* Hide complex dropdown on mobile, show simple submenu */
    .dropdown-container {
        display: none !important;
    }

    /* Mobile submenu styles */
    .mobile-submenu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        background: rgba(248, 252, 248, 0.95);
    }

    .nav-dropdown.dropdown-open .mobile-submenu {
        display: block;
    }

    .mobile-submenu li {
        width: 100%;
    }

    .mobile-submenu li a {
        display: block;
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
        color: #1d1d1d;
        text-decoration: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        text-transform: none;
        letter-spacing: 0;
    }

    .mobile-submenu li a:hover {
        background: rgba(3, 144, 65, 0.1);
    }

    .mobile-submenu li a::after {
        display: none;
    }

    /* Rotate arrow when open */
    .nav-dropdown.dropdown-open > a::after {
        transform: rotate(180deg);
    }

    .nav-dropdown > a::after {
        right: -12px;
        border-left: 3px solid transparent;
        border-right: 3px solid transparent;
        border-top: 3px solid currentColor;
        transition: transform 0.3s ease;
    }

    .container {
        padding: 0 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    section {
        padding: 5rem 0;
    }

    #hero {
        height: auto;
        min-height: unset;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        overflow: hidden;
    }

    .hero-slider {
        width: 100%;
        overflow: visible;
    }

    .hero-slide {
        min-width: 100%;
        width: 100%;
        flex-shrink: 0;
        aspect-ratio: 4 / 3;
    }

    .hero-slide img {
        height: 100%;
        width: 100%;
        display: block;
        object-fit: contain;
    }

    .tagline {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .hero-tagline-container {
        padding: 3rem 0 !important;
    }

    .undeniably {
        font-size: 3rem !important;
    }

    .delicious {
        font-size: 4rem !important;
    }

    .about-content,
    .about-content-lower,
    .ordering-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-content-lower {
        margin-bottom: 4rem !important;
    }

    .about-text-lower {
        order: 2;
    }

    .about-content-lower .about-image {
        order: 1;
    }

    /* About blocks responsive */
    .about-block {
        flex-direction: column !important;
        gap: 2rem !important;
        margin: 3rem 0 !important;
        padding: 0 !important;
        text-align: center;
    }

    .about-block-left,
    .about-block-right {
        padding: 0 !important;
    }

    .about-text-block {
        max-width: 100% !important;
        font-size: 1.2rem !important;
    }

    .about-image-block {
        flex: none !important;
        order: -1;
    }

    .about-image-block img {
        max-width: 280px !important;
    }

    .smoothie-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 4rem;
    }

    .smoothie-text {
        order: 2;
    }

    .smoothie-image {
        order: 1;
    }

    .signature-flavors {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }

    .flavor-card {
        padding: 2rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }

    .flavors-container {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .flavors-content {
        flex-direction: column;
        gap: 3rem;
    }

    .flavors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .flavor-icon {
        width: 60px;
        height: 60px;
    }

    .flavor-name {
        font-size: 1.5rem;
    }

    .flavor-description {
        font-size: 0.9rem;
    }

    .flavors-info {
        flex: none;
        order: -1;
        margin-bottom: 0;
    }

    .flavors-sidebar {
        width: 100%;
        max-width: none;
        position: static;
        top: auto;
        height: auto;
        margin-bottom: 1.5rem;
        order: -1;
    }

    .flavors-sidebar.flavors-sidebar-right {
        width: 100%;
    }

    .flavors-sticky-text {
        max-width: 100%;
        text-align: center;
    }

    .flavors-vertical-text {
        transform: none;
        text-align: center;
        margin: 0;
    }

    .flavors-vertical-text img {
        height: 250px;
        width: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Form responsive styles */
    form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    #ordering div[style*="grid-template-columns: repeat"] {
        grid-template-columns: 1fr !important;
    }

    /* Footer responsive styles */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Equipment section responsive styles */
    .equipment-item {
        flex-direction: column !important;
        gap: 1.5rem !important;
        text-align: center;
        padding: 1.5rem 0 !important;
    }

    /* Maintain alternating backgrounds on mobile but adjust margins */
    .equipment-item:nth-child(odd) {
        margin: 1rem -1.5rem !important;
        padding: 1.5rem 1.5rem !important;
        background: linear-gradient(180deg, 
            transparent 0%, 
            rgba(232, 245, 232, 0.3) 20%, 
            rgba(232, 245, 232, 0.4) 50%, 
            rgba(232, 245, 232, 0.3) 80%, 
            transparent 100%) !important;
    }

    .equipment-item:nth-child(even) {
        margin: 1rem 0 !important;
        padding: 1.5rem 0 !important;
        background: none !important;
    }

    .equipment-content {
        max-width: 100%;
        order: -1;
    }

    .equipment-content h3 {
        font-size: 1.8rem !important;
        text-align: left !important;
    }

    .equipment-content p {
        font-size: 1.1rem !important;
        text-align: left !important;
    }

    .equipment-image {
        flex: none;
        order: 0;
        max-width: 100%;
        height: auto;
        min-height: unset;
    }

    .equipment-image img {
        max-width: 350px !important;
        height: auto !important;
    }

    .equipment-image .taylor-models {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        max-width: 300px;
        margin: 0 auto;
    }

    .taylor-model {
        padding: 1.5rem !important;
    }

    /* Loading overlay responsive styles */
    .loading-undeniably {
        font-size: 2.5rem !important;
    }

    .loading-delicious {
        font-size: 3.5rem !important;
    }

    .loading-spinner {
        width: 30px !important;
        height: 30px !important;
        border-width: 2px !important;
    }

    /* Scroll Indicator responsive styles */
    .scroll-indicator {
        display: none !important;
    }
    
    .scroll-arrow {
        display: none !important;
    }
    
    .scroll-text {
        display: none !important;
    }
    
    .signature-flavors-section > h3 {
        display: none !important;
    }
    
    .about-column-text {
        display: none !important;
    }
    
    .about-column-title {
        margin-bottom: 0 !important;
        font-size: 1.3rem !important;
        font-weight: 400 !important;
    }
    
    .about-column-title strong {
        font-weight: 700 !important;
    }
    
    .about-safety-message {
        margin-top: 1.5rem !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

/* Hide mobile-only content on desktop */
.mobile-only {
    display: none;
}

/* 1080p Display Optimizations */
@media (min-width: 769px) {
    /* Adjust container width for better 1080p display */
    .container {
        max-width: 1200px;
        padding: 0 2.5rem;
    }

    nav .container {
        max-width: 1200px;
        padding: 0 2.5rem;
    }

    /* Reduce section padding for better vertical spacing */
    section {
        padding: 5rem 0;
    }

    /* Adjust font sizes for better readability */
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 3rem;
        margin-bottom: 3.5rem;
    }

    /* Hero section adjustments */
    #hero {
        height: 75vh;
        min-height: 450px;
        overflow: hidden;
    }

    .undeniably {
        font-size: 4rem;
    }

    .delicious {
        font-size: 5.5rem;
    }

    .tagline {
        font-size: 1.6rem;
        max-width: 700px;
        margin-bottom: 2.5rem;
    }

    /* Navigation adjustments */
    nav ul {
        gap: 2.5rem;
    }

    nav ul.nav-main {
        margin-left: 120px;
    }

    .logo {
        height: 75px;
    }

    /* Equipment section adjustments */
    .equipment-item {
        gap: 3rem;
        padding: 2.5rem 0;
    }

    .equipment-content h3 {
        font-size: 2rem;
    }

    .equipment-content p {
        font-size: 1.2rem;
    }

    .equipment-image {
        flex: 0 0 450px;
    }

    .equipment-image img {
        max-width: 400px;
        height: 320px;
    }

    /* Features grid adjustments */
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 3.5rem;
        margin-top: 4rem;
    }

    .feature-card {
        padding: 2.5rem 2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    /* Flavors section adjustments */
    .flavors-content {
        gap: 2.5rem;
    }

    .flavor-name {
        font-size: 1.8rem;
    }

    .flavor-description {
        font-size: 1rem;
    }

    /* Contact and ordering adjustments */
    .ordering-content,
    .contact-grid {
        gap: 4rem;
    }

    .order-card,
    .contact-card {
        padding: 2.5rem 2rem;
    }

    /* Footer adjustments */
    footer {
        padding: 5rem 0 2.5rem 0;
    }

    .footer-content {
        gap: 3.5rem;
    }

    /* Dropdown adjustments */
    .dropdown-container {
        min-width: 450px;
    }

    .dropdown-content {
        padding: 2rem;
        gap: 1.75rem;
    }

    .dropdown-section a {
        padding: 0.9rem 1.1rem;
        font-size: 0.85rem;
    }

    .dropdown-section.flavor-addins {
        padding: 1.75rem;
    }

    .dropdown-section.flavor-addins .dropdown-icon-image {
        width: 200px;
        height: 135px;
    }
}

/* Constrain hero and three-columns on larger screens */
@media (min-width: 1200px) {
    #hero {
        max-width: 900px;
        width: auto;
    }
    
    .about-three-columns {
        max-width: 1200px;
    }
}

/* Additional refinements for smaller 1080p screens */
@media (max-width: 1366px) and (min-width: 769px) {
    .container {
        max-width: 1100px;
        padding: 0 2rem;
    }

    nav .container {
        max-width: 1100px;
        padding: 0 2rem;
    }

    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.8rem;
    }

    .undeniably {
        font-size: 3.5rem;
    }

    .delicious {
        font-size: 5rem;
    }

    .equipment-item {
        gap: 2.5rem;
    }

    .equipment-image {
        flex: 0 0 400px;
    }

    .equipment-image img {
        max-width: 350px;
        height: 280px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
    }

    .dropdown-container {
        min-width: 400px;
    }

    .dropdown-section.flavor-addins .dropdown-icon-image {
        width: 180px;
        height: 120px;
    }
}

/* Signature Flavors Section */
.signature-flavors-section {
    margin-top: 4rem;
}

.signature-flavors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.signature-flavors-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.signature-flavors-image img {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.signature-flavors-image img:hover {
    transform: scale(1.05);
}

.flavor-card {
    padding: 2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flavor-card img {
    margin-bottom: 1.5rem;
    border-radius: 15px;
}

.about-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 15px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.1));
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.8s ease forwards;
}

.about-image:first-child img {
    animation-delay: 0.3s;
}

.about-image:last-child img {
    animation-delay: 0.5s;
}

.about-image img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 8px 25px rgba(0,0,0,0.15));
}

/* Mobile override for signature flavors */
@media (max-width: 768px) {
    .signature-flavors {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
}