/**
 * 2023-2025 MyModule
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 *
 * @author    Mike <mike@example.com>
 * @copyright 2023-2025 Mike's Company
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License (AFL 3.0)
 */

.custom-images-container {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.custom-images-title {
    margin-bottom: 15px;
    font-weight: 600;
}

.custom-images-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.custom-image-item {
    width: calc(70% - 10px);
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.custom-images-container{margin-bottom: 1px!important}


.custom-product-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.custom-image-item:hover .custom-product-image {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .custom-image-item {
        width: calc(70% - 7.5px);
    }
}

@media (max-width: 480px) {
    .custom-image-item {
        width: 100%;
    }
}


.pco-option-textbox .form-control{height: 44px!important}