﻿/* Crop Info Widget Styles - Self-contained */
.crop-info-widget {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    margin: 20px auto;
    padding: 0;
    background: transparent;
    border: none;
}

/* Company Header */
.crop-company-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #2c7744, #3a8c55);
    border-radius: 12px;
    color: white;
}

.crop-company-name {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.crop-company-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 300;
}

/* Product Start Section */
.product-start-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #2c7744;
}

.product-title {
    font-size: 1.8rem;
    color: #2c7744;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.product-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 20px 0;
}

.product-highlights {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.highlight-tag {
    background: #e8f5e8;
    color: #2c7744;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #c8e6c9;
}

/* Card Design */
.crop-card-container {
    margin-bottom: 30px;
}

.crop-main-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .crop-main-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

.card-header-section {
    background: linear-gradient(135deg, #2c7744, #4caF50);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.premium-badge {
    background: rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.card-content {
    padding: 0;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

    .info-item:hover {
        background-color: #f9f9f9;
    }

    .info-item:last-child {
        border-bottom: none;
    }

.info-icon {
    font-size: 1.5rem;
    margin-right: 20px;
    width: 40px;
    text-align: center;
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 4px;
}

.info-value {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

/* Image Section */
.crop-image-section {
    margin-bottom: 30px;
    text-align: center;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.original-crop-image {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

    .original-crop-image:hover {
        transform: scale(1.02);
    }

.image-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(44, 119, 68, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.image-caption {
    margin-top: 15px;
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 2px dashed #dee2e6;
}

.download-content {
    max-width: 500px;
    margin: 0 auto;
}

.download-title {
    font-size: 1.6rem;
    color: #2c7744;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.download-subtitle {
    color: #666;
    margin: 0 0 20px 0;
    font-size: 1rem;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.file-size, .file-pages {
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2c7744, #4caF50);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(44, 119, 68, 0.3);
}

    .download-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(44, 119, 68, 0.4);
        color: white;
        text-decoration: none;
    }

    .download-button:active {
        transform: translateY(-1px);
    }

.button-icon {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .crop-info-widget {
        margin: 15px;
        padding: 0;
    }

    .crop-company-name {
        font-size: 1.8rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .card-header-section {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .info-item {
        padding: 15px 20px;
    }

    .download-section {
        padding: 20px 15px;
    }

    .download-info {
        flex-direction: column;
        gap: 10px;
    }
}
.hero-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    max-width: 900px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    margin: 20px auto;
    transition: all 0.3s ease;
}

    .hero-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    }

    .hero-card .card-image {
        position: relative;
        height: 400px;
        overflow: hidden;
    }

        .hero-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

    .hero-card:hover .card-image img {
        transform: scale(1.05);
    }

    .hero-card .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(39, 174, 96, 0.3), rgba(46, 204, 113, 0.1));
    }

    .hero-card .card-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #e74c3c;
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .hero-card .card-content {
        padding: 40px;
    }

    .hero-card .brand-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-card .brand-title {
        font-size: 3rem;
        font-weight: 800;
        color: #2c3e50;
        margin: 0 0 10px 0;
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-card .brand-subtitle {
        font-size: 1.3rem;
        color: #7f8c8d;
        margin: 0;
        font-weight: 500;
    }

    .hero-card .brand-stats {
        display: flex;
        justify-content: space-around;
        margin: 30px 0;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 16px;
    }

    .hero-card .stat {
        text-align: center;
    }

    .hero-card .stat-number {
        display: block;
        font-size: 2.2rem;
        font-weight: 700;
        color: #27ae60;
        margin-bottom: 5px;
    }

    .hero-card .stat-label {
        font-size: 0.9rem;
        color: #7f8c8d;
        font-weight: 500;
    }

    .hero-card .brand-description {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #5a6c7d;
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-card .card-actions {
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    .hero-card .btn {
        padding: 14px 32px;
        border: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .hero-card .btn.primary {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: white;
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
        }

            .hero-card .btn.primary:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
            }

        .hero-card .btn.secondary {
            background: transparent;
            color: #27ae60;
            border: 2px solid #27ae60;
        }

            .hero-card .btn.secondary:hover {
                background: #27ae60;
                color: white;
                transform: translateY(-2px);
            }

@media (max-width: 768px) {
    .hero-card .card-image {
        height: 300px;
    }

    .hero-card .brand-title {
        font-size: 2.2rem;
    }

    .hero-card .brand-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-card .card-actions {
        flex-direction: column;
    }
}