/*
Theme Name: OceanWP - Bokserkoland
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme for Bokserkoland
Author: OceanWP / MatieuszPL
Author URI: https://github.com/matieuszpl
Template: oceanwp
Version: 1.1
*/

/* Parent stylesheet should be loaded from functions.php not using @import */
.woocommerce-Price-currencySymbol {
    text-transform: lowercase;
}

.custom-logo img {
    max-height: 40px;
}

/* Style dla przełącznika produktów */
.product-quick-switcher {
    margin: 15px 0 25px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.product-quick-switcher h4 {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-switcher-thumbnails {
    display: flex;
    gap: 12px;
    margin-bottom: 5px;
}

.product-thumb {
    width: 70px;
    height: 70px;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
}

.product-thumb.active {
    border: 2px solid #fe5000;
    box-shadow: 0 0 0 2px rgba(254, 80, 0, 0.3);
}

.product-thumb:hover {
    transform: translateY(-3px);
    border-color: #999;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dodaj oznaczenie "aktywny" */
.product-thumb.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #fe5000;
}

/* Responsywność */
@media (max-width: 768px) {
    .product-thumb {
        width: 60px;
        height: 60px;
    }
}