﻿/* Onion Seeds Full Images Design */
.onion-seeds-full {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.full-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px 0;
}

.full-title {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.full-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-weight: 300;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background: #e74c3c;
    border-radius: 50%;
    display: inline-block;
}

.decoration-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #3498db);
    border-radius: 2px;
}

/* Products Container */
.full-products {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}

/* Full Product Card */
.full-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .full-product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

/* Visual Area */
.product-visual-area {
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #eee;
}

.full-image-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.full-product-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: contain;
    max-height: 400px;
}

.image-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(52, 152, 219, 0.2);
    border-radius: 10px;
    pointer-events: none;
}

/* Quick Tags */
.quick-tags {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.tag {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tag-red {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.tag-green {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.tag-blue {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.tag-pink {
    background: linear-gradient(135deg, #e84393, #fd79a8);
}

.tag-gold {
    background: linear-gradient(135deg, #f39c12, #d68910);
}

.tag-orange {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

/* Details Area */
.product-details-area {
    padding: 30px;
    background: white;
}

/* Details Header */
.details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f1f1;
}

.title-group {
    flex: 1;
}

.product-title-marathi {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 700;
}

.product-title-english {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 400;
    font-style: italic;
}

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    padding: 10px 15px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 4px 8px rgba(243, 156, 18, 0.2);
}

.rating-stars {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rating-score {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Full Info Section */
.full-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.info-column {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.info-group {
    width: 100%;
}

.group-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

    .group-title i {
        color: #3498db;
    }

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

    .info-item:last-child {
        border-bottom: none;
    }

.item-label {
    font-weight: 600;
    color: #2c3e50;
    min-width: 150px;
    font-size: 0.95rem;
}

.item-value {
    flex: 1;
    text-align: right;
    color: #34495e;
    font-weight: 500;
    line-height: 1.5;
}

/* Special Features */
.special-features {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.features-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

    .features-title i {
        color: #f1c40f;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    transition: transform 0.3s ease;
}

    .feature-item:hover {
        transform: translateY(-3px);
    }

    .feature-item i {
        font-size: 1.2rem;
    }

.feature-red {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.feature-green {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.feature-blue {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.feature-orange {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.feature-pink {
    background: linear-gradient(135deg, #e84393, #fd79a8);
}

.feature-gold {
    background: linear-gradient(135deg, #f39c12, #d68910);
}

/* Contact Section */
.contact-section {
    padding: 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 10px;
    color: white;
}

.contact-info {
    text-align: center;
}

.contact-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-phone,
.contact-whatsapp,
.contact-email {
    font-size: 0.95rem;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

/* Comparison Section */
.comparison-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.comparison-title {
    text-align: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.comparison-table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

    .comparison-table th {
        background: linear-gradient(135deg, #2c3e50, #34495e);
        color: white;
        padding: 15px;
        text-align: center;
        font-weight: 600;
        font-size: 1rem;
    }

    .comparison-table td {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #e9ecef;
        color: #34495e;
        font-weight: 500;
    }

    .comparison-table tr:nth-child(even) {
        background: #f8f9fa;
    }

    .comparison-table tr:hover {
        background: #e9ecef;
    }

/* Responsive Design */
@media (max-width: 992px) {
    .full-title {
        font-size: 2.2rem;
    }

    .product-visual-area {
        padding: 20px;
    }

    .quick-tags {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }

    .full-image-container {
        padding: 5px;
    }
}

@media (max-width: 768px) {
    .onion-seeds-full {
        padding: 20px 15px;
    }

    .full-title {
        font-size: 1.8rem;
    }

    .details-header {
        flex-direction: column;
        gap: 20px;
    }

    .rating-badge {
        align-self: flex-start;
    }

    .full-info-section {
        grid-template-columns: 1fr;
    }

    .info-item {
        flex-direction: column;
        gap: 5px;
    }

    .item-label,
    .item-value {
        text-align: left;
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        flex-direction: column;
        align-items: center;
    }

    .comparison-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .full-title {
        font-size: 1.5rem;
    }

    .product-title-marathi {
        font-size: 1.8rem;
    }

    .product-details-area {
        padding: 20px;
    }

    .full-image-container {
        margin: 0 -15px;
        border-radius: 0;
    }

    .full-product-image {
        border-radius: 0;
    }
}
