/*
Theme Name: CatOutdoors Child
Theme URI: https://catoutdoors.com
Description: Child theme of Kadence for CatOutdoors
Author: CatOutdoors
Author URI: https://catoutdoors.com
Template: kadence
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: catoutdoors-child
*/

/* Custom styles will go here */



/* Filters */




/* Deals Grid */
.deal-content-section {
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    /* border-radius: 8px; */
    overflow: hidden;
    position: relative;
    
}

/* .deal-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.deal-content {
    padding: 20px;
}

.deal-title {
    margin: 0 0 10px;
    font-size: 18px;
}

.deal-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.current-price {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.compare-prices-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.deal-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
}

.deal-actions {
    display: flex;
    gap: 10px;
}

.deal-link {
    flex: 1;
    text-align: center;
    padding: 8px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.see-more-btn {
    padding: 8px 15px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
} */

.deal-card .deal-image {
    background-color: #ffffff; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.deal-card .deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the container */
}

/* Popups */
/* .price-comparison-popup,
.product-details-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.popup-content h4 {
    margin-top: 0;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.price-list {
    margin: 20px 0;
} */

/* Loading state */
/* .loading {
    opacity: 0.5;
    pointer-events: none;
} */

/* Responsive adjustments */
/* @media (max-width: 768px) {
    .filter-form {
        flex-direction: column;
    }

} */

/* Free Shipping Label */
/* .free-shipping-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 1;
}  */

/* Loader for infinite scroll */
#deals-loader .spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #007bff;
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

