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

:root {
    --primary-color: #849D67;
    --primary-dark: #6E8458;
    --primary-light: #A8C085;
    --text-dark: #111;
    --text-light: #666;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --accent-color: #ff9800;
    --shadow-sm: 0 2px 4px rgba(132, 157, 103, 0.1);
    --shadow-md: 0 4px 12px rgba(132, 157, 103, 0.15);
    --shadow-lg: 0 10px 30px rgba(132, 157, 103, 0.2);
    --shadow-xl: 0 20px 50px rgba(132, 157, 103, 0.25);
}

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

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

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

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes floatFruit {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(132, 157, 103, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(132, 157, 103, 0.8), 0 0 30px rgba(132, 157, 103, 0.4);
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    animation: fadeInUp 0.6s ease;
}

/* Animated Background */
.leafy-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23849d67' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: pulseBg 20s ease-in-out infinite;
}

/* Floating Leaves */
.floating-leaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23849D67' d='M17 8C8 10 5 9 5 9s-1 7 4 7 7-2 7-2 1 5-5 5-8-2-7-6c0 0 4-1 7-1s5 1 5 1z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    animation: float 20s infinite linear;
}

/* Vine decorations with animation */
.vine-decoration {
    position: fixed;
    z-index: 3;
    opacity: 0.25;
    pointer-events: none;
    animation: floatFruit 15s infinite ease-in-out;
}

.vine-1 {
    top: 10%;
    left: -5%;
    width: 300px;
    height: 400px;
    transform: rotate(-10deg);
    animation-delay: 0s;
}

.vine-2 {
    top: 15%;
    right: -5%;
    width: 250px;
    height: 350px;
    transform: rotate(15deg);
    animation-delay: 2s;
}

.vine-3 {
    bottom: 10%;
    left: -3%;
    width: 280px;
    height: 380px;
    transform: rotate(5deg);
    animation-delay: 4s;
}

.vine-4 {
    bottom: 5%;
    right: -4%;
    width: 320px;
    height: 420px;
    transform: rotate(-8deg);
    animation-delay: 6s;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

/* Enhanced Header - Fixed Z-Index */
header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(132, 157, 103, 0.1);
    transition: all 0.3s ease;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header:hover {
    box-shadow: 0 6px 30px rgba(132, 157, 103, 0.15);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: width 0.3s ease;
}

.logo:hover::before {
    width: 100%;
}

.logo:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(132, 157, 103, 0.3));
}

.logo img {
    width: clamp(50px, 8vw, 80px);
    height: clamp(50px, 8vw, 80px);
    object-fit: contain;
    transition: all 0.3s ease;
    animation: pulse 3s infinite;
}

.logo:hover img {
    transform: rotate(5deg) scale(1.1);
}

.cart-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.cart-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cart-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cart-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.cart-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
    background-size: 200% 100%;
    z-index: 10000;
    transition: width 0.3s ease;
    animation: shimmer 2s infinite;
    box-shadow: 0 2px 10px rgba(132, 157, 103, 0.5);
}

/* Hero Section */
.hero {
    padding: clamp(2rem, 5vw, 4rem) 1rem;
    position: relative;
    z-index: 20;
    background: linear-gradient(135deg, rgba(132, 157, 103, 0.08) 0%, rgba(255, 255, 255, 0) 50%, rgba(168, 192, 133, 0.05) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(132, 157, 103, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s infinite;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.8;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease 0.4s both;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 1rem;
    opacity: 0.2;
    z-index: -1;
    animation: glow 3s infinite;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    height: auto;
    min-height: 300px;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05) rotate(1deg);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.4s both;
    letter-spacing: 0.5px;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Featured Section */
.featured {
    padding: clamp(3rem, 6vw, 5rem) 1rem;
    position: relative;
    z-index: 20;
}

.featured-header {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    font-weight: 800;
    color: var(--text-dark);
}

.leaf-accent {
    display: inline-block;
    color: var(--primary-color);
    margin: 0 0.75rem;
    animation: bounce 2s infinite ease-in-out;
    font-size: 1.5rem;
}

/* Product Grid */
.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.product-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    animation: scaleIn 0.5s ease backwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    animation: shimmer 3s infinite;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, var(--bg-light), var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(132, 157, 103, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: var(--primary-color);
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: clamp(3rem, 6vw, 5rem) 1rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-section h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.cta-section p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-4px) scale(1.05);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: clamp(2rem, 4vw, 3rem) 1rem;
    text-align: center;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-contact {
    margin: 1rem 0;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 500;
}

/* Account Prompt Banner */
.account-prompt-banner {
    background: linear-gradient(135deg, #ff9800 0%, #ff6b00 50%, #ff9800 100%);
    background-size: 200% 100%;
    color: white;
    padding: 1.5rem 1rem;
    position: relative;
    z-index: 25;
    animation: pulseBg 3s infinite ease-in-out, slideDown 0.6s ease;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

.account-prompt-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.account-prompt-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 250px;
}

.prompt-icon {
    font-size: 2.5rem;
    animation: bounce 2s infinite ease-in-out;
    flex-shrink: 0;
}

.account-prompt-text strong {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.account-prompt-text p {
    font-size: clamp(0.85rem, 2vw, 1rem);
    margin: 0;
    opacity: 0.95;
    line-height: 1.4;
}

.prompt-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.account-prompt-banner .btn-primary {
    background: white;
    color: #ff9800;
    padding: 0.875rem 1.75rem;
    font-weight: 700;
    font-size: clamp(0.85rem, 2vw, 1rem);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.account-prompt-banner .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #ff6b00;
}

.account-prompt-banner .btn-customer {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-color: #4CAF50;
}

.account-prompt-banner .btn-customer:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    color: white;
}

.account-prompt-banner .btn-business {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    border-color: #2196F3;
}

.account-prompt-banner .btn-business:hover {
    background: linear-gradient(135deg, #1976D2, #2196F3);
    color: white;
}

.prompt-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-weight: bold;
    line-height: 1;
}

.prompt-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: rotate(90deg) scale(1.1);
}

/* Seasonal Banner */
.seasonal-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    color: white;
    padding: 1.25rem;
    text-align: center;
    position: relative;
    z-index: 20;
    animation: pulseBg 4s infinite ease-in-out;
    box-shadow: 0 4px 15px rgba(132, 157, 103, 0.3);
}

.seasonal-banner p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 500;
    animation: fadeInUp 0.6s ease;
}

/* Modal styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-color);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
    animation: scaleIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.modal-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--primary-color);
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Size Selection */
.size-selection-container {
    margin: 1.5rem 0;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.size-card {
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.size-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(132, 157, 103, 0.1), transparent);
    transition: left 0.5s ease;
}

.size-card:hover::before {
    left: 100%;
}

.size-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.size-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(132, 157, 103, 0.1), rgba(168, 192, 133, 0.05));
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.size-badge {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.size-price {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.size-info {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.quantity-label {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(90deg);
}

.qty-btn:active {
    transform: scale(0.95);
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(132, 157, 103, 0.1);
}

/* Responsive Design for Size Selection */
@media (max-width: 768px) {
    .size-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .size-card {
        padding: 1rem;
    }

    .size-badge {
        font-size: 1.2rem;
    }

    .size-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .size-grid {
        grid-template-columns: 1fr;
    }

    .size-selection-container {
        margin: 1rem 0;
    }

    .quantity-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .quantity-selector {
        justify-content: center;
    }
}

/* Tier quantity controls */
.tier-quantity-controls {
    margin-top: 1rem;
}

.tier-quantity-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tier-quantity-row:hover {
    background: rgba(132, 157, 103, 0.05);
    border-radius: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.tier-quantity-info {
    display: flex;
    flex-direction: column;
}

.tier-quantity-name {
    font-weight: 700;
    color: var(--text-dark);
}

.tier-quantity-price {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
}

.tier-quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(90deg);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(132, 157, 103, 0.1);
}

/* Price display */
.price-display {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 800;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--primary-color);
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(132, 157, 103, 0.1), rgba(168, 192, 133, 0.05));
    border-radius: 1rem;
    border: 2px solid var(--primary-color);
    animation: pulse 2s infinite;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--text-dark), #2c3e50);
    color: white;
    padding: 1.25rem 1.75rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    z-index: 10001;
    animation: slideIn 0.4s ease, fadeOut 0.4s 2.6s forwards;
    border-left: 4px solid var(--primary-color);
    max-width: 350px;
    font-weight: 500;
}

/* Login/Form Styles */
.login-container {
    max-width: 450px;
    margin: clamp(60px, 10vw, 100px) auto;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 2px solid rgba(132, 157, 103, 0.2);
    animation: fadeInUp 0.6s ease;
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(132, 157, 103, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.login-container h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
    z-index: 1;
}

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

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(132, 157, 103, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .header-content {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .logo {
        font-size: 1.75rem;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .cart-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

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

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

    .modal-content {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .login-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .vine-decoration {
        display: none;
    }

    .floating-leaves {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }

    .header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cart-btn {
        width: 100%;
        justify-content: center;
    }

    .tier-options {
        grid-template-columns: 1fr;
    }

    .btn-primary {
        width: 100%;
        padding: 1rem;
    }

    .toast {
        right: 10px;
        left: 10px;
        bottom: 10px;
        max-width: none;
    }

    .account-prompt-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .account-prompt-text {
        flex-direction: column;
        text-align: center;
    }

    .prompt-buttons {
        flex-direction: column;
        width: 100%;
    }

    .account-prompt-banner .btn-primary {
        width: 100%;
    }
    
    .account-prompt-content {
        flex-direction: column;
        gap: 1rem;
    }

    .prompt-close {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
