/* Extracted from shop.php */

/* Tabs Styling */
    .product-tabs {
        margin-bottom: 40px;
    }

    .product-tabs .tab-btn {
        border: none;
        background: #f5f5f5;
        padding: 12px 30px;
        margin: 0 8px;
        cursor: pointer;
        font-weight: 600;
        font-size: 16px;
        border-radius: 4px;
        transition: all 0.3s ease;
        color: #333;
    }

    .product-tabs .tab-btn:hover {
        background: #e0e0e0;
    }

    .product-tabs .tab-btn.active {
        background: #1b3a77;
        color: #fff;
        box-shadow: 0 4px 8px rgba(44, 62, 80, 0.2);
    }

    /* Tab Content */
    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
    }

    /* Product Card Styling */
    .product-card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .product-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-card:hover .product-image img {
        transform: scale(1.05);
    }

    .product-title {
        padding: 20px 15px;
        text-align: center;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }

    .product-title h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: #333;
        line-height: 1.4;
        max-width: 100%;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .product-image {
            height: 220px;
        }
    }

    @media (max-width: 992px) {
        .product-tabs .tab-btn {
            padding: 10px 20px;
            margin: 5px;
            font-size: 15px;
        }

        .product-image {
            height: 200px;
        }

        .product-title h4 {
            font-size: 16px;
        }
    }

    @media (max-width: 768px) {
        .product-tabs .tab-btn {
            padding: 8px 15px;
            font-size: 14px;
            margin: 3px;
        }

        .product-image {
            height: auto;
            aspect-ratio: 4 / 5;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }

        .product-image img {
            height: 100%;
            width: 100%;
            object-fit: contain;
        }

        .product-title {
            padding: 15px 10px;
        }
    }

    @media (max-width: 576px) {
        .col-sm-6 {
            width: 50%;
        }

        .product-image {
            aspect-ratio: 3 / 4;
            padding: 8px;
        }

        .product-title h4 {
            font-size: 14px;
        }
    }

    @media (max-width: 400px) {
        .col-sm-6 {
            width: 100%;
        }

        .product-tabs .tab-btn {
            display: block;
            width: 90%;
            margin: 5px auto;
        }
    }
