* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff6b35;
    --secondary: #f7931e;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --success: #27ae60;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.9em;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s;
}

.hero-title {
    font-size: 4em;
    margin-bottom: 15px;
    animation: fadeInUp 1s;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s 0.2s both;
}

.hero-btn {
    padding: 18px 40px;
    font-size: 1.2em;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s;
    animation: fadeInUp 1s 0.4s both;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.hero-btn i {
    margin-right: 10px;
}

.hero-vegetables {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.vegetable {
    position: absolute;
    font-size: 3em;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
}

.veg-1 { top: 10%; left: 10%; animation-delay: 0s; }
.veg-2 { top: 20%; right: 15%; animation-delay: 1s; }
.veg-3 { bottom: 20%; left: 20%; animation-delay: 2s; }
.veg-4 { bottom: 30%; right: 10%; animation-delay: 3s; }
.veg-5 { top: 50%; left: 5%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: 50px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    position: relative;
    overflow: hidden;
}

.features-overlay {
    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 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.features::before {
    content: '🍅';
    position: absolute;
    font-size: 8em;
    opacity: 0.1;
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.features::after {
    content: '🌶️';
    position: absolute;
    font-size: 6em;
    opacity: 0.1;
    bottom: 15%;
    right: 8%;
    animation: float 10s ease-in-out infinite 2s;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: white;
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.feature-card h3 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.1em;
}

.feature-card p {
    color: #666;
    font-size: 0.9em;
}

.feature-card p {
    color: #666;
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: white;
}

.benefits .section-title {
    color: var(--primary);
}

.benefits .section-subtitle {
    color: #666;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe6e0 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: var(--primary);
}

.benefit-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3em;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Ingredients Section */
.ingredients {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    position: relative;
    overflow: hidden;
}

.ingredients-overlay {
    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 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,192L48,197.3C96,203,192,213,288,192C384,171,480,117,576,112C672,107,768,149,864,154.7C960,160,1056,128,1152,112C1248,96,1344,96,1392,96L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
    background-size: cover;
    pointer-events: none;
}

.ingredients::before {
    content: '🧅';
    position: absolute;
    font-size: 10em;
    opacity: 0.08;
    top: 20%;
    right: 10%;
    animation: float 12s ease-in-out infinite;
}

.ingredients::after {
    content: '🫑';
    position: absolute;
    font-size: 7em;
    opacity: 0.08;
    bottom: 10%;
    left: 5%;
    animation: float 9s ease-in-out infinite 3s;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2em;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ingredient-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.ingredient-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: white;
}

.ingredient-item span {
    display: block;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    text-align: center;
    padding: 60px 20px 40px;
}

header .section-title {
    color: var(--primary);
}

header .section-subtitle {
    color: #666;
}

.products {
    padding: 80px 20px;
    background: white;
    position: relative;
}

.products::before {
    content: '🌾';
    position: absolute;
    font-size: 12em;
    opacity: 0.03;
    top: 10%;
    right: 5%;
    animation: float 10s ease-in-out infinite;
}

.products .section-title {
    color: var(--primary);
}

.products .section-subtitle {
    color: #666;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85em;
    font-weight: bold;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.product-badge.hot {
    background: rgba(255, 107, 53, 0.9);
    color: white;
}

.product-badge.mild {
    background: rgba(39, 174, 96, 0.9);
    color: white;
}

.product-badge.fresh {
    background: rgba(52, 152, 219, 0.9);
    color: white;
}

.product-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-icons {
    display: flex;
    gap: 10px;
    font-size: 1.5em;
}

.product-card h3 {
    color: var(--dark);
    margin: 20px 20px 10px;
    font-size: 1.5em;
}

.description {
    color: #666;
    margin: 0 20px 15px;
    font-size: 0.95em;
    line-height: 1.5;
}

.product-features {
    display: flex;
    gap: 15px;
    margin: 0 20px 20px;
    font-size: 0.85em;
    color: var(--success);
}

.product-features i {
    margin-right: 5px;
}

.variants {
    margin: 0 20px 15px;
}

.variant {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.variant::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.variant:hover {
    border-color: var(--primary);
    background: #fff;
    transform: translateX(5px);
}

.variant:hover::before {
    transform: scaleY(1);
}

.variant input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.variant-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.variant-weight {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1em;
}

.variant-price {
    font-weight: bold;
    color: var(--primary);
    font-size: 1.3em;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe6e0 100%);
    padding: 5px 15px;
    border-radius: 8px;
}

.variant input[type="radio"]:checked ~ .variant-info .variant-price {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.variant input[type="radio"]:checked ~ .variant-info .variant-weight {
    color: var(--primary);
}

.quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 1.5em;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.qty-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.quantity input {
    width: 70px;
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px;
    color: var(--dark);
}

.btn-add-cart {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-add-cart:active {
    transform: translateY(0);
}

.btn-add-cart i {
    margin-right: 8px;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-overlay {
    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 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,122.7C960,139,1056,149,1152,133.3C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.testimonials::before {
    content: '⭐';
    position: absolute;
    font-size: 15em;
    opacity: 0.05;
    top: 5%;
    left: 10%;
    animation: float 15s ease-in-out infinite;
}

.testimonials .section-title {
    color: white;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.testimonial-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-wrapper {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: white;
}

.stars {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    min-height: 120px;
}

.testimonial-author {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.95em;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

.slider-btn i {
    font-size: 1.2em;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: white;
}

.stars {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    min-height: 120px;
}

.testimonial-author {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.95em;
}

.cart-summary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.cart-summary::before {
    content: '🛒';
    position: absolute;
    font-size: 8em;
    opacity: 0.1;
    top: -20px;
    right: -20px;
    animation: float 8s ease-in-out infinite;
}

.cart-summary h2 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

#cartItems {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-remove {
    background: rgba(231, 76, 60, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
}

.btn-remove:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.btn-remove:active {
    transform: translateY(0);
}

.cart-totals {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    position: relative;
    z-index: 1;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 1.1em;
    color: white;
}

.total-row.total {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.order-form {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.order-form::before {
    content: '📝';
    position: absolute;
    font-size: 10em;
    opacity: 0.08;
    bottom: -30px;
    right: -30px;
    animation: float 10s ease-in-out infinite;
}

.order-form h2 {
    color: white;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s;
    background: white;
    cursor: pointer;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff6b35' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

.payment-methods {
    margin: 25px 0;
    position: relative;
    z-index: 1;
}

.payment-methods h3 {
    color: white;
    margin-bottom: 15px;
}

.payment-option {
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.payment-option:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.payment-option input[type="radio"] {
    margin-right: 10px;
}

.payment-option input[type="radio"]:checked ~ span {
    font-weight: bold;
    color: white;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 60px 20px 20px;
    margin-top: 80px;
    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 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
    background-size: cover;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.footer-section h4 {
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
    font-size: 1.1em;
}

.footer-section p {
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
    line-height: 1.6;
}

.footer-section i {
    margin-right: 10px;
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3em;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.3);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: white;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    border-left: 5px solid #27ae60;
}

.notification.warning {
    border-left: 5px solid #f39c12;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-content i {
    font-size: 1.5em;
}

.notification.success i {
    color: #27ae60;
}

.notification.warning i {
    color: #f39c12;
}

.notification-content span {
    color: var(--dark);
    font-weight: 500;
    font-size: 1em;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .order-form {
        padding: 25px;
    }
    
    .vegetable {
        font-size: 2em;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .ingredient-item {
        padding: 15px 10px;
    }
    
    .ingredient-item span {
        font-size: 0.85em;
    }
    
    .testimonial-slider {
        padding: 0 40px;
    }
    
    .testimonial-track {
        width: auto;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-card p {
        min-height: auto;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 15px 20px;
    }
    
    .notification-content {
        gap: 10px;
    }
    
    .notification-content i {
        font-size: 1.2em;
    }
    
    .notification-content span {
        font-size: 0.9em;
    }
}


/* Payment Section */
.payment-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.payment-section::before {
    content: '💳';
    position: absolute;
    font-size: 10em;
    opacity: 0.08;
    bottom: -30px;
    right: -30px;
    animation: float 10s ease-in-out infinite;
}

.payment-section h2 {
    color: white;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.payment-section .payment-methods {
    margin: 0 0 30px 0;
    position: relative;
    z-index: 1;
}

.payment-section .payment-methods h3 {
    display: none;
}

.payment-section .btn-submit {
    width: 100%;
    padding: 18px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.payment-section .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.payment-section .btn-submit:active {
    transform: translateY(0);
}

.payment-section .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


/* Çark Trigger Button */
.wheel-trigger {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px 0 0 50px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    z-index: 9999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wheel-trigger:hover {
    transform: translateY(-50%) translateX(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.wheel-trigger-icon {
    font-size: 2em;
    animation: rotate 3s linear infinite;
}

.wheel-trigger-text {
    font-weight: bold;
    font-size: 0.9em;
    line-height: 1.3;
    text-align: center;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(255, 107, 53, 0.8); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Çark Modal */
.wheel-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.wheel-modal.active {
    display: flex;
}

.wheel-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.wheel-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wheel-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2em;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.wheel-close:hover {
    background: #f0f0f0;
    color: #333;
}

.wheel-modal-content h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 2em;
}

.wheel-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.wheel-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

#wheelCanvas {
    width: 100%;
    height: 100%;
}

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3em;
    color: var(--primary);
    z-index: 10;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

.wheel-spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: 5px solid white;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    z-index: 10;
}

.wheel-spin-btn:hover:not(:disabled) {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.wheel-spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wheel-result {
    margin-bottom: 30px;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wheel-result-content {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
    padding: 40px;
    border-radius: 25px;
    border: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.wheel-result-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #FFD93D, #6BCB77);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.celebration-icon {
    font-size: 5em;
    animation: rotateScale 1s ease-in-out infinite;
    margin-bottom: 10px;
}

@keyframes rotateScale {
    0%, 100% { 
        transform: rotate(-10deg) scale(1);
    }
    50% { 
        transform: rotate(10deg) scale(1.2);
    }
}

.celebration-title {
    font-size: 3em;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #FFD93D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
    }
}

.wheel-prize {
    font-size: 2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.wheel-code-box {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.wheel-code-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.code-label {
    color: white;
    font-size: 1.1em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.code-value {
    font-size: 2.5em;
    font-weight: 900;
    color: white;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    font-family: 'Courier New', monospace;
    background: rgba(255,255,255,0.2);
    padding: 15px 25px;
    border-radius: 12px;
    display: inline-block;
}

.code-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
}

.code-timer i {
    font-size: 1.3em;
    animation: pulse 1s infinite;
}

.countdown-value {
    font-family: 'Courier New', monospace;
    font-size: 1.5em;
    background: rgba(255,255,255,0.3);
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

/* Konfeti Animasyonu */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    top: -10px;
    z-index: 10001;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.wheel-use-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.4em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wheel-use-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.6);
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.wheel-use-btn:active {
    transform: translateY(-1px);
}

.wheel-use-btn i {
    margin-right: 12px;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .wheel-trigger {
        right: 10px;
        padding: 10px 15px;
    }
    
    .wheel-trigger-icon {
        font-size: 1.5em;
    }
    
    .wheel-trigger-text {
        font-size: 0.75em;
    }
    
    .wheel-modal-content {
        padding: 20px;
    }
    
    .wheel-container {
        width: 300px;
        height: 300px;
    }
    
    .wheel-spin-btn {
        width: 80px;
        height: 80px;
        font-size: 1em;
    }
}
