.yoast-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin: 1rem 0;
}

/* Nagłówek - kolory linków */
.user-account,
.user-account:hover,
.cart-contents,
.cart-contents:hover,
.search-bar input,
.search-bar button,
.search-bar button:hover {
    color: #000 !important;
}

/* Naprawa wyszukiwarki w nagłówku */
.search-bar .search-form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    width: 100%;
    height: 100%;
}

.search-bar .search-input {
    display: none;
    background: transparent;
    border: none;
    padding: 0;
    color: #000;
}

.search-bar:hover .search-input {
    display: block;
    width: 200px;
    padding: 5px 10px;
    background: white;
    border: 1px solid #000;
}

.search-bar .search-submit {
    background: transparent;
    /* border: 1px solid #000; */
    padding: 0 5px 5px 5px;
    cursor: pointer;
    font-size: 16px;
    color: #000 !important;
}

.search-bar .search-submit:hover {
    opacity: 0.8;
}

/* Override domyślnych stylów search-bar */
.action-menu .search-bar,
.action-menu .open-icon-wrap {
    background: transparent !important;
    border: 1px solid #000;
    border-radius: 0;
}

#footer,
#footer a {
    font-size: 0.9rem;
    line-height: 1.5;
}

#footer .footer-menu .menu-list li {
    margin-bottom: 0.5rem;
}

/* ze starej strony */

footer .contact-info .icon:before {
    content: '';
    display: inline-block;
    margin-right: 20px;
    width: 20px;
    height: 20px;
    background-position: 50%;
    background-repeat: no-repeat;
    vertical-align: sub
}

footer .contact-info .icon.icon-phone:before {
    background-image: url(../images/icon-phone.png)
}

footer .contact-info .icon.icon-mail:before {
    background-image: url(../images/icon-mail.png)
}


/* ze starej strony */

/* ========================================
   ThreeSixty 360° Bike Rotation Styles
   ======================================== */

.threesixty {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.threesixty.bike {
    max-width: 100%;
    background: transparent;
}

.threesixty .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.threesixty .spinner span {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.threesixty .threesixty_images {
    list-style: none;
    margin: 0;
    padding: 0;
}

.threesixty .threesixty_images li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.threesixty .threesixty_images img {
    width: 100%;
    height: auto;
    display: block;
}

.threesixty .threesixty_images img.previous-image {
    visibility: hidden;
    opacity: 0;
}

.threesixty .threesixty_images img.current-image {
    visibility: visible;
    opacity: 1;
}

#billboard .banner-image .threesixty {
    width: 100%;
    height: auto;
    min-height: 350px;
}

@media (max-width: 768px) {
    #billboard .banner-image .threesixty {
        min-height: 280px;
    }
}

/* Banner CTA adjustments */
.banner-content .btn-wrap {
 margin-left: 1rem;
}
.banner-content .btn-wrap .btn {
    font-size: 1.25rem;
    color: var(--dark-red-color);
    border-color: var(--dark-red-color);
    background: transparent;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
} 

.banner-content .btn-wrap .btn.btn-outline-accent {
    color: var(--dark-red-color);
    border-color: var(--dark-red-color);
    background: transparent;
}

.banner-content .btn-wrap .btn.btn-accent-arrow {
    background: var(--dark-red-color);
    color: #fff;
    border-color: var(--dark-red-color);
}

.banner-content .btn-wrap .btn:hover {
    background: #fff;
    color: var(--dark-red-color);
    border-color: var(--dark-red-color);
}

/* Products button size */
.products-content .btn-wrap .btn-accent-arrow,
.products-content .btn-wrap .btn {
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Product title size */
.product-item .product-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 1rem;
}

/* Product Gallery Styles */
.product-images-wrapper {
    width: 100%;
}

.main-product-image {
    margin-bottom: 1.5rem;
}

.main-product-image .product-image-link {
    display: block;
    cursor: zoom-in;
    position: relative;
    overflow: hidden;

    background: var(--white-color);
    transition: border-color 0.3s ease;
}

.main-product-image .product-image-link:hover {
    border-color: var(--dark-red-color);
}

.main-product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.main-product-image .product-image-link:hover img {
    transform: scale(1.05);
}

.product-thumbnails {
    margin-top: 1rem;
}

.product-thumbnails .product-thumb-link {
    display: block;
    cursor: pointer;
    border: 1px solid var(--light-gray-color);
    background: var(--white-color);
    padding: 0.5rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.product-thumbnails .product-thumb-link:hover {
    border-color: var(--dark-red-color);
    transform: scale(1.05);
}

.product-thumbnails img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .banner-content .btn-wrap .btn {
        font-size: 1rem;
    }
    .products-content .btn-wrap .btn-accent-arrow,
    .products-content .btn-wrap .btn {
        font-size: 0.85rem;
    }
    .product-item .product-title {
        font-size: 0.95rem;
    }
    
    .product-thumbnails .product-thumb-link {
        padding: 0.25rem;
    }
}

.wp-block-woocommerce-accordion-item {
    margin-bottom: 1rem;
}

.wp-block-woocommerce-accordion-item .accordion-item__heading {
    border-bottom: 1px solid var(--light-gray-color);
}

.accordion-content__wrapper {
    padding: 3rem 1rem;
}

b, strong {
    font-weight: 600 !important;
}

.post-navigation {
    margin-top: 4rem;
    border-top: 1px solid var(--white-color);
    padding-top: 2rem;
}

.woocommerce-page div.product div.summary {
    width: 100%;
}

/* Product Short Description as H2 */
.woocommerce-product-details__short-description {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.woocommerce-product-details__short-description p {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

/* Product Attributes in Summary */
.product-attributes-summary {
    margin-top: 2rem;
    padding-top: 2rem;
    /* border-top: 1px solid var(--light-gray-color); */
}

.product-attributes-summary h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-attributes-summary .shop_attributes {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.product-attributes-summary .shop_attributes tr {
    border-bottom: 1px solid var(--light-gray-color);
}

.product-attributes-summary .shop_attributes tr:last-child {
    border-bottom: none;
}

.product-attributes-summary .shop_attributes th {
    text-align: left;
    padding: 0.75rem 1rem 0.75rem 0;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-text-color);
    width: 40%;
    vertical-align: top;
}

.product-attributes-summary .shop_attributes td {
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--body-text-color);
}

.wsal-navbar {
    display: none;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: var(--dark-red-color) !important;
    font-size: 3rem !important;
    font-weight: 700;
}

.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce #respond input#submit.alt {
    background-color: var(--dark-red-color) !important; 
}

.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce #respond input#submit.alt:hover {
    background-color: var(--white-color) !important; 
    color: var(--dark-red-color) !important
}

.woocommerce div.product form.cart .quantity .qty {
    width: 2.75rem !important;
    padding: 0.5rem !important;
border: 1px solid var(--dark-gray-color) !important;
    height: 2.75rem !important;
}

.woocommerce table.shop_attributes th {
    width: 20rem !important;
    font-weight: 400 !important;
}

.woocommerce table.shop_attributes td {
    font-weight: 600 !important;
    font-style: normal !important;

.woocommerce div.product form.cart .button {
    width: 80% !important;
}