body {
    font-family: "Inter", sans-serif;
    background: #f5f5f5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Archivo", sans-serif;
    text-transform: uppercase;
}

img {
    width: 100%;
    height: 100%;
}

/*** HEADER - HOME ***/
.woocommerce-breadcrumb {
    font-size: 12px;
}

.woocommerce-breadcrumb a {
    color: #fe6601;
}

.free-delivery {
    background: #fe6601;
    padding: 3px;
    text-align: center;
    color: #1a1a1a;
    font-size: 12px;
    letter-spacing: 1px;
}

header {
    background: #ebebeb;
    padding-bottom: 10px;
}

.header-desktop-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    position: relative;
    padding-top: 10px;
}

.main-logo {
    max-width: 120px;
}

.menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.menu-header {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-header ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.menu-header>ul>li {
    position: relative;
}

.menu-header>ul>li>a {
    color: #fff;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    font-family: "Archivo", sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: block;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.menu-header>ul>li>a:hover {
    color: #fe6601;
}

.menu-header .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.menu-header .sub-menu li {
    margin-bottom: 12px;
}

.menu-header .sub-menu a {
    color: #999;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-header .sub-menu a:hover {
    color: #fe6601;
    padding-left: 5px;
}

.menu-close {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10000;
}

.menu-close:before,
.menu-close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.menu-close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-close:hover:before,
.menu-close:hover:after {
    background: #fe6601;
}

.right-menu-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.category-menu {
    text-transform: uppercase;
    color: #1A1A1A;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
}

.category-menu:hover {
    color: #fe6601;
    text-decoration: none;
    transition: all 0.3s;
}

.dgwt-wcas-search-icon svg path {
    transition: all 0.3s;
}

.dgwt-wcas-search-icon:hover svg path {
    fill: #fe6601;
    transition: all 0.3s;
}

.minicart-widget.widget_block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wc-block-mini-cart__button {
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
}

.wc-block-mini-cart {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wc-block-mini-cart__button:focus,
.wc-block-mini-cart__button:active,
.wc-block-mini-cart__button:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.wc-block-mini-cart__quantity-badge:focus,
.wc-block-mini-cart__quantity-badge:active {
    outline: none !important;
    border: none !important;
}

.owl-carousel {
    display: block;
}

.main-home-banner-wrapper {
    position: relative;
}

.main-home-banner-wrapper .mobile-image {
    display: none;
}

.owl-dot:hover,
.owl-dot:active,
.owl-dot:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* scroll indicator banner  */
.scroll-indicator {
    text-align: center;
    color: #fff;
    position: absolute;
    bottom: 40px;
    z-index: 999;
    left: 50%;
    transform: translate(-50%, -50%);
}

.scroll-indicator span {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    opacity: 0.8;
}

.mouse {
    width: 20px;
    height: 35px;
    border: 1px solid #999;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    animation: mouseMove 2s ease-in-out infinite;
}

.mouse .wheel {
    width: 4px;
    height: 8px;
    background: #fe6601;
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes mouseMove {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }

    100% {
        transform: translateY(0);
    }
}

.banner-links .banner-first {
    color: #FFF;
    background: #fe6601;
    text-transform: uppercase;
    font-size: 20px;
    transition: all 0.3s;
    padding: 10px;
}

.banner-links .banner-first:hover {
    background: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s;
}

.banner-slider-wrapper.owl-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.banner-slider-wrapper.owl-carousel .owl-dot {
    position: relative;
}

.banner-slider-wrapper.owl-carousel .owl-dot span {
    background: #999 !important;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: width 0.3s ease;
}

.banner-slider-wrapper.owl-carousel .owl-dot.active span {
    width: 50px;
    border-radius: 10px;
    background: #fe6601 !important;
    position: relative;
    overflow: hidden;
}

.banner-slider-wrapper.owl-carousel .owl-dot.active span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #1A1A1A;
    animation: progress 8s linear forwards;
}

@keyframes progress {
    to {
        width: 100%;
    }
}

span:where(.wc-block-mini-cart__badge) {
    background-color: #fe6601 !important;
    border-radius: 0 !important;
    font-weight: 500 !important;
    font-size: 12px !important;
}

.wc-block-mini-cart__quantity-badge {
    color: #000;
    transition: color 0.3s ease;
    font-size: 18px;
}

.wc-block-mini-cart__quantity-badge:hover {
    color: #fe6601;
}

.content-left {
    width: 90%;
    margin: 0 auto;
    left: 5%;
    bottom: 10%;
    transform: translate(0%, -50%);
    position: absolute;
}

.content-left h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 900;
}

.content-left h2 span {
    color: transparent;
    -webkit-text-stroke: 3px #fe6601;
}

.delivery-home-wrapper {
    width: 90%;
    margin: 0 auto;
}

/*** CATEGORY HOME CARDS ***/
.category-home-wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 50px 0 100px 0;
}

.category-home-wrapper h2 {
    font-size: 30px;
    font-weight: 900;
    padding-bottom: 50px;
}

.category-home-wrapper h2 p {
    margin: 0;
}

.category-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    min-height: 500px;
    transition: all 0.4s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.category-link span {
    position: relative;
    z-index: 10;
}

.category-link:hover {
    text-decoration: none;
    color: #fff;
}

.category-image-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.category-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-link:hover .category-image-holder img {
    transform: scale(1.05);
}

.category-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: background 0.4s ease;
}

.category-link:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

/*** PRODUCT HOME - IZDVAJAMO ***/
.product-home-text-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
}

.see-all-home {
    color: #fe6601;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.see-all-home::after {
    content: "\f061";
    font-family: "Font Awesome 5 Pro";
    font-weight: 500;
    font-size: 12px;
    color: #fe6601;
    margin-left: 5px;
}

.see-all-home:hover {
    color: #fe6601;
    text-decoration: none !important;
}

.product-home-wrapper {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 70px;
}

.product-home-wrapper h2 {
    font-size: 30px;
    font-weight: 900;
}

.product-home-wrapper .shop-products {
    padding: 0;
    background: none;
    border: none;
}

.product-home-wrapper .shop-products ul.products {
    margin-top: 0;
}

/*** FAQ ***/
.faq-wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 50px 0 100px;
}

.faq-wrapper h2 {
    font-size: 30px;
    font-weight: 900;
    padding-bottom: 30px;
}

.faq-wrapper h2 p {
    margin: 0;
}

.faq-item {
    border-top: 1px solid #d1d1d1;
}

.faq-holder .faq-item:last-child {
    border-bottom: 1px solid #d1d1d1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    user-select: none;
    padding: 10px 0;
}

.faq-question p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.3px;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 14px;
    color: #1a1a1a;
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    min-height: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.6;
    padding-bottom: 10px;
    opacity: 0;
    transition: opacity 0.2s ease;
    background: #fff;
    padding: 10px;
}

.faq-item.is-open .faq-answer-inner {
    opacity: 1;
    transition: opacity 0.3s ease 0.1s;
}

.faq-answer-inner p {
    margin: 0;
}

/*** FOOTER ***/
/* Back to Top */
.back-to-top {
    position: fixed;
    width: 25px;
    height: 25px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 0;
}

.back-to-top i {
    font-weight: 700;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #fe6601;
    text-decoration: none !important;
    color: #fff;
}

.footer-copy {
    width: 90%;
    margin: 0 auto;
    border-top: 1px solid #b2b2b2;
}

.footer-copy p {
    padding: 20px 0;
    color: #b2b2b2;
    font-size: 12px;
}

.footer-links {
    padding: 50px 0 40px 0;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
    border-top: 1px solid #b2b2b2;
}

.footer-links div {
    width: 33%;
}

.footer-links h3 {
    text-transform: uppercase;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 18px;
    padding-bottom: 10px;
}

.developedby {
    transition: all 0.3s;
    font-size: 12px !important;
    color: #b2b2b2;
}

.developedby:hover {
    transition: all 0.3s;
    color: #fe6601;
}

.footer-links ul {
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    list-style-type: none;
    color: #b2b2b2;
    font-size: 14px;
    padding-bottom: 10px;
}

.footer-mail-link li,
.footer-call-link li {
    color: #1a1a1a !important;
}

.footer-mail-link:hover li,
.footer-call-link:hover li {
    transition: all 0.3s;
    color: #fe6601 !important;
    text-decoration: none;
}

.footer-links ul a:hover {
    text-decoration: none !important;
    transition: all 0.3s;
}

.footer-links ul a:hover li {
    text-decoration: none !important;
    color: #1a1a1a;
    transition: all 0.3s;
}

/*** O NAMA ***/
.page-o-nama h1 {
    font-size: 60px;
    font-weight: 900;
    padding: 50px 0;
}

.page-o-nama .container {
    max-width: 90%;
    padding: 0;
    padding-bottom: 100px;
}

.o-nama-wrapper {
    max-width: 60%;
}

/*** POLITIKA ***/
.page-politika-privatnosti .container {
    max-width: 90%;
    padding: 0;
    padding-bottom: 100px;
}

.page-politika-privatnosti h1 {
    font-size: 60px;
    font-weight: 900;
    padding: 50px 0;
}

.politika-privatnosti h3 {
    padding: 20px 0;
    font-size: 20px;
    font-weight: 700;
}

/*** USLOVI ***/
.page-uslovi-kupovine .container {
    max-width: 90%;
    padding: 0;
    padding-bottom: 100px;
}

.page-uslovi-kupovine h1 {
    font-size: 60px;
    font-weight: 900;
    padding: 50px 0;
}

.opsti-uslovi-kupovine h3 {
    padding: 20px 0;
    font-size: 20px;
    font-weight: 700;
}

/*** KONTAKT ***/

.iframe-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.iframe-wrapper div {
    width: 100%;
}

.footer-section-social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-map {
    margin: 0 auto;
    width: 90%;
    padding-bottom: 50px;
}

#gform_fields_2 {
    gap: 20px !important;
}

.gform-theme--foundation .gfield textarea.large {
    min-block-size: unset !important;
}

#gform_wrapper_2 textarea {
    max-height: 120px;
}


.iframe-wrapper h4 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 0;
    color: #1a1a1a;
}

.footer-info h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 0;
    color: #1a1a1a;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
    color: #b2b2b2;
    font-size: 14px;
}

.footer-item i {
    width: 18px;
    text-align: center;
    color: #1a1a1a;
}

.footer-item span {
    font-size: 14px;
    color: #b2b2b2;
}

.footer-item a:hover {
    color: #fe6601;
}

.footer-item a:hover span {
    color: #fe6601;
}

.footer-section p {
    margin: 6px 0;
    font-size: 14px;
    color: #b2b2b2;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    font-size: 30px;
    color: #1a1a1a;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #fe6601;
}

.contact-wrapper {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 50px;
    padding-bottom: 30px;
}

.gform_title,
.gform_required_legend {
    display: none;
}

.page-kontakt h1 {
    font-size: 60px;
    font-weight: 900;
    padding: 50px 0;
    width: 90%;
    margin: 0 auto;
}

.contact-form-wrapper {
    width: 50%;
}

#gform_wrapper_2 .gfield_label {
    color: #1a1a1a;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

#gform_wrapper_2 input,
#gform_wrapper_2 textarea {
    border: 1px solid #b2b2b2;
    box-shadow: none;
    border-radius: 0;
    background: #f5f5f5;
}

#gform_wrapper_2 input::placeholder,
#gform_wrapper_2 textarea {
    font-size: 12px;
    color: #b2b2b2;
}

#gform_submit_button_2 {
    color: #fff;
    background: #fe6601 !important;
    border: none !important;
    border-radius: 0;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*** THANK YOU PAGE ***/
.thank-you-wrapper {
    width: 80%;
    height: 80vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    /*background-color: #1a1a1a;*/
}

.thank-you-wrapper .fashion-logo {
    max-width: 350px;
    object-fit: contain;
    padding-bottom: 50px;
}

.thank-you-wrapper h3 {
    font-size: 30px;
    color: #0B1018;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.thank-you-wrapper p {
    font-size: 22px;
    color: #0B1018;
    letter-spacing: 1px;
}

/*** MINICART ***/
.wc-block-mini-cart__shopping-button .wc-block-components-button__text {
    color: #fe6601 !important;
}

.wp-block-woocommerce-mini-cart-shopping-button-block:hover {
    text-decoration: none !important;
}

.wc-block-components-button.wp-element-button.wc-block-components-drawer__close.contained,
.wc-block-components-button.wp-element-button.wc-block-components-drawer__close.contained:hover,
.wc-block-components-button.wp-element-button.wc-block-components-drawer__close.contained:active,
.wc-block-components-button.wp-element-button.wc-block-components-drawer__close.contained:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.wc-block-components-button:hover,
.wc-block-components-button:active,
.wc-block-components-button:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/*** KATEGORIJE LISTANJE ***/
.fs-product .onsale,
.fs-single .onsale {
    background-color: #fe6601;
    color: #fff;
    font-weight: 700;
    padding: 3px;
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 12px;
    z-index: 999;
}

.fs-mobile-filters-toggle,
.fs-mobile-filters-close {
    display: none;
}

.content-area {
    width: 90%;
    margin: 0 auto;
}

.woocommerce-breadcrumb {
    padding: 20px 0;
}

.product-subcategories-wrapper {
    padding-bottom: 20px;
}

.woocommerce-products-header {
    background: none;
}

.term-description p {
    color: #b2b2b2;
}

.woocommerce-products-header__title {
    font-size: 60px;
    font-weight: 900;
    padding: 10px 0;
    margin: 0;
}

.product-subcategories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.subcategory-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.subcategory-link {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e6e6e6;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.subcategory-link:hover {
    text-decoration: none;
    border-color: #fe6601;
}

.subcategory-image {
    position: relative;
    width: 44px;
    height: 44px;
    grid-column: 1;
    grid-row: 1 / span 2;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subcategory-image img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.subcategory-link:hover .subcategory-image img {
    transform: scale(1.05);
}

.subcategory-link::after {
    content: "→";
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    color: #9a9a9a;
    font-size: 18px;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.subcategory-link:hover::after {
    color: #fe6601;
    transform: translateX(2px);
}

.subcategory-name {
    grid-column: 2;
    grid-row: 1;
    font-size: 14px;
    font-weight: 800;
    text-transform: none;
    margin: 0 0 2px 0;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.subcategory-link:hover .subcategory-name {
    color: #fe6601;
}

.subcategory-count {
    grid-column: 2;
    grid-row: 2;
    font-size: 12px;
    color: #7a7a7a;
    display: block;
    margin: 0;
}

.product-filters-wrapper {
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.bapf_head h3 {
    font-size: 14px;
}

.filter-heading {
    font-size: 20px;
    font-weight: 700;
}

.bapf_body ul li label,
.bapf_from,
.bapf_to {
    font-size: 12px;
}

/*** SHOP - PRODUCT CARD ***/
.shop-products ul.products li.product .fs-product-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
	height: 100%;
	position: relative;
}

.shop-products ul.products li.product .fs-product-card__media {
    display: block;
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f3f3f3;
}

.shop-products ul.products li.product .fs-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-products ul.products li.product .fs-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #fe6601;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 6px 10px;
    text-transform: uppercase;
    line-height: 1;
}

.shop-products ul.products li.product .fs-product-card__body {
    padding: 14px 14px 16px;
	min-height: 150px;
}

.shop-products ul.products li.product .fs-product-card__title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    min-height: 35px;
}

.shop-products ul.products li.product .fs-product-card__title a {
    color: #1a1a1a;
    text-decoration: none;
}

.shop-products ul.products li.product .fs-product-card__sku {
    font-size: 12px;
    font-weight: 700;
    color: #777;
    letter-spacing: 0.2px;
}

.shop-products ul.products li.product .fs-product-card__price {
    margin-bottom: 12px;
}

.shop-products ul.products li.product .price {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 800;
}

.shop-products ul.products li.product .price del {
    color: #9a9a9a;
    font-weight: 600;
    font-size: 14px;
}

.shop-products ul.products li.product .price ins {
    background: transparent;
    text-decoration: none;
}

.shop-products ul.products li.product .fs-product-card__cta {
    margin-top: 2px;
	position: absolute;
    bottom: 10px;
}

.shop-products ul.products li.product .fs-loop-quickview {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fe6601;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.shop-products ul.products li.product .fs-loop-quickview__icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fe6601;
    border-radius: 4px;
}

.shop-products ul.products li.product .fs-loop-quickview:hover {
    color: #1a1a1a;
}

.shop-products ul.products li.product .fs-loop-quickview:hover .fs-loop-quickview__icon {
    border-color: #1a1a1a;
}

/*** SINGLE ***/
.woocommerce-variation-availability .stock.in-stock {
    font-size: 13px;
    color: #777;
}
.banner-delivery-wrapper {
    padding-top: 20px;
}

.woocommerce-tabs.wc-tabs-wrapper {
    display: none;
}

.napomena-broj-wrapper {
    border: 1px solid #d1d1d1;
    padding: 10px;
    margin-top: 15px;
}

.napomena-broj-wrapper br {
    display: none;
}

.napomena-broj-wrapper h4 {
    margin-bottom: 8px;
    font-size: 14px;
    color: #fe6601;
}

/* Napomena toggle */
.napomena-broj-wrapper .napomena-click {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    margin: 0;
}

.napomena-broj-wrapper.is-open .napomena-click::after {
    transform: rotate(180deg);
}

.napomena-broj-wrapper p {
    font-size: 12px;
    color: #777;
    padding: 10px 0;
	margin: 0;
}

.size-cm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.size-cm-list li {
    font-size: 12px;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #e6e6e6;
    padding: 4px 0;
}

.size-cm-list li span {
    font-weight: 600;
}

.product_meta {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
}

.product_meta .sku_wrapper span {
    color: #777;
}

.product_meta .posted_in {
    display: none;
}

.wcgs-carousel .spswiper-slide,
.wcgs-carousel .wcgs-slider-image {
    margin: unset !important;
    align-items: start !important;
}

.info-single-del-wrapper {
    display: flex;
    gap: 20px;
}

.info-single-del-wrapper .usp-item {
    flex: 1;
    border: 1px solid #d1d1d1;
    text-align: center;
    padding: 10px 20px;
    transition: all 0.3s ease;
    font-size: 12px;
    color: #777;
}

.info-single-del-wrapper .usp-item i {
    font-size: 18px;
    color: #777;
    margin-bottom: 10px;
    display: block;
    font-weight: 300;
}

.info-single-del-wrapper .usp-item p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.variable-item {
    box-shadow: none !important;
    border: 1px solid #d1d1d1 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.fs-single .variable-items-wrapper .variable-item.button-variable-item.selected,
.fs-single .variable-items-wrapper .variable-item.button-variable-item.selected .variable-item-contents {
    background-color: #d1d1d1 !important;
    border-color: #d1d1d1 !important;
}

.variable-item-span.variable-item-span-button {
    font-weight: 700;
}

.fs-single .fs-single__info form.cart {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.woocommerce-variation-add-to-cart {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
}

.woocommerce-variation-add-to-cart .quantity input {
    max-width: 70px;
    height: 50px;
    border: 1px solid #e6e6e6;
}

.single-product div.product form.cart .quantity input {
    width: 50px;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button {
    height: 50px;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button::before {
    content: "\f07a";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    font-size: 20px;
    color: #fff;
    margin-right: 10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.reset_variations {
    color: #fe6601;
}

.reset_variations:hover {
    color: #fe6601 !important;
    text-decoration: underline !important;
}

.variations th {
    font-size: 14px;
}

/* Single product: main two-column layout (gallery left, info right) */

.single-product div.product .fs-single__top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.single-product div.product .fs-single__gallery {
    flex: 0 0 50%;
    min-width: 0;
    order: 1;
    position: relative
}

.single-product div.product .fs-single__info {
    flex: 1;
    min-width: 0;
    padding-top: 8px;
    order: 2;
    position: relative;
    padding-top: 30px;
}

.single-product div.product .fs-single__below {
    margin-top: 20px;
    border-top: 1px solid #e6e6e6;
    padding-top: 30px;
}

/* Gallery: thumbnails left, main image right (Flexslider default) */
.single-product .woocommerce-product-gallery {
    display: flex;
    gap: 16px;
}

.single-product .woocommerce-product-gallery .flex-viewport {
    order: 2;
    flex: 1;
    min-width: 0;
    background: #f3f3f3;
}

.single-product .woocommerce-product-gallery .flex-viewport img {
    width: 100%;
    height: auto;
    display: block;
}

.single-product .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs {
    order: 1;
    width: 78px;
    min-width: 78px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.single-product .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs li {
    width: 100% !important;
    margin: 0 !important;
    border: 1px solid #e6e6e6;
    background: #fff;
    overflow: hidden;
}

.single-product .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs img {
    width: 100%;
    height: 100%;
    display: block;

    .size-note-wrapper {
        border: 1px solid #e6e6e6;
        padding: 15px 18px;
        margin-top: 15px;
        border-radius: 6px;
        background: #fafafa;
    }

    .size-note-wrapper h4 {
        margin-bottom: 8px;
        font-size: 16px;
        color: #222;
    }

    .size-note-wrapper p {
        font-size: 14px;
        color: #555;
        margin-bottom: 10px;
    }

    .size-cm-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .size-cm-list li {
        font-size: 14px;
        color: #333;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px dashed #ddd;
        padding: 4px 0;
    }

    .size-cm-list li span {
        font-weight: 600;
    }

    object-fit: cover;
    aspect-ratio: 1 / 1;
    opacity: 1;
}

/* Right column typography (close to screenshot) */
.single-product div.product .product_title {
    font-size: 44px;
    font-weight: 900;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.single-product div.product p.price,
.single-product div.product span.price {
    font-size: 26px;
    font-weight: 900;
    color: #fe6601;
    margin: 0 0 14px 0;
}

.single-product div.product p.price del,
.single-product div.product span.price del {
    color: #9a9a9a;
    font-weight: 700;
    margin-left: 10px;
    font-size: 16px;
}

.single-product div.product .woocommerce-product-details__short-description {
    color: #777;
    font-size: 13px;
    line-height: 1.6;
    border-bottom: 1px solid #e6e6e6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    transition: max-height 320ms ease, opacity 200ms ease;
    will-change: max-height;
}

.single-product div.product .woocommerce-product-details__short-description.is-expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: hidden;
}

.single-product div.product .fs-short-description-toggle {
    appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    color: #fe6601;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.single-product div.product .fs-short-description-toggle:active,
.single-product div.product .fs-short-description-toggle:focus,
.single-product div.product .fs-short-description-toggle:focus-visible {
    outline: none;
    border: none;
    box-shadow: none;
}

.single-product div.product .fs-short-description-toggle:focus-visible {
    outline: 2px solid #fe6601;
    outline-offset: 3px;
}

.single-product div.product form.cart.fs-quantity__box input {
    width: 50px;
}

/* Add to cart row: qty + button (wishlist hidden separately) */
.single-product div.product form.cart {
    margin-top: 18px;
}

.single-product div.product form.variations_form {
    display: block;
}

.single-product div.product form.cart .quantity {
    margin: 0;
}

.single-product div.product form.cart .single_add_to_cart_button {
    background: #1a1a1a;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 14px 18px;
    border-radius: 0;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

.single-product div.product form.cart .single_add_to_cart_button::before {
    content: "\f07a";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    font-size: 20px;
    color: #fff;
    margin-right: 10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.single-product div.product form.cart .single_add_to_cart_button:hover {
    background: #fe6601 !important;
    transition: all 0.3s ease;
}

/* If theme/plugin outputs +/- quantity buttons, keep it compact */
.single-product div.product form.cart :where(.quantity, .qty) {
    font-weight: 700;
}

/* Quantity selector (- / +) UI */
.fs-quantity__box {
    display: flex;
    align-items: center;
    border: 1px solid #d1d1d1;
    height: 44px;
    width: 150px;
    background: transparent;
    box-sizing: border-box;
}

.fs-quantity__box .qty-minus,
.fs-quantity__box .qty-plus {
    width: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: #1a1a1a;
    font-weight: 700;
    user-select: none;
}

.fs-quantity__box .qty-minus:disabled,
.fs-quantity__box .qty-plus:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.fs-quantity__box input.qty {
    flex: 1 1 auto;
    border: 0;
    background: transparent;
    padding: 0 6px;
    height: 100%;
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    color: #1a1a1a;
    text-align: center;
    outline: none;
    appearance: textfield;
    -moz-appearance: textfield;
}

.fs-quantity__box input.qty::-webkit-outer-spin-button,
.fs-quantity__box input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.fs-quantity__box .qty-minus:focus-visible,
.fs-quantity__box .qty-plus:focus-visible,
.fs-quantity__box input.qty:focus-visible {
    outline: 2px solid #fe6601;
    outline-offset: 2px;
}

/* Single product: ACF delivery info block under Add to cart */
.single-product .fs-single-delivery-info,
.single-product .info-single-del-wrapper {
    margin-top: 18px;
}

.single-product .fs-single-delivery-info :where(ul, .fs-delivery-grid, .delivery-grid),
.single-product .info-single-del-wrapper :where(ul, .fs-delivery-grid, .delivery-grid) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.single-product .fs-single-delivery-info :where(li, .fs-delivery-card),
.single-product .info-single-del-wrapper :where(li, .fs-delivery-card) {
    border: 1px solid #e6e6e6;
    background: #fff;
    padding: 18px 14px;
    text-align: center;
}

.single-product .fs-single-delivery-info :where(li, .fs-delivery-card) :where(img, svg),
.single-product .info-single-del-wrapper :where(li, .fs-delivery-card) :where(img, svg) {
    width: 34px;
    height: 34px;
    object-fit: contain;
    margin: 0 auto 10px;
    display: block;
}

.single-product .fs-single-delivery-info :where(li, .fs-delivery-card) :where(p, span, div),
.single-product .info-single-del-wrapper :where(li, .fs-delivery-card) :where(p, span, div) {
    margin: 0;
    font-size: 12px;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 600;
}

/* Single product: hide wishlist + size guide */
.single-product .yith-wcwl-add-to-wishlist,
.single-product .tinvwl_add_to_wishlist_button,
.single-product .tinvwl_add_to_wishlist_button+.tinvwl-tooltip,
.single-product .woosw-btn,
.single-product .woosw-btn-icon,
.single-product .wcboost-wishlist,
.single-product .add_to_wishlist,
.single-product a[href*="wishlist"] {
    display: none !important;
}

.single-product .size-guide,
.single-product .size-guide-link,
.single-product .product-size-guide,
.single-product .size-chart,
.single-product a[href*="size-guide"],
.single-product a[href*="sizeguide"],
.single-product a[href*="size-chart"],
.single-product a[href*="sizechart"] {
    display: none !important;
}

.shop-layout-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding-bottom: 70px;
}

.shop-sidebar {
    width: 220px;
    min-width: 220px;
    position: sticky;
    top: 20px;
    background: #fff;
    padding: 20px;
    border: 1px solid #e6e6e6;
}

.shop-sidebar .product-filters-wrapper {
    margin: 0;
    margin-bottom: 0;
}

.shop-products {
    flex: 1;
    min-width: 0;
    position: relative;
    padding: 20px;
    background: #fff;
    border: 1px solid #e6e6e6;
}

.woocommerce-result-count {
    position: absolute;
    left: 20px;
    font-size: 12px;
}

.woocommerce-ordering {
    position: absolute;
    right: 20px;
}

.orderby {
    font-size: 12px;
}

.shop-products .woocommerce-notices-wrapper+.woocommerce-result-count,
.shop-products .woocommerce-ordering {
    margin-bottom: 20px;
}

.product-home-wrapper .shop-products ul.products {
    grid-template-columns: repeat(6, 1fr);
}

.shop-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: 50px;
}

.shop-products ul.products li.product {
    margin: 0 !important;
    padding: 0;
    width: 100% !important;
    float: none !important;
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease;
    box-shadow: 0 5px 12px rgba(230, 230, 230, 0.5);
}

.shop-products ul.products li.product:hover img {
    transform: scale(1.05);
}

.shop-products ul.products li.product img {
    transition: all 0.3s ease;
}

/*** SINGLE - RELATED PRODUCTS (match shop listing cards) ***/
.single-product .related ul.products {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: 50px;
}

.single-product .related ul.products li.product {
    margin: 0 !important;
    padding: 0;
    width: 100% !important;
    float: none !important;
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease;
    box-shadow: 0 5px 12px rgba(230, 230, 230, 0.5);
}

.single-product .related ul.products li.product:hover img {
    transform: scale(1.05);
}

.single-product .related ul.products li.product img {
    transition: all 0.3s ease;
}

.single-product .related ul.products li.product .fs-product-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
	height: 100%;
}

.single-product .related ul.products li.product .fs-product-card__media {
    display: block;
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f3f3f3;
}

.single-product .related ul.products li.product .fs-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-product .related ul.products li.product .fs-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #fe6601;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 6px 10px;
    text-transform: uppercase;
    line-height: 1;
}

.single-product .related ul.products li.product .fs-product-card__body {
    padding: 14px 14px 16px;
}

.single-product .related ul.products li.product .fs-product-card__title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    min-height: 35px;
}

.single-product .related ul.products li.product .fs-product-card__title a {
    color: #1a1a1a;
    text-decoration: none;
}

.single-product .related ul.products li.product .fs-product-card__sku {
    font-size: 12px;
    font-weight: 700;
    color: #777;
    letter-spacing: 0.2px;
}

.single-product .related ul.products li.product .fs-product-card__price {
    margin-bottom: 12px;
}

.single-product .related ul.products li.product .price {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 800;
}

.single-product .related ul.products li.product .price del {
    color: #9a9a9a;
    font-weight: 600;
    margin-left: 10px;
    font-size: 14px;
}

.single-product .related ul.products li.product .price ins {
    background: transparent;
    text-decoration: none;
}

.single-product .related ul.products li.product .fs-product-card__cta {
    margin-top: 2px;
}

.single-product .related ul.products li.product .fs-loop-quickview {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fe6601;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.single-product .related ul.products li.product .fs-loop-quickview__icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fe6601;
    border-radius: 4px;
}

.single-product .related ul.products li.product .fs-loop-quickview:hover {
    color: #1a1a1a;
}

.single-product .related ul.products li.product .fs-loop-quickview:hover .fs-loop-quickview__icon {
    border-color: #1a1a1a;
}

.related.products h2 {
    font-size: 28px;
    text-transform: none;
}

.single-product .related.products ul {
    padding-bottom: 50px;
    margin-top: 30px;
}

/*** MINICART ***/

h2.wc-block-mini-cart__title {
    mask-image: none !important;
    padding: 20px !important;
    border-bottom: 1px solid #e6e6e6 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    padding: 0 0 20px 20px !important;
    color: #1a1a1a !important;
    margin: 0 !important;
}

.wc-block-mini-cart__items {
    padding: 10px !important;
}

.wc-block-mini-cart__footer {
    border-top: 1px solid #e6e6e6 !important;
    padding: 10px !important;
}

.wc-block-components-totals-item__label {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 500;
    text-transform: uppercase;
}

.wc-block-components-totals-item.wc-block-mini-cart__footer-subtotal .wc-block-formatted-money-amount {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 900;
}

.wc-block-components-totals-item__description {
    color: #777 !important;
    font-size: 12px !important;
}

.wc-block-components-button.wc-block-components-drawer__close svg {
    fill: #777 !important;
}

.wc-block-components-button.wp-element-button.wc-block-mini-cart__footer-cart.is-style-outline.wp-block-woocommerce-mini-cart-cart-button-block {
    background: #1a1a1a !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.wc-block-components-button.wp-element-button.wc-block-mini-cart__footer-cart.is-style-outline.wp-block-woocommerce-mini-cart-cart-button-block:hover {
    text-decoration: none !important;
    border: none !important;
    background: #fe6601 !important;
    transition: all 0.3s ease !important;
}

.wc-block-components-button__text {
    color: #fff !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
}

.wc-block-components-button.wp-element-button.wc-block-mini-cart__footer-checkout.wp-block-woocommerce-mini-cart-checkout-button-block .wc-block-components-button__text {
    color: #777 !important;
    text-decoration: underline !important;
    text-transform: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.wc-block-components-button.wp-element-button.wc-block-mini-cart__footer-checkout.wp-block-woocommerce-mini-cart-checkout-button-block .wc-block-components-button__text:hover {
    color: #1a1a1a !important;
    transition: all 0.3s ease !important;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
    object-fit: contain;
}

.wc-block-cart-items__row {
    border-bottom: 1px solid #e6e6e6 !important;
}

.wc-block-components-product-name {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 900;
    text-transform: uppercase;
}

.wc-block-components-product-name:hover {
    color: inherit !important;
}

.wc-block-components-product-metadata__description {
    display: none;
}

.wc-block-cart-item__prices .price.wc-block-components-product-price .wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-product-price__value {
    font-weight: 400;
}

.price.wc-block-components-product-price .wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-product-price__value {
    font-weight: 700;
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row,
.is-small table.wc-block-cart-items .wc-block-cart-items__row {
    grid-template-columns: 100px !important;
    padding: 10px 0 !important;
}

.wc-block-components-quantity-selector {
    border: 1px solid #d1d1d1 !important;
    border-radius: 0 !important;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link svg {
    fill: #777 !important;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link svg:hover {
    fill: #fe6601 !important;
}

.wc-block-components-product-badge {
    color: #777 !important;
    background: #e6e6e6 !important;
}

.woocommerce-message {
    font-size: 12px;
    border: none;
    outline: none;
    box-shadow: none;
}

.woocommerce-message .button.wc-forward {
    color: #fe6601;
}

/*** CART i CHECKOUT ***/
.woocommerce-cart .wc-block-cart__submit-button .wc-block-components-button__text {
    background: #1a1a1a;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 14px 18px;
    border-radius: 0;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

.woocommerce-cart .wc-block-cart__submit-button .wc-block-components-button__text:hover {
    background: #fe6601;
    text-decoration: none !important;
}

.woocommerce-cart .wc-block-cart__submit-button:hover {
    text-decoration: none !important;
}

.woocommerce-cart .container h1 {
    font-size: 60px;
    font-weight: 900;
    padding: 50px 0;
}

.woocommerce-checkout .container h1 {
    font-size: 60px;
    font-weight: 900;
    padding: 50px 0;
}

.woocommerce-checkout .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button {
    color: #1A1A1A;
}

.woocommerce-checkout .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button:hover {
    text-decoration: underline;
}

.woocommerce-checkout .wc-block-checkout__actions_row .wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
    background: #fe6601 !important;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 14px 18px;
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

.woocommerce-checkout .wc-block-checkout__actions_row .wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover {
    background: #1a1a1a !important;
    transition: all 0.3s ease;
}

.woocommerce-checkout input,
.wp-block-woocommerce-checkout-order-summary-block,
.wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted,
.wc-block-components-textarea,
.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
    border: 1px solid #d1d1d1 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.wc-blocks-components-select .wc-blocks-components-select__container {
    background: transparent !important;
}

.wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-totals-block .wc-block-components-totals-item__label,
.woocommerce-cart .wc-block-components-totals-item__label {
    font-size: 14px;
    text-transform: none;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-weight: 700 !important;
}

.wc-block-components-title.wc-block-components-title {
    font-size: 18px !important;
}

.wc-block-components-totals-coupon__content .wc-block-components-totals-coupon__form .wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained {
    background-color: transparent !important;
    color: #1a1a1a !important;
    border: 1px solid #d1d1d1 !important;
}

.wc-block-components-totals-coupon__content .wc-block-components-totals-coupon__form .wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained .wc-block-components-button__text {
    color: #777 !important;
}

.wc-block-components-totals-coupon__content .wc-block-components-totals-coupon__form input {
    border: 1px solid #d1d1d1 !important;
    background-color: transparent !important;
    border-radius: 0 !important;
}

.wc-block-components-totals-coupon__content .wc-block-components-text-input label,
.woocommerce-checkout label,
.wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-components-form .wc-block-components-text-input input[type=email] {
    color: #777 !important;
    font-size: 12px !important;
}

.theme-fashionshop.woocommerce-checkout .wc-blocks-components-select,
.wc-block-checkout__guest-checkout-notice,
.wc-block-components-address-form__state.wc-block-components-state-input {
    display: none;
}
.woocommerce-pagination {
    padding: 20px 0;
}
.woocommerce-pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    color: #1a1a1a;
}
.woocommerce-pagination .page-numbers.current {
    color: #fe6601;
}
.woocommerce-pagination .page-numbers li {
    list-style: none;
}
.woocommerce-pagination .page-numbers li a {
    text-decoration: none;
}
.woocommerce-pagination .page-numbers li {
    list-style: none;
    min-width: 20px;
    height: 20px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 5px 12px rgba(230, 230, 230, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}
.berocket_single_filter_widget .bapf_sfilter.bapf_ckbox .bapf_body ul {
	display: grid;
	grid-template-columns: repeat(4,1fr);
}