/**
Description: This Cascading Style Sheet is for Astraunic Pro plugin section which is enqueued via plugin setup file.
Version: 1.0.0
Text Domain: astraunic-pro
*/

/* Overview List */
    .overview-list {
        background: white;
        border: 1px solid #E5E7EB;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 40px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    .overview-item {
        display: grid;
        grid-template-columns: 80px 100px 1fr auto;
        gap: 20px;
        padding: 25px;
        border-bottom: 1px solid #F3F4F6;
        align-items: center;
        transition: all 0.3s ease;
    }
    .overview-item:last-child {
        border-bottom: none;
    }
    .overview-item:hover {
        background-color: #F8FAFC;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .overview-rank {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #219ebc, #4F46E5);
        color: white;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.2rem;
        box-shadow: 0 4px 12px rgba(33, 158, 188, 0.3);
    }
    .overview-image {
        width: 80px;
        height: 80px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        background: #F8FAFC;
        border: 2px solid #E5E7EB;
    }
    .overview-content h4 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 8px;
    }
    .overview-content h4 a {
        color: #1F2937;
        text-decoration: none;
    }
    .overview-content h4 a:hover {
        color: #219ebc;
    }
    .overview-meta {
        display: flex;
        gap: 15px;
        margin-bottom: 12px;
        flex-wrap: wrap;
        align-items: center;
    }
    .overview-price {
        font-weight: 700;
        color: #059669;
        font-size: 1.1rem;
        background: #ECFDF5;
        padding: 4px 12px;
        border-radius: 20px;
        border: 1px solid #D1FAE5;
    }
    .overview-category {
        background: linear-gradient(135deg, #219ebc, #4F46E5);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }
    .overview-summary {
        color: #4B5563;
        font-size: 0.95rem;
        line-height: 1.5;
        font-weight: 500;
    }
    .overview-cta {
        background: #023047;
        color: white;
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: background-color 0.3s ease;
        white-space: nowrap;
    }
    .overview-cta:hover {
        background: #034a66;
    }
    
    /* Product Reviews */
    .product-card {
        background: white;
        border: 1px solid #E5E7EB;
        border-radius: 12px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }
    .product-header {
        display: grid;
        grid-template-columns: 150px 1fr;
        gap: 25px;
        margin-bottom: 20px;
    }
    .product-image {
        width: 150px;
        height: 150px;
        background: #F3F4F6;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #9CA3AF;
        font-size: 0.875rem;
    }
    .product-info h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .product-info h3 a {
        color: #1F2937;
        text-decoration: none;
    }
    .product-info h3 a:hover {
        color: #219ebc;
    }
    .product-description {
        color: #6B7280;
        margin-bottom: 15px;
    }
    .product-details {
        background: #F8FAFC;
        border: 1px solid #E2E8F0;
        border-radius: 8px;
        padding: 20px;
        margin: 20px 0;
    }
    .product-details h4 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: #1F2937;
        margin-bottom: 12px;
    }
    .product-details p {
        color: #4B5563;
        line-height: 1.6;
        font-size: 0.95rem;
    }
    .price-cta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid #E5E7EB;
    }
    .price {
        font-size: 1.2rem;
        font-weight: 600;
        color: #1F2937;
    }
    .cta-button {
        background: #023047;
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.3s ease;
        cursor: pointer;
    }
    .cta-button:hover {
        background: #034a66;
    }
    /* Responsive Design */
    @media (max-width: 768px) {
        .product-header {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .product-image {
            margin: 0 auto;
        }
        .price-cta {
            flex-direction: column;
            gap: 15px;
        }
        .overview-item {
            grid-template-columns: 60px 70px 1fr;
            gap: 15px;
        }
        .overview-cta {
            grid-column: 1 / -1;
            justify-self: center;
            margin-top: 15px;
        }
        .overview-meta {
            gap: 10px;
        }
    }