/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F25A22;
    --primary-dark: #D4471B;
    --primary-light: #F4793A;
    --secondary-color: #2c3e50;
    --accent-gold: #f4d03f;
    --success-green: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.highlight {
    color: var(--primary-color);
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.indicator i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(242, 90, 34, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(242, 90, 34, 0.4);
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
}

.cta-button .price {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-gold));
    border-radius: 2px;
}

/* Product Description */
.product-description {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.description-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.description-text p {
    margin-bottom: 1.5rem;
}

.warning-box {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.taste-warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.usage-tips {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.usage-tips h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.usage-tips ul {
    list-style: none;
    padding: 0;
}

.usage-tips li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.usage-tips li:last-child {
    border-bottom: none;
}

/* Awards Section */
.awards {
    padding: 5rem 0;
    background: white;
}

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

.award-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

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

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.award-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.award-card p {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.year {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Product Showcase */
.product-showcase {
    padding: 5rem 0;
    background: white;
}

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

.comparison {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.comparison-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.comparison-icon.normal {
    background: linear-gradient(45deg, #95a5a6, #bdc3c7);
    color: white;
}

.comparison-icon.early {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    animation: pulse 2s infinite;
}

.vs {
    font-weight: 700;
    font-size: 1.5rem;
    color: #e74c3c;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.benefits {
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: translateX(10px);
}

.benefit i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.benefit:hover i {
    color: white;
}

.product-360 {
    position: relative;
    text-align: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

.rotating-text {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Process Timeline */
.process {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.process .section-title {
    color: white;
}

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

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(242, 90, 34, 0.3);
}

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

.timeline-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.timeline-visual {
    margin-top: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.timeline-visual img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.timeline-visual:hover img {
    transform: scale(1.1);
}

/* Health Benefits */
.health-benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(39, 174, 96, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.benefit-card:hover::before {
    opacity: 1;
    top: -100%;
    left: -100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.benefit-icon.heart {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.benefit-icon.brain {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.benefit-icon.shield {
    background: linear-gradient(45deg, #27ae60, #229954);
}

.benefit-icon.anti-aging {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Taste Profile */
.taste-profile {
    padding: 5rem 0;
    background: white;
}

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

.flavor-notes {
    margin: 2rem 0;
}

.flavor-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.flavor-note:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: translateX(10px);
}

.flavor-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.flavor-dot.grass { background: linear-gradient(45deg, #27ae60, #2ecc71); }
.flavor-dot.artichoke { background: linear-gradient(45deg, #16a085, #1abc9c); }
.flavor-dot.almond { background: linear-gradient(45deg, #d35400, #e67e22); }
.flavor-dot.apple { background: linear-gradient(45deg, #c0392b, #e74c3c); }

.pairing {
    margin-top: 2rem;
}

.pairing h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.pairing-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pairing-item {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.flavor-wheel {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.wheel-center img {
    width: 60px;
    height: 60px;
}

.wheel-segments {
    position: relative;
    width: 100%;
    height: 100%;
}

.segment {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: 100% 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.segment.grass {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    top: 0;
    left: 0;
    transform: rotate(0deg);
}

.segment.artichoke {
    background: linear-gradient(45deg, #16a085, #1abc9c);
    top: 0;
    right: 0;
    transform: rotate(90deg);
}

.segment.almond {
    background: linear-gradient(45deg, #d35400, #e67e22);
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

.segment.apple {
    background: linear-gradient(45deg, #c0392b, #e74c3c);
    bottom: 0;
    left: 0;
    transform: rotate(270deg);
}

.segment:hover {
    filter: brightness(1.2);
    z-index: 1;
}

/* Social Proof */
.social-proof {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.testimonial-slider {
    position: relative;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
    position: relative;
}

.testimonial.active {
    display: block;
    animation: fadeUp 0.5s ease-out;
}

.stars {
    color: #f4d03f;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #2c3e50;
    font-weight: 600;
}

.verified {
    color: #27ae60;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #7f8c8d;
    font-weight: 500;
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
    height: 500px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item.main-photo {
    grid-row: 1 / 3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

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

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

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.photo-overlay h3, .photo-overlay h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.stat-text strong {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.stat-text span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Special Features Section */
.special-features {
    padding: 5rem 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.feature-card.urgent {
    background: linear-gradient(135deg, #fff5f5, #ffe5e5);
    border: 2px solid #ff6b6b;
}

.feature-card.limited {
    background: linear-gradient(135deg, #fff8e5, #ffebcd);
    border: 2px solid var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-highlight {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.feature-card.urgent .feature-highlight {
    background: #ff6b6b;
}

.urgency-banner {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #856404;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #ffc107;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,193,7,0.1) 10px,
        rgba(255,193,7,0.1) 20px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

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

.countdown-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Updated Urgency Section */
.urgency {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-dark);
}

.urgency-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.urgency-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.urgency-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.urgency-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.urgency-card p {
    color: var(--text-light);
}

.stock-warning {
    text-align: center;
    background: #fff3cd;
    color: #856404;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-weight: 600;
    border: 1px solid #ffeaa7;
}

.season-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.season-info h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.season-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.season-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.season-value {
    color: var(--primary-color);
    font-weight: 700;
}

.urgency-content {
    text-align: center;
}

.urgency-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.stock-info {
    margin-bottom: 2rem;
}

.stock-counter {
    margin-bottom: 1rem;
}

.stock-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stock-text {
    font-size: 1.2rem;
    margin-left: 0.5rem;
    color: var(--text-dark);
}

.stock-bar {
    width: 300px;
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    margin: 0 auto;
    overflow: hidden;
}

.stock-fill {
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 5px;
    animation: shimmer 2s infinite;
    background-size: 200% 100%;
}

.guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.guarantee i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Order Section */
.order {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.order-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 600px;
    margin: 0 auto;
}

.product-summary {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.product-thumb {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.product-info p {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing {
    text-align: center;
    margin-bottom: 2rem;
}

.price-main {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    color: #7f8c8d;
    font-size: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-selector label {
    font-weight: 600;
    color: #2c3e50;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.qty-btn {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
}

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

#quantity {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
}

.shipping-info {
    text-align: center;
    margin-bottom: 2rem;
}

.shipping-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--success-green), #2ecc71);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
}

.payment-options {
    margin-bottom: 2rem;
}

.payment-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #2c3e50;
}

.payment-method i {
    color: var(--primary-color);
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(242, 90, 34, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(242, 90, 34, 0.4);
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.trust-signal i {
    color: var(--primary-color);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: between;
    align-items: center;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
}

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

.faq-question i {
    margin-left: auto;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e9ecef;
    padding: 1rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.sticky-cta.show {
    transform: translateY(0);
}

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

.sticky-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sticky-product img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.sticky-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.sticky-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.sticky-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    .indicator {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .showcase-grid,
    .taste-grid,
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vs {
        transform: rotate(90deg);
    }
    
    .timeline {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .guarantees {
        gap: 1rem;
    }
    
    .guarantee {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .product-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-signals {
        gap: 1rem;
    }
    
    .sticky-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .sticky-btn {
        width: 100%;
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }
    
    .order-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .price-main {
        font-size: 2.5rem;
    }
    
    .flavor-wheel {
        width: 250px;
        height: 250px;
    }
    
    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 1rem;
    }
    
    .gallery-item.main-photo {
        grid-row: auto;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .gallery-stats {
        grid-template-columns: 1fr;
    }
    
    /* Features responsive */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Urgency responsive */
    .urgency-grid {
        grid-template-columns: 1fr;
    }
    
    .season-details {
        grid-template-columns: 1fr;
    }
    
    .season-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}


/* Product Description Styles */
.product-description {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.description-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.warning-box {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    animation: pulse 3s infinite;
}

.taste-warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.usage-tips {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.usage-tips li::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Taste Profile */
.taste-profile {
    padding: 5rem 0;
    background: white;
}

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

.flavor-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.flavor-note:hover {
    background: #f8f9fa;
    transform: translateX(10px);
}

.flavor-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.flavor-dot.grass { background: #27ae60; }
.flavor-dot.artichoke { background: #2ecc71; }
.flavor-dot.almond { background: #f4d03f; }
.flavor-dot.apple { background: #e74c3c; }

.pairing-item {
    background: #F25A22;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pairing-item:hover {
    background: #F4793A;
    transform: scale(1.05);
}

.flavor-wheel {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    background: linear-gradient(45deg, #F25A22, #F4793A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(242, 90, 34, 0.3);
    animation: rotate 20s linear infinite;
}

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

