/* Reset and Base Styles */
:root {
    --primary-color: #D888A0;
    --secondary-color: #6B9B87;
    --text-color: #2c3e50;
    --background-light: #fafafa;
    --background-dark: #f4f4f5;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: rgba(0, 0, 0, 0.08);
    --shadow-color: rgba(0, 0, 0, 0.06);
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--background-light) 50%, var(--white) 100%);
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
}

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

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), #D888A0);
    color: var(--white);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(228, 154, 176, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #D888A0, #C77A92);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(228, 154, 176, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--border-color);
    box-shadow:
        0 4px 30px var(--shadow-color),
        0 2px 10px rgba(0, 0, 0, 0.03);
}

/* Adjust navbar when top banner is visible */
body.top-banner-visible .navbar {
    top: 60px;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-1px);
}

.logo-container {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.logo-svg {
    width: 35px;
    height: 35px;
    object-fit: contain;
    object-position: center;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(228, 154, 176, 0.08);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 25px var(--shadow-color);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 155, 135, 0.03) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Adjust hero container when top banner is visible */
body.top-banner-visible .hero-container {
    padding-top: 3rem;
}

.hero-content {
    color: var(--primary-color);
    padding-top: 1rem;
}

/* Adjust hero content when top banner is visible */
body.top-banner-visible .hero-content {
    padding-top: 2rem;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    width: fit-content;
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    box-shadow:
        0 4px 20px var(--shadow-color),
        0 2px 8px rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.hero-rating:hover {
    transform: translateY(-1px);
    box-shadow:
        0 6px 25px rgba(228, 154, 176, 0.15),
        0 3px 12px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: #555;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), #D888A0);
    color: var(--white);
    border: none;
    padding: 1.1rem 2.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 6px 25px rgba(228, 154, 176, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: var(--font-primary);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    transition: left 0.3s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #D888A0, #C77A92);
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px rgba(228, 154, 176, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
}

.consultation-btn {
    background: #333;
    border: 2px solid transparent;
}

.consultation-btn:hover {
    background: #000;
    border: 2px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.consultation-btn-container {
    text-align: center;
    margin-top: 2rem;
}

.hero-gallery {
    position: relative;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border-radius: 20px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) saturate(1.1) contrast(1.05);
    border: 2px solid var(--border-color);
    box-shadow:
        0 8px 25px var(--shadow-color),
        0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

/* Restore hero image hover scaling but keep float disabled */
.hero-img:hover {
    transform: scale(1.03) translateY(-2px);
    filter: brightness(1.1) saturate(1.15) contrast(1.1);
    box-shadow:
        0 12px 35px rgba(228, 154, 176, 0.2),
        0 6px 15px rgba(0, 0, 0, 0.1);
}

.img-1 {
    border-radius: 12px 0 0 0;
}

.img-2 {
    border-radius: 0 12px 0 0;
}

.img-3 {
    border-radius: 0 0 0 12px;
}

.img-4 {
    border-radius: 0 0 12px 0;
    object-position: center top;
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--text-color);
    position: relative;
    font-weight: 600;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #E49AB0);
    border-radius: 2px;
}

/* Story Section */
.story-section {
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow-color);
    filter: sepia(5%) saturate(1.05);
    border: 3px solid var(--border-color);
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Creamery Section */
.creamery-section {
    background: var(--background-light);
}

.creamery-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.creamery-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.feature {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px var(--shadow-color);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(228, 154, 176, 0.12);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Products Section */
.products-section {
    background: var(--white);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem 0;
}

.product-showcase:last-child {
    margin-bottom: 0;
}

.product-showcase.reverse {
    grid-template-columns: 1fr 1fr;
}

.product-showcase.reverse .product-image {
    order: 2;
}

.product-showcase.reverse .product-content {
    order: 1;
}

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow-color);
    filter: sepia(5%) saturate(1.05);
    border: 3px solid var(--border-color);
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.02);
}

.product-content h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.product-variants {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.variant-item {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.variant-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), rgba(228, 154, 176, 0.3));
}

.variant-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-color);
    background: var(--white);
}

.variant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.variant-header h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-family: var(--font-primary);
    background: rgba(228, 154, 176, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(228, 154, 176, 0.3);
}

.variant-description {
    line-height: 1.7;
    color: #6a6a6a;
}

/* Hide Ice Cream Section Until Launch */
#ice-cream-section {
    display: none;
}

/* Celebrations Section */
.celebrations-section {
    background: var(--background-light);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.celebrations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D888A0' fill-opacity='0.05'%3E%3Cpath d='M40 20c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 40c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm40-40c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 40c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3Cg fill='%23D888A0' fill-opacity='0.03'%3E%3Cpath d='M20 40l10-10-10-10-10 10zm40 0l10-10-10-10-10 10zm0 40l10-10-10-10-10 10zm-40 0l10-10-10-10-10 10z'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.celebrations-section h2 {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.celebrations-section h2::after {
    background: linear-gradient(90deg, var(--primary-color), #E49AB0);
}

.celebrations-content {
    position: relative;
    z-index: 1;
}

.celebrations-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.celebrations-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.celebration-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.celebration-type {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.celebration-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #E49AB0);
}

.celebration-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(228, 154, 176, 0.25);
}

.celebration-type h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.celebration-type p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Celebrations Gallery */
.celebrations-gallery {
    margin: 3rem 0;
}

.celebrations-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.celebration-img-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 250px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.celebration-img-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(228, 154, 176, 0.3);
}

.celebration-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Specific positioning for celebration images with faces */
.celebration-img-item:first-child img {
    object-position: center top;
}

.celebration-img-item:hover img {
    transform: scale(1.1);
}

.celebration-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(216, 136, 160, 0.9), rgba(216, 136, 160, 0.6));
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.celebration-img-item:hover .celebration-img-overlay {
    transform: translateY(0);
}

.celebration-img-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    font-family: var(--font-secondary);
}

/* Gluten Free Section */
.gluten-free-section {
    background: var(--white);
}

.gluten-free-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gluten-free-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.gluten-free-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gf-feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 8px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.gf-feature:hover {
    transform: translateX(5px);
}

.gf-feature h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery-section {
    background: var(--background-light);
    overflow: hidden;
    /* Prevent horizontal scroll on section */
}

.gallery-container {
    position: relative;
    padding: 0 2rem;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.gallery-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow.left {
    left: 10px;
}

.gallery-arrow.right {
    right: 10px;
}

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

    .gallery-arrow {
        display: none;
    }

    /* Hide arrows on mobile, rely on touch */
    .gallery-track {
        padding: 1rem 1rem 2rem;
        gap: 1rem;
    }
}

/* remove old grid rules */

.gallery-grid::-webkit-scrollbar {
    display: none;
}

/* Disable CSS marquee when arrows are present (JS handles scrolling) */
.gallery-row .gallery-grid {
    animation-name: none;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.gallery-grid:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow-color);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    height: 300px;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(228, 154, 176, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(5%) saturate(1.05);
    display: block;
    transition: all 0.5s ease;
}

/* Specific positioning for gallery images with faces */
.gallery-item:nth-child(4) img {
    object-position: center top;
}

.gallery-item:nth-child(5) img {
    object-position: center top;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(216, 136, 160, 0.85), rgba(228, 154, 176, 0.75));
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.gallery-caption p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.95;
    margin: 0;
}

/* Events Section */
.events-section {
    background: var(--white);
}

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

.event-category {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px var(--shadow-color);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.event-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.event-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.event-item {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    background: var(--white);
}

.event-item:hover {
    background-color: var(--background-light);
    box-shadow: 0 2px 8px var(--shadow-color);
}

.event-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.event-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.event-item p {
    color: #6c757d;
    line-height: 1.5;
    margin: 0.5rem 0;
}

.event-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.event-placeholder {
    color: #adb5bd;
    font-style: italic;
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #dee2e6;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.reviews-section h2 {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.review-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: left;
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.08);
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E49AB0, var(--primary-color));
}

.review-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(44, 62, 80, 0.15);
}

.review-stars {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 2px;
}

.review-text {
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1rem;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: var(--font-secondary);
}

.review-author {
    font-weight: 600;
    color: var(--secondary-color);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

/* Contact Section */
.contact-section {
    background: var(--white);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.contact-section h2 {
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.contact-section h2::after {
    background: linear-gradient(90deg, var(--primary-color), #E49AB0);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

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

.contact-intro h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.contact-intro p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color);
    background: var(--white);
}

.contact-icon {
    background: rgba(216, 136, 160, 0.1);
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
    background: var(--primary-color);
    color: var(--white);
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-text p,
.contact-text a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(0, 0, 0, 1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow-color);
    border: 1px solid var(--border-color);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="0.8" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    /* allow clicks through decorative overlay */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--white);
}

.footer-logo-container {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
}

.footer-logo-svg {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links .social-link-simple {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.footer-links .social-link-simple.instagram {
    background: linear-gradient(135deg, #C4458B 0%, #A6306E 100%);
    color: var(--white);
}

.footer-links .social-link-simple.instagram:hover {
    background: transparent;
    color: #C4458B;
    border-color: #C4458B;
    transform: translateY(-2px);
}

.footer-links .social-link-simple.facebook {
    background: #1877F2;
    color: var(--white);
}

.footer-links .social-link-simple.facebook:hover {
    background: transparent;
    color: #1877F2;
    border-color: #1877F2;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-content,
.story-content,
.feature,
.review-item {
    animation: fadeInUp 0.8s ease-out;
}

/* Stop floating animation on hero images */
.hero-img {
    animation: none;
}

.hero-img:nth-child(2) {
    animation-delay: -2s;
}

.hero-img:nth-child(3) {
    animation-delay: -4s;
}

.hero-img:nth-child(4) {
    animation-delay: -6s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Navigation */
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .logo-container {
        width: 35px;
        height: 35px;
    }

    .logo-svg {
        width: 35px;
        height: 35px;
        object-fit: contain;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow-color);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-dropdown .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--background-light);
        margin-top: 0.5rem;
        border-radius: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section */
    .hero {
        min-height: 90vh;
        padding: 4rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
        padding-top: 3rem;
    }

    /* Adjust hero container when top banner is visible on mobile */
    body.top-banner-visible .hero-container {
        padding-top: 2.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-rating {
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        margin-top: 1rem;
    }

    /* Adjust hero rating when top banner is visible on mobile */
    body.top-banner-visible .hero-rating {
        margin-top: 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    /* Image Grid */
    .hero-image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .hero-img {
        height: 180px;
    }

    /* Sections */
    section {
        padding: 4rem 0;
    }

    section h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .story-content,
    .gluten-free-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Products */
    .product-showcase,
    .product-showcase.reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        margin-bottom: 4rem;
    }

    .product-showcase.reverse .product-image,
    .product-showcase.reverse .product-content {
        order: unset;
    }

    .product-image img {
        height: 280px;
    }

    .product-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .product-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .variant-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: left;
    }

    .variant-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .variant-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Celebrations */
    .celebrations-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .celebration-img-item {
        height: 180px;
    }

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

    .celebration-type {
        padding: 1.5rem;
        text-align: center;
    }

    /* Gallery */
    .gallery-container {
        padding: 0;
    }

    .gallery-track {
        padding: 1rem 1.5rem 2rem;
        gap: 1rem;
    }

    .gallery-item {
        flex: 0 0 260px;
        /* Slightly smaller on mobile */
        height: 260px;
    }

    /* Events */
    .events-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-category {
        padding: 1.5rem;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-item {
        padding: 1.5rem;
    }

    /* Features */
    .creamery-features,
    .gluten-free-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature,
    .gf-feature {
        padding: 1.5rem;
        text-align: center;
    }

    /* Contact */
    .contact-details {
        gap: 1rem;
    }

    .contact-method {
        padding: 1rem;
        /* Keep row layout for better readability */
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        align-items: center;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        margin: 0;
        /* Remove auto margin */
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    /* Social Links */
    .social-links-simple {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .social-link-simple {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-logo {
        font-size: 1.1rem;
    }

    .footer-logo-container {
        width: 32px;
        height: 32px;
    }

    .footer-logo-svg {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

    /* Utility */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    /* Newsletter */
    .newsletter-input-wrapper {
        flex-direction: column;
        padding: 12px;
        max-width: 100%;
    }

    .newsletter-btn {
        margin-top: 8px;
        justify-content: center;
    }

    .newsletter-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

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

    /* Navigation */
    .nav-logo {
        font-size: 1.1rem;
        gap: 0.8rem;
    }

    .logo-container {
        width: 35px;
        height: 35px;
    }

    .logo-svg {
        width: 50px;
        height: 50px;
        transform: scale(1.1);
    }

    /* Hero */
    .hero {
        min-height: 85vh;
        padding: 1.5rem 0;
    }

    .hero-container {
        gap: 1.5rem;
        padding: 0 15px;
        padding-top: 1rem;
    }

    /* Adjust hero container when top banner is visible on small mobile */
    body.top-banner-visible .hero-container {
        padding-top: 2rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-rating {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-top: 0.8rem;
    }

    /* Adjust hero rating when top banner is visible on small mobile */
    body.top-banner-visible .hero-rating {
        margin-top: 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    /* Image Grid - Single column for very small screens */
    .hero-image-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .hero-img {
        height: 200px;
    }

    /* Sections */
    section {
        padding: 3rem 0;
    }

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

    /* Products */
    .product-content h3 {
        font-size: 1.6rem;
    }

    .product-intro {
        font-size: 0.95rem;
    }

    .variant-item {
        padding: 1.2rem;
    }

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

    .price {
        font-size: 1.1rem;
    }

    /* Celebrations - Single column */
    .celebrations-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .celebration-img-item {
        height: 200px;
    }

    .celebration-types {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Gallery */
    .gallery-row {
        margin-bottom: 1.5rem;
    }

    .gallery-grid {
        animation-duration: 30s;
        /* Even faster on small mobile */
    }

    .gallery-item {
        min-width: 200px;
    }

    .gallery-item img {
        height: 200px;
    }

    /* Features */
    .feature,
    .gf-feature,
    .review-item,
    .event-category {
        padding: 1.2rem;
    }

    .feature h3,
    .gf-feature h3 {
        font-size: 1.1rem;
    }

    /* Contact */
    .contact-method {
        padding: 0.8rem;
    }

    .contact-text h4 {
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

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

    /* Newsletter */
    .newsletter-content h2 {
        font-size: 1.8rem;
    }

    .newsletter-content p {
        font-size: 1rem;
    }

    .newsletter-input-wrapper {
        padding: 8px;
    }

    .newsletter-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-logo {
        font-size: 1rem;
    }

    .footer-logo-container {
        width: 32px;
        height: 32px;
    }

    .footer-logo-svg {
        width: 40px;
        height: 40px;
        transform: scale(1.1);
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    /* Social Links */
    .social-link-simple {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus states for accessibility */
.nav-link:focus,
.cta-button:focus,
.scroll-to-top:focus {
    outline: 2px solid #E49AB0;
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .navbar,
    .nav-toggle,
    .social-links,
    .scroll-to-top {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .hero {
        page-break-inside: avoid;
    }
}

/* Additional smooth interactions */
.product-item,
.feature,
.review-item,
.gallery-item {
    will-change: transform;
}

/* Contact Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--background-light);
    color: var(--text-color);
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(216, 136, 160, 0.1);
}

.form-group select option {
    background: #E49AB0;
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), #D888A0);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 6px 20px rgba(216, 136, 160, 0.3);
}

.submit-btn:hover {
    background: #D888A0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Instagram Feed Styles */
.instagram-feed-container {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.instagram-feed-container h3 {
    color: #F8E8ED;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: var(--font-secondary);
}

.instagram-feed {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lightwidget-widget {
    border-radius: 15px;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.instagram-follow-btn:hover {
    background: black;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Gluten Free Link in Hero */
.gf-link {
    color: #E49AB0;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.gf-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E49AB0;
    transition: width 0.3s ease;
}

.gf-link:hover {
    color: #D888A0;
}

.gf-link:hover::after {
    width: 100%;
}

/* Critical CSS and Performance Optimizations */
img {
    loading: lazy;
    decoding: async;
}

/* Accessibility Improvements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #E49AB0;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.skip-link:focus {
    top: 6px;
    opacity: 1;
    visibility: visible;
}



/* Enhanced Mobile Experience */
@media (max-width: 768px) {

    /* Touch-friendly interactions */
    .cta-button,
    .submit-btn,
    .newsletter-btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }

    /* Improve tap targets */
    .nav-link,
    .social-link-simple,
    .gallery-item,
    .celebration-img-item {
        touch-action: manipulation;
    }

    /* Prevent zoom on form inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px !important;
        transform-origin: left top;
        transform: scale(1);
    }

    /* Smooth scrolling improvements */
    html {
        scroll-padding-top: 80px;
    }

    /* Better modal experience */
    .image-modal {
        padding: 1rem;
    }

    .modal-content {
        max-width: 95vw;
        max-height: 90vh;
        margin: 2rem auto;
    }



    /* Improved gallery touch */
    .gallery-item {
        position: relative;
        overflow: hidden;
    }

    .gallery-item:active {
        transform: scale(0.98);
    }

    /* Better celebration gallery on mobile */
    .celebration-img-item:active {
        transform: scale(0.98);
    }
}

/* Interactive Elements */
.zoomable-image {
    cursor: zoom-in;
    transition: transform 0.3s ease;
    position: relative;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.image-zoom-hint {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-image:hover .image-zoom-hint {
    opacity: 1;
}

/* Product Actions */
.product-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}



.availability-indicator {
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 500;
}

.availability-indicator.available {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.availability-indicator.limited {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.availability-indicator.unavailable {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Enhancements */
.contact-item a {
    color: #F8E8ED;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
    text-decoration: underline;
}

/* Newsletter Signup */
.newsletter-signup {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-signup h3 {
    color: #F8E8ED;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.newsletter-signup p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-input-group {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-input-group input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: transparent;
}

.newsletter-input-group input:focus {
    outline: none;
}

.newsletter-btn {
    background: #E49AB0;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: #D888A0;
}

.newsletter-privacy {
    margin-top: 0.5rem;
    text-align: center;
}

.newsletter-privacy small {
    opacity: 0.8;
    font-size: 0.75rem;
}

/* Form Validation */
.form-messages {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.success-message,
.error-message {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.field-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    min-height: 1rem;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #6c757d;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    background: #f8f9fa;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #dee2e6;
}

.modal-close:hover {
    color: white;
    background: #E49AB0;
    border-color: #E49AB0;
    transform: scale(1.1);
}

.modal-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
}



/* Permanent Top Banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FFE8F9 0%, #E49AB0 100%);
    color: white;
    padding: 0.8rem 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}

.top-banner.show {
    transform: translateY(0);
}

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

.top-banner-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.top-banner-icon {
    font-size: 1.1rem;
}

.top-banner-close {
    position: absolute;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.top-banner-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Enhanced Analytics Events */
[data-analytics] {
    cursor: pointer;
}

/* Error Handling */
.error-boundary {
    padding: 2rem;
    text-align: center;
    background: #f8d7da;
    color: #721c24;
    border-radius: 10px;
    margin: 1rem 0;
}

.offline-indicator {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #6c757d;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 1000;
    transform: translateY(100px);
    transition: transform 0.3s ease;
}

.offline-indicator.show {
    transform: translateY(0);
}

/* Performance Optimizations */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Print Styles */
@media print {

    .navbar,
    .scroll-to-top,
    .modal-content,
    .top-banner {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero {
        page-break-before: avoid;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: #f0f2f5;
    color: var(--text-color);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="2" fill="rgba(0,0,0,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(0,0,0,0.03)"/><circle cx="40" cy="80" r="1.5" fill="rgba(0,0,0,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.newsletter-form {
    margin-bottom: 2rem;
}

.newsletter-input-wrapper {
    display: flex;
    max-width: 450px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #2c3e50;
    background: transparent;
}

.newsletter-input-wrapper input::placeholder {
    color: #6c757d;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--primary-color), #D888A0);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(216, 136, 160, 0.3);
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    transition: left 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #D888A0, #C77A92);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(216, 136, 160, 0.4);
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.benefit-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.newsletter-privacy {
    text-align: center;
    opacity: 0.8;
}

.newsletter-privacy small {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 3rem 0;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .newsletter-content p {
        font-size: 1.1rem;
    }

    .newsletter-input-wrapper {
        max-width: 100%;
        flex-direction: column;
        padding: 12px;
    }

    .newsletter-btn {
        justify-content: center;
        margin-top: 8px;
    }

    .newsletter-benefits {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Removed duplicate contact styles */

.social-section h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    color: #6c757d;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #E49AB0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 154, 176, 0.3);
    border-color: #E49AB0;
}

.social-link svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-icon {
        align-self: center;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        justify-content: center;
        min-width: 200px;
    }
}

/* Simple Social Media Section */
.simple-social-section {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.simple-social-section h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.simple-social-section p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.social-links-simple {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link-simple {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link-simple.instagram {
    background: linear-gradient(135deg, #FFE8F9 0%, #E49AB0 100%);
    color: white;
}

.social-link-simple.instagram:hover {
    background: transparent;
    color: #E49AB0;
    border-color: #E49AB0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 154, 176, 0.3);
}

.social-link-simple.facebook {
    background: #1877F2;
    color: white;
}

.social-link-simple.facebook:hover {
    background: transparent;
    color: #1877F2;
    border-color: #1877F2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.social-note {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .social-links-simple {
        flex-direction: column;
        align-items: center;
    }

    .social-link-simple {
        min-width: 200px;
        justify-content: center;
    }
}

/* Social Media & Instagram Feed */
.social-media-section {
    background: #f8f9fa;
    padding: 3rem 0;
    border-top: 1px solid #e9ecef;
}

.social-media-section h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-description {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-feed-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFE8F9 0%, #E49AB0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(228, 154, 176, 0.3);
}

.profile-info h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.profile-info p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
}

.follow-btn {
    background: #E49AB0;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #E49AB0;
}

.follow-btn:hover {
    background: transparent;
    color: #E49AB0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 154, 176, 0.3);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    min-height: 200px;
}

.instagram-post {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-post:hover {
    transform: scale(1.05);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-weight: 600;
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

.instagram-embed-fallback {
    margin: 2rem 0;
}

.instagram-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px dashed #dee2e6;
}

.instagram-placeholder-content svg {
    color: #E49AB0;
    margin-bottom: 1rem;
}

.instagram-placeholder-content h4 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.instagram-placeholder-content p {
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.view-on-instagram {
    background: #E49AB0;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-on-instagram:hover {
    background: #D888A0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 154, 176, 0.3);
}

.instagram-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #f8f9fa;
}

.instagram-follow-btn {
    background: #2c3e50;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.instagram-follow-btn:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

@media (max-width: 768px) {
    .social-media-section {
        padding: 2rem 0;
    }

    .social-media-section h3 {
        font-size: 1.8rem;
    }

    .instagram-feed-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .instagram-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .instagram-placeholder {
        padding: 2rem 1rem;
    }
}

/* Additional Mobile Improvements */
@media (max-width: 768px) {

    /* Top banner mobile */
    .top-banner {
        padding: 0.6rem 0;
    }

    .top-banner-content {
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .top-banner-message {
        font-size: 0.85rem;
        text-align: center;
    }

    .top-banner-close {
        right: 1rem;
        width: 25px;
        height: 25px;
        font-size: 1.2rem;
    }

    /* Adjust navbar when top banner is visible on mobile */
    body.top-banner-visible .navbar {
        top: 50px;
    }



    /* Better mobile menu */
    .nav-menu {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    /* Improved mobile buttons */
    .cta-button,
    .submit-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
        border-radius: 25px;
    }

    /* Better mobile spacing */
    .hero-content {
        padding: 1rem 0;
    }

    .product-showcase {
        margin-bottom: 3rem;
    }

    /* Mobile-optimized images */
    .hero-img,
    .gallery-item img,
    .celebration-img-item img {
        border-radius: 15px;
    }

    /* Better mobile typography */
    .hero-subtitle {
        line-height: 1.4;
    }

    .product-intro {
        line-height: 1.5;
    }

    /* Mobile-friendly hover states */
    .gallery-item:hover,
    .celebration-img-item:hover,
    .feature:hover,
    .review-item:hover {
        transform: none;
    }

    /* Mobile accessibility */
    .skip-link:focus {
        top: 10px;
        left: 10px;
        right: 10px;
        text-align: center;
    }
}

/* Very small screens (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-img {
        height: 180px;
    }

    section h2 {
        font-size: 1.7rem;
    }

    .product-content h3 {
        font-size: 1.4rem;
    }

    .variant-item,
    .feature,
    .review-item {
        padding: 1rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .newsletter-input-wrapper {
        padding: 6px;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}