/* Custom WooCommerce Product Grid & Slider Styles */

/* Base Grid Layout */
.custom-woo-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 3), 1fr);
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .custom-woo-grid {
        grid-template-columns: repeat(var(--tablet-columns, 2), 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .custom-woo-grid {
        grid-template-columns: repeat(var(--mobile-columns, 1), 1fr);
        gap: 10px;
    }
}

/* Product Item Styles */
.product-item {
    position: relative;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.epcg-all-content-wrap {
    padding: 16px;
}

/* Product Image */
.product-image {
    text-align: center;
    overflow: hidden;
    border-radius: 4px;
}

.product-image a {
    display: block;
    text-decoration: none;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

/* Product Content */
.product-content {
    text-align: left;
}

.product-title{
    margin: 0;   
}

.product-title a {
    text-decoration: none;
    color: #2d2b3a;
     font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #e5456d;
}
.star-rating {
    position: relative;
    display: inline-flex;
    font-size: 18px;
    line-height: 1;
}
.rating-count {
    font-size: 12px;
    color: #2d2b3a;
    white-space: nowrap;
}

/* Product Excerpt */
.product-excerpt {
    margin: 10px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.featured-badge {
    background: #27ae60;
}

.stock-badge {
    background: #95a5a6;
}

/* Product Actions */
.product-actions {
    margin-top: 15px;
}

.product-actions-row {
    margin-bottom: 10px;
}

.action-buttons-row {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.add_to_cart_button:active,
.single_add_to_cart_button:active {
    transform: translateY(0);
}

.wishlist-btn {
    background: #f0f0f0;
    border: none;
}

.wishlist-btn.added {
    background: #27ae60;
}

.compare-btn {
    background: #3498db;
}

.compare-btn:hover {
    background: #2980b9;
}

.compare-btn.added {
    background: #27ae60;
}

/* Slider Specific Styles */
.custom-woo-slider-wrapper {
    position: relative;
    margin: 20px 0;
}

.custom-woo-slider-wrapper .swiper {
    width: 100%;
    padding: 0;
}

.custom-woo-slider-wrapper .swiper-slide {
    height: auto;
    display: flex;
}

.custom-woo-slider-wrapper .swiper-slide .product-item {
    flex: 1;
    margin: 0;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #0073aa;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 57px;
    width: 48px;
    height: 48px;
    margin-top: -20px;
    transition: all 0.3s ease;
}
.swiper-button-next {
    background-color: #2d2b39!important;
}
.swiper-button-next svg{
    fill: #fff!important;
}
.swiper-button-prev:hover {
    background: #2d2b39!important;
}
.swiper-button-prev:hover svg{
    fill: #fff!important;
}


.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #ccc;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #0073aa;
    transform: scale(1.2);
}

/* Swiper Scrollbar */
.swiper-scrollbar {
    background: rgba(0,0,0,0.1);
    height: 4px;
    border-radius: 2px;
}

.swiper-scrollbar-drag {
    background: #0073aa;
    border-radius: 2px;
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 5px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Add to Cart Button States */
.add_to_cart_button.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.add_to_cart_button.added {
    background: #27ae60 !important;
    border-color: #27ae60 !important;
}

.add_to_cart_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Action Button Loading States */
.quick-view-btn.loading,
.wishlist-btn.loading,
.compare-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.quick-view-btn .loading-spinner,
.wishlist-btn .loading-spinner,
.compare-btn .loading-spinner {
    border-color: rgba(255,255,255,0.3);
    border-top-color: white;
}

/* Added States for Action Buttons */
.wishlist-btn.added {
    background: #27ae60 !important;
}

.compare-btn.added {
    background: #27ae60 !important;
}

/* Pagination Styles */
.custom-woo-pagination {
    margin: 30px 0;
    text-align: center;
}

.custom-woo-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.custom-woo-pagination .page-numbers:hover,
.custom-woo-pagination .page-numbers.current {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.load-more-btn {
    padding: 12px 24px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #005a87;
    transform: translateY(-1px);
}

.load-more-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.quick-view-container {
    position: relative;
    background: white;
    border-radius: 8px;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.quick-view-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.quick-view-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-close:hover {
    color: #333;
}

.quick-view-content {
    padding: 20px;
}

.quick-view-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .quick-view-product {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Enhanced Quick View Modal Styles */
.quick-view-product.enhanced-quick-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-view-product.enhanced-quick-view.active {
    opacity: 1;
}

.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.quick-view-container {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 900px;
    max-height: 90vh;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.quick-view-product.enhanced-quick-view.active .quick-view-container {
    transform: scale(1);
}

.quick-view-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.quick-view-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.quick-view-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.quick-view-close:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.05);
}

.close-icon {
    line-height: 1;
    font-weight: 300;
}

.quick-view-content {
    padding: 0;
    display: flex;
    flex-direction: row;
    max-height: calc(90vh - 70px);
    overflow: hidden;
}

.quick-view-images {
    flex: 1;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.quick-view-main-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quick-view-main-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
    overflow: hidden;
}

.quick-view-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.quick-view-thumbnails-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quick-view-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px;
    max-width: 80%;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.quick-view-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.quick-view-thumbnails::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.quick-view-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.thumbnail {
    flex: 0 0 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.thumbnail:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.thumbnail.active {
    border-color: #0073aa;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-nav {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
}

.thumbnail-nav:hover {
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.quick-view-summary {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
}
.product-price del {
    color: #2d2b3a;
    font-weight: 400;
    margin-right: 8px;
}

.product-price ins {
    text-decoration: none;
    color: #2d2b3a;
}

.product-description {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.read-more-link {
    display: inline-block;
    margin-top: 8px;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.read-more-link:hover {
    text-decoration: underline;
}

.product-meta {
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
}

.product-meta > div {
    margin-bottom: 8px;
}

.product-meta > div:last-child {
    margin-bottom: 0;
}

.product-meta strong {
    color: #333;
    font-weight: 600;
}

.stock-status {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.in-stock {
    color: #27ae60;
    font-weight: 500;
}

.out-of-stock {
    color: #e74c3c;
    font-weight: 500;
}

.stock-quantity {
    color: #666;
    font-weight: 400;
}

.variations-table {
    margin-bottom: 20px;
}

.variation-row {
    margin-bottom: 15px;
}

.variation-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.variation-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
}

.hidden-select {
    position: absolute;
    left: -9999px;
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
    transition: all 0.2s ease;
}

.swatch.selected {
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.variation-info {
    margin-bottom: 15px;
    padding: 10px;
    background: #f0f8ff;
    border-radius: 4px;
    font-size: 14px;
}

.variation-price {
    font-weight: 600;
    color: #0073aa;
}

.variation-availability {
    margin-top: 5px;
}

.quantity-wrapper {
    margin-bottom: 20px;
}

.quantity-wrapper label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.quantity-controls {
    display: flex;
    align-items: center;
    width: 120px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: #f8f9fa;
}

.qty {
    width: 48px;
    height: 36px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    font-size: 14px;
}

.cart-buttons {
    margin-bottom: 15px;
}

.quick-add-to-cart-button {
    width: 100%;
    padding: 12px 20px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quick-add-to-cart-button:hover {
    background: #005a87;
}

.quick-add-to-cart-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.add-to-cart-message {
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}

.add-to-cart-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.add-to-cart-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.out-of-stock-notice {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 20px;
}

.out-of-stock {
    margin-bottom: 15px;
    color: #e74c3c;
}

.notify-when-available {
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.notify-when-available:hover {
    background: #e9ecef;
}

.quick-view-extra-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.view-product-btn {
    padding: 10px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: all 0.2s ease;
}

.view-product-btn:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.wishlist-btn {
    color: #808080;
}
.wishlist-btn.added {
    background: #d4edda;
    color: #155724;
}

.compare-btn {
    background: #d1ecf1;
    color: #0c5460;
}

.compare-btn:hover {
    background: #bee5eb;
}

.compare-btn.added {
    background: #d4edda;
    color: #155724;
}
.wishlist-btn.top-right {
    position: absolute;
    top: 10px;
    right: 10px;
}
.wishlist-btn.top-left {
    position: absolute;
    top: 10px;
    left: 10px;
}
/* Responsive styles for quick view */
@media (max-width: 768px) {
    .quick-view-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .quick-view-content {
        flex-direction: column;
        max-height: calc(95vh - 70px);
    }
    
    .quick-view-images {
        height: 300px;
    }
    
    .quick-view-summary {
        padding: 20px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .quick-view-container {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    
    .quick-view-header {
        border-radius: 0;
    }
    
    .quick-view-content {
        max-height: calc(100vh - 60px);
    }
    
    .quick-view-images {
        height: 250px;
    }
    
    .quick-view-summary {
        padding: 15px;
    }
    
    .product-title {
        font-size: 18px;
    }
    
    .product-price {
        font-size: 18px;
    }
    
    .quick-view-thumbnails {
        max-width: 70%;
    }
    
    .thumbnail {
        flex: 0 0 50px;
        height: 50px;
    }
}


.action-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.action-text {
    white-space: nowrap;
}

/* Icon-only styles when text is hidden */
.action-buttons-row button:not(:has(.action-text)) {
    padding: 8px;
}
.wishlist-btn {
    background: #f1f1f1;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wishlist-btn svg {
    width: 16px;
    height: 16px;
    fill: #808080;
}

.compare-btn {
    background: #3498db;
}

.wishlist-btn:hover {
    background: #f1f1f1;
}
.custom-woo-list .epcg-image-wrap {
    width: 40%;
}
.custom-woo-list .epcg-all-content-wrap {
    width: 60%;
}
.compare-btn:hover {
    background: #2980b9;
}
.swiper-button-prev:after,
 .swiper-button-next:after {
    content: unset;
 }
/* Hide WooCommerce default "View cart" button that appears after AJAX add to cart */
.woocommerce-message,
.wc-forward,
.added_to_cart.wc-forward {
    font-size: 16px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    font-weight: 500;
    text-transform: capitalize;
    width: 100%;
    display: block;
    color: #000;
    font-weight: 500;
}

/* Custom Add to Cart Button States */
.custom-add-to-cart-btn.added-to-cart {
    background: #27ae60 !important;
    border-color: #27ae60 !important;
}

.custom-add-to-cart-btn.added-to-cart:hover {
    background: #229954 !important;
}

/* Notifications */
.woo-grid-notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.notification {
    background: white;
    border-left: 4px solid #0073aa;
    border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

.notification-success {
    border-left-color: #27ae60;
}

.notification-error {
    border-left-color: #e74c3c;
}

.notification-message {
    flex: 1;
    margin-right: 10px;
}

.notification-link {
    color: #0073aa !important;
    text-decoration: underline !important;
    font-weight: bold;
    margin-left: 10px;
}

.notification-link:hover {
    color: #005a87 !important;
}

.notification-close {
    cursor: pointer;
    font-size: 18px;
    color: #999;
    margin-left: 15px;
    font-weight: bold;
}

.notification-close:hover {
    color: #333;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Debug Styles */
.elementor-editor-active .custom-woo-grid {
    min-height: 200px;
}

.elementor-editor-active .product-item {
    min-height: 250px;
}

/* Responsive Improvements */
@media (max-width: 480px) {
    .product-item {
        padding: 10px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 16px;
    }
    
    .action-buttons-row {
        flex-direction: column;
    }
}

/* Modern Compare Page Design */
.modern-compare-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.compare-header {
    text-align: center;
    margin-bottom: 40px;
}

.compare-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.compare-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.compare-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.compare-product-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #f0f0f0;
}

.compare-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.remove-compare-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.remove-compare-btn:hover {
    background: #e74c3c;
    transform: scale(1.1);
}

.remove-compare-btn .remove-icon {
    line-height: 1;
}

.compare-product-image {
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.compare-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.compare-product-card:hover .compare-product-image img {
    transform: scale(1.05);
}

.no-image-placeholder {
    color: #999;
    font-size: 16px;
    text-align: center;
    padding: 20px;
}

.compare-product-details {
    padding: 25px;
}
.product-rating-section {
    margin-bottom: 20px;
}
.star-rating .stars-filled {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    color: #e5456d;
    white-space: nowrap;
}
.stars-empty {
    color: #e5456d;
}
.rating-text {
    font-size: 13px;
    color: #666;
    margin-left: 10px;
}

.product-price-section {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    border-radius: 12px;
    text-align: center;
}

.product-price-section .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
}

.product-price-section .price del {
    color: #999;
    font-size: 1.2rem;
    margin-right: 10px;
}

.product-price-section .price ins {
    text-decoration: none;
    color: #e74c3c;
}

.product-features {
    margin-bottom: 25px;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.feature-value {
    font-size: 14px;
    color: #333;
    text-align: right;
    max-width: 60%;
}

.feature-value.in-stock {
    color: #27ae60;
    font-weight: 600;
}

.feature-value.out-of-stock {
    color: #e74c3c;
    font-weight: 600;
}

.compare-actions {
    margin-top: 20px;
}

.add-to-cart-btn,
.view-product-btn {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.view-product-btn {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}

.view-product-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.compare-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
    border-top: 2px solid #f0f0f0;
    margin-top: 20px;
}

.clear-compare-btn,
.continue-shopping-btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-compare-btn {
    background: #e74c3c;
    color: white;
    border: none;
}

.clear-compare-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.continue-shopping-btn {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}

.continue-shopping-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

/* Empty State */
.compare-empty {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    margin: 40px auto;
    max-width: 600px;
}

.compare-empty h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.compare-empty p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.compare-empty .continue-shopping {
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.compare-empty .continue-shopping:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .compare-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .compare-header h2 {
        font-size: 2rem;
    }
    
    .compare-product-details {
        padding: 20px;
    }
    
    .compare-footer {
        flex-direction: column;
        align-items: center;
    }
    
    .clear-compare-btn,
    .continue-shopping-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .modern-compare-container {
        padding: 15px;
    }
    
    .compare-header h2 {
        font-size: 1.8rem;
    }
    
    .compare-product-image {
        height: 200px;
    }
    
    .product-price-section .price {
        font-size: 1.5rem;
    }
}

/* Animation for card entrance */
@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.compare-product-card {
    animation: cardSlideIn 0.6s ease forwards;
}

.compare-product-card:nth-child(2) {
    animation-delay: 0.1s;
}

.compare-product-card:nth-child(3) {
    animation-delay: 0.2s;
}

.compare-product-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Menu Wishlist Counter */
.menu-item-wishlist a {
    position: relative;
}

.menu-item-wishlist .wishlist-count {
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 11px;
    margin-left: 5px;
}

/* Button States for Wishlist/Compare Pages */
.add-to-cart:hover {
    background: #005a87 !important;
}

.wishlist-btn.added,
.compare-btn.added {
    background: #e74c3c !important;
}

.wishlist-btn.added:hover,
.compare-btn.added:hover {
    background: #c0392b !important;
}
/* Add this to your CSS file */

/* Navigation Position Styles */
.custom-woo-slider-wrapper {
    position: relative;
}

/* Update the CSS for navigation positions */
/* Navigation Position Styles */
.custom-woo-slider-wrapper {
    position: relative;
}

/* Default Inside Position */
.custom-woo-slider-wrapper.nav-position-inside .swiper-button-next,
.custom-woo-slider-wrapper.nav-position-inside .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
}

.custom-woo-slider-wrapper.nav-position-inside .swiper-button-next {
    right: 10px;
}

.custom-woo-slider-wrapper.nav-position-inside .swiper-button-prev {
    left: 10px;
}

/* Outside Position */
.custom-woo-slider-wrapper.nav-position-outside {
    position: relative;
    padding: 0 50px; /* Add padding for the arrows */
}

.custom-woo-slider-wrapper.nav-position-outside .swiper-button-next,
.custom-woo-slider-wrapper.nav-position-outside .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
}

.custom-woo-slider-wrapper.nav-position-outside .swiper-button-next {
    right: 0;
}

.custom-woo-slider-wrapper.nav-position-outside .swiper-button-prev {
    left: 0;
}

.custom-woo-slider-wrapper.nav-position-outside .swiper-outside-container {
    overflow: hidden;
}

/* Top Left Position */
.custom-woo-slider-wrapper.nav-position-top-left {
    padding-top: 50px;
}

.custom-woo-slider-wrapper.nav-position-top-left .swiper-button-next,
.custom-woo-slider-wrapper.nav-position-top-left .swiper-button-prev {
    top: 0;
    transform: translateY(-50px);
}

.custom-woo-slider-wrapper.nav-position-top-left .swiper-button-next {
    right: auto;
    left: 60px;
}

.custom-woo-slider-wrapper.nav-position-top-left .swiper-button-prev {
    left: 0;
}

/* Top Center Position */
.custom-woo-slider-wrapper.nav-position-top-center {
    padding-top: 50px;
}

.custom-woo-slider-wrapper.nav-position-top-center .swiper-button-next,
.custom-woo-slider-wrapper.nav-position-top-center .swiper-button-prev {
    top: 0;
    transform: translateY(-50px);
    left: 50%;
    margin-left: -35px;
}

.custom-woo-slider-wrapper.nav-position-top-center .swiper-button-next {
    left: calc(50% + 5px);
    margin-left: 0;
}

.custom-woo-slider-wrapper.nav-position-top-center .swiper-button-prev {
    left: calc(50% - 45px);
}
.cart-button-text {
    position: relative;
}
.add_to_cart_button:hover .cart-button-text::after,
.out-of-stock-button:hover::after {
    left: 142%;
    transition: all 1s cubic-bezier(.19,1,.22,1);
}
.cart-button-text::after,
.out-of-stock-button::after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .2;
    top: -50px;
    transform: rotate(35deg);
    transition: all 1s cubic-bezier(.19,1,.22,1);
    width: 50px;
    z-index: -10;
    position: absolute;
}
/* Top Right Position */
.custom-woo-slider-wrapper.nav-position-top-right {
    padding: 0px 8px;
}

.custom-woo-slider-wrapper.nav-position-top-right .swiper-button-next,
.custom-woo-slider-wrapper.nav-position-top-right .swiper-button-prev {
    top: 0;
    transform: translateY(-80px);
}

.custom-woo-slider-wrapper.nav-position-top-right .swiper-button-next {
    right: 0;
}

.custom-woo-slider-wrapper.nav-position-top-right .swiper-button-prev {
    right: 60px;
    left: auto;
}
.custom-woo-slider-wrapper .wcpg-section-title {
    margin-bottom: 50px;
}
/* Bottom Left Position */
.custom-woo-slider-wrapper.nav-position-bottom-left {
    padding-bottom: 50px;
}

.custom-woo-slider-wrapper.nav-position-bottom-left .swiper-button-next,
.custom-woo-slider-wrapper.nav-position-bottom-left .swiper-button-prev {
    bottom: 0;
    top: auto;  
    transform: translateY(50px);
}

.custom-woo-slider-wrapper.nav-position-bottom-left .swiper-button-next {
    right: auto;
    left: 60px;
}

.custom-woo-slider-wrapper.nav-position-bottom-left .swiper-button-prev {
    left: 0;
}

/* Bottom Center Position */
.custom-woo-slider-wrapper.nav-position-bottom-center {
    padding-bottom: 50px;
}

.custom-woo-slider-wrapper.nav-position-bottom-center .swiper-button-next,
.custom-woo-slider-wrapper.nav-position-bottom-center .swiper-button-prev {
    bottom: 0;
    top: auto;
    transform: translateY(50px);
    left: 50%;
    margin-left: -35px;
}

.custom-woo-slider-wrapper.nav-position-bottom-center .swiper-button-next {
    left: calc(50% + 5px);
    margin-left: 0;
}

.custom-woo-slider-wrapper.nav-position-bottom-center .swiper-button-prev {
    left: calc(50% - 45px);
}

/* Bottom Right Position */
.custom-woo-slider-wrapper.nav-position-bottom-right {
    padding-bottom: 50px;
}

.custom-woo-slider-wrapper.nav-position-bottom-right .swiper-button-next,
.custom-woo-slider-wrapper.nav-position-bottom-right .swiper-button-prev {
    bottom: 0;
    top: auto;
    transform: translateY(50px);
}

.custom-woo-slider-wrapper.nav-position-bottom-right .swiper-button-next {
    right: 0;
}

.custom-woo-slider-wrapper.nav-position-bottom-right .swiper-button-prev {
    right: 60px;
    left: auto;
}

/* Adjust arrow styles for better visibility */
.custom-woo-slider-wrapper .swiper-button-next,
.custom-woo-slider-wrapper .swiper-button-prev {
    color: #0073aa;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 7px;
    width: 48px;
    height: 48px;
    margin-top: 0;
    transition: all 0.3s ease;
    border: 1px solid #2d2b3a;
    z-index: 10; /* Ensure arrows are above other elements */
}

.custom-woo-slider-wrapper .swiper-button-next::after,
.custom-woo-slider-wrapper .swiper-button-prev::after {
    font-size: 16px;
}

/* Fix for overflow hidden issue */
.custom-woo-slider-wrapper {
    overflow: hidden; /* Change from hidden to visible */
}

.custom-woo-slider-wrapper .swiper {
    overflow: visible; /* Keep overflow hidden on the swiper itself */
}

/* Ensure navigation arrows are visible for all positions */
.custom-woo-slider-wrapper.nav-position-top-left .swiper-button-next,
.custom-woo-slider-wrapper.nav-position-top-left .swiper-button-prev,
.custom-woo-slider-wrapper.nav-position-top-center .swiper-button-next,
.custom-woo-slider-wrapper.nav-position-top-center .swiper-button-prev,
.custom-woo-slider-wrapper.nav-position-top-right .swiper-button-next,
.custom-woo-slider-wrapper.nav-position-top-right .swiper-button-prev,
.custom-woo-slider-wrapper.nav-position-bottom-left .swiper-button-next,
.custom-woo-slider-wrapper.nav-position-bottom-left .swiper-button-prev,
.custom-woo-slider-wrapper.nav-position-bottom-center .swiper-button-next,
.custom-woo-slider-wrapper.nav-position-bottom-center .swiper-button-prev,
.custom-woo-slider-wrapper.nav-position-bottom-right .swiper-button-next,
.custom-woo-slider-wrapper.nav-position-bottom-right .swiper-button-prev,
.custom-woo-slider-wrapper.nav-position-outside .swiper-button-next,
.custom-woo-slider-wrapper.nav-position-outside .swiper-button-prev {
    position: absolute;
    z-index: 100; /* Higher z-index to ensure visibility */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    /* Make navigation arrows smaller on mobile */
    .custom-woo-slider-wrapper .swiper-button-next,
    .custom-woo-slider-wrapper .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
    
    .custom-woo-slider-wrapper .swiper-button-next::after,
    .custom-woo-slider-wrapper .swiper-button-prev::after {
        font-size: 12px;
    }
    
    /* Adjust padding for outside position on mobile */
    .custom-woo-slider-wrapper.nav-position-outside {
        padding: 0 35px;
    }
    
    /* Adjust positions for mobile */
    .custom-woo-slider-wrapper.nav-position-top-left,
    .custom-woo-slider-wrapper.nav-position-top-center,
    .custom-woo-slider-wrapper.nav-position-top-right {
        padding-top: 40px;
    }
    
    .custom-woo-slider-wrapper.nav-position-bottom-left,
    .custom-woo-slider-wrapper.nav-position-bottom-center,
    .custom-woo-slider-wrapper.nav-position-bottom-right {
        padding-bottom: 40px;
    }
    
    .custom-woo-slider-wrapper.nav-position-top-left .swiper-button-next,
    .custom-woo-slider-wrapper.nav-position-bottom-left .swiper-button-next {
        left: 45px;
    }
    
    .custom-woo-slider-wrapper.nav-position-top-right .swiper-button-prev,
    .custom-woo-slider-wrapper.nav-position-bottom-right .swiper-button-prev {
        right: 45px;
    }
    
    .custom-woo-slider-wrapper.nav-position-top-center .swiper-button-next,
    .custom-woo-slider-wrapper.nav-position-bottom-center .swiper-button-next {
        left: calc(50% + 2px);
    }
    
    .custom-woo-slider-wrapper.nav-position-top-center .swiper-button-prev,
    .custom-woo-slider-wrapper.nav-position-bottom-center .swiper-button-prev {
        left: calc(50% - 32px);
    }
}
/* Product Rating Styles */
.product-rating {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
/* Additional styles for list layout if needed */
.product-list-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-list-rating .star-rating {
    position: relative;
    display: inline-flex;
    color: #ddd;
    font-size: 14px;
}

.product-list-rating .stars-bg {
    color: #ddd;
}

.product-list-rating .stars-filled {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    overflow: hidden;
    color: #ffc107;
}

.product-list-rating .rating-count {
    font-size: 12px;
    color: #666;
}

/* Additional styles for list layout if needed */
.product-list-title {
    margin: 10px 0;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
}

.product-list-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.product-list-title a:hover {
    color: #0073aa;
}
/* Product Image Styles */
.product-image {
    text-align: center;
    overflow: hidden;
    border-radius: 4px;
}

.product-image a {
    display: block;
    text-decoration: none;
}

.product-image-img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.product-image:hover .product-image-img {
    transform: scale(1.05);
}

.no-image-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border-radius: 4px;
}

/* Additional styles for list layout if needed */
.product-list-image {
    flex: 0 0 200px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.product-list-image a {
    display: block;
    height: 100%;
}

.product-list-image .product-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-list-image:hover .product-image-img {
    transform: scale(1.05);
}

.product-list-image .no-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border-radius: 4px;
}
.featured-badge {
    background: #27ae60;
}
/* Hover effects for badges */
.product-badge:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* Badge styles for list layout if needed */
.product-list-item .product-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-list-item .product-badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 5px;
}
.product-excerpt {
    margin: 10px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}
.product-view-btn {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

/* Optional hover effect */
.product-view-btn:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}
.out-of-stock-button {
    background: #e5456d;
    border: none!important;
    color: #fff!important;
}
.out-of-stock-button:hover {
    background: #2d2b3a!important;
    transform: translateY(-3px);
}
.read-more-button {
    width: 100%;
    padding: 10px;
    background: #ccc;
    color: #666;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

/* Optional hover effect */
.read-more-button:hover {
    background: #b8b8b8;
    color: #555;
    text-decoration: none;
}
 .custom-woo-grid {
    display: grid;
    gap: 20px;
    width: 100%;
}

.product-image {
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.product-price {
    font-size: clamp(.875rem,.3vw + .8rem,1rem);
    font-weight: 500;
    color: #2d2b3a;
}
.product-badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    color: white;
    margin-left: 5px;
}

.sale-badge, .sale-percentage {
    background: #e5456d;
}

.featured-badge {
    background: #00aa44;
}

.stock-badge {
    background: #999;
}

.product-actions {
    margin-top: auto;
}
.quick-view-btn {
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.quick-view-btn svg {
    width: 20px;
    height: 20px;
    fill: #808080;
}
.add_to_cart_button,
.out-of-stock-button {
    width: max-content;
    padding: 7px 16px;    
    color: #2d2b3a;
    border: 1px solid #2d2b3a;
    border-radius: 7px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    position: relative;
    transition: all .3s ease-out;
}
.add_to_cart_button {
    background: #0000;
}

.add_to_cart_button:hover {
    background: #2d2b3a;
    color: #fff;
    transform: translateY(-3px);
}
.custom-woo-list .product-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}
.custom-woo-list .product-image {
    flex-basis: 50%;
}
.custom-woo-list .product-content {
    flex-basis: 50%;
}

/* Responsive Column */
.bwcpg-1 .custom-woo-grid {
  grid-template-columns: repeat(1 , 1fr)!important;
}
.bwcpg-2 .custom-woo-grid {
  grid-template-columns: repeat(2 , 1fr)!important;
}
.bwcpg-3 .custom-woo-grid {
  grid-template-columns: repeat(3 , 1fr)!important;
}
.bwcpg-4 .custom-woo-grid {
  grid-template-columns: repeat(4 , 1fr)!important;
}
.bwcpg-5 .custom-woo-grid {
  grid-template-columns: repeat(5 , 1fr)!important;
}
.bwcpg-6 .custom-woo-grid {
  grid-template-columns: repeat(6 , 1fr)!important;
}
@media (min-width: 2400px) {
  .prodgrfoel-grid-widescreen-column1 .column_number {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .prodgrfoel-grid-widescreen-column2 .column_number {
    flex: 0 0 auto;
    width: 50%;
    max-width: 50%;
  }
  .prodgrfoel-grid-widescreen-column3 .column_number {
    flex: 0 0 auto;
    width: 33.33%;
    max-width: 33.33%;
  }
  .prodgrfoel-grid-widescreen-column4 .column_number {
    flex: 0 0 auto;
    width: 25%;
    max-width: 25%;
  }
  .prodgrfoel-grid-widescreen-column5 .column_number {
    flex: 0 0 auto;
    width: 20%;
    max-width: 20%;
  }
  .prodgrfoel-grid-widescreen-column6 .column_number {
    flex: 0 0 auto;
    width: 16.66%;
    max-width: 16.66%;
  }
}
@media (max-width: 1366px) {
  .bwcpg--laptop1 .custom-woo-grid {
    grid-template-columns: repeat(1 , 1fr)!important;
  }
  .bwcpg--laptop2 .custom-woo-grid {
    grid-template-columns: repeat(2 , 1fr)!important;
  }
  .bwcpg--laptop3 .custom-woo-grid {
    grid-template-columns: repeat(3 , 1fr)!important;
  }
  .bwcpg--laptop4 .custom-woo-grid {
    grid-template-columns: repeat(4 , 1fr)!important;
  }
  .bwcpg--laptop5 .custom-woo-grid {
    grid-template-columns: repeat(5 , 1fr)!important;
  }
  .bwcpg--laptop6 .custom-woo-grid {
    grid-template-columns: repeat(6 , 1fr)!important;
  }
}
@media (max-width: 1200px) {
  .bwcpg--tablet_extra1 .custom-woo-grid {
    grid-template-columns: repeat(1 , 1fr)!important;
  }
  .bwcpg--tablet_extra2 .custom-woo-grid {
    grid-template-columns: repeat(2 , 1fr)!important;
  }
  .bwcpg--tablet_extra3 .custom-woo-grid {
    grid-template-columns: repeat(3 , 1fr)!important;
  }
  .bwcpg--tablet_extra4 .custom-woo-grid {
    grid-template-columns: repeat(4 , 1fr)!important;
  }
  .bwcpg--tablet_extra5 .custom-woo-grid {
    grid-template-columns: repeat(5 , 1fr)!important;
  }
  .bwcpg--tablet_extra6 .custom-woo-grid {
    grid-template-columns: repeat(6 , 1fr)!important;
  }
}
@media (max-width: 1024px) {
  .bwcpg--tablet1 .custom-woo-grid {
    grid-template-columns: repeat(1 , 1fr)!important;
  }
  .bwcpg--tablet2 .custom-woo-grid {
    grid-template-columns: repeat(2 , 1fr)!important;
  }
  .bwcpg--tablet3 .custom-woo-grid {
    grid-template-columns: repeat(3 , 1fr)!important;
  }
  .bwcpg--tablet4 .custom-woo-grid {
    grid-template-columns: repeat(4 , 1fr)!important;
  }
  .bwcpg--tablet5 .custom-woo-grid {
    grid-template-columns: repeat(5 , 1fr)!important;
  }
  .bwcpg--tablet6 .custom-woo-grid {
    grid-template-columns: repeat(6 , 1fr)!important;
  }
}
@media (max-width: 880px) {
  .bwcpg--mobile_extra1 .custom-woo-grid {
    grid-template-columns: repeat(1 , 1fr)!important;
  }
  .bwcpg--mobile_extra2 .custom-woo-grid {
    grid-template-columns: repeat(2 , 1fr)!important;
  }
  .bwcpg--mobile_extra3 .custom-woo-grid {
    grid-template-columns: repeat(3 , 1fr)!important;
  }
  .bwcpg--mobile_extra4 .custom-woo-grid {
    grid-template-columns: repeat(4 , 1fr)!important;
  }
  .bwcpg--mobile_extra5 .custom-woo-grid {
    grid-template-columns: repeat(5 , 1fr)!important;
  }
  .bwcpg--mobile_extra6 .custom-woo-grid {
    grid-template-columns: repeat(6 , 1fr)!important;
  }
}
@media (max-width: 767px) {
  .bwcpg--mobile1 .custom-woo-grid {
    grid-template-columns: repeat(1 , 1fr)!important;
  }
  .bwcpg--mobile2 .custom-woo-grid {
    grid-template-columns: repeat(2 , 1fr)!important;
  }
  .bwcpg--mobile3 .custom-woo-grid {
    grid-template-columns: repeat(3 , 1fr)!important;
  }
  .bwcpg--mobile4 .custom-woo-grid {
    grid-template-columns: repeat(4 , 1fr)!important;
  }
  .bwcpg--mobile5 .custom-woo-grid {
    grid-template-columns: repeat(5 , 1fr)!important;
  }
  .bwcpg--mobile6 .custom-woo-grid {
    grid-template-columns: repeat(6 , 1fr)!important;
  }
}
