.header-bottom, .header-top {
    background-color: var(--white)
}

.search-container {
    position: relative;
    width: 100%
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 40px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1050;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}

.autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid var(--gray-100);
    transition: background-color .2s ease
}

.autocomplete-item.active, .autocomplete-item:hover {
    background-color: var(--bg-light)
}

.autocomplete-item:last-child {
    border-bottom: none
}

.autocomplete-item .item-title {
    font-weight: 500;
    color: #333;
    margin-bottom: 2px
}

.autocomplete-item .item-code {
    font-size: 11px;
    color: var(--gray-500)
}

.autocomplete-no-results {
    padding: 15px;
    text-align: center;
    color: var(--gray-500);
    font-style: italic
}

.custom-select-container {
    position: relative
}

.custom-variant-select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2
}

.custom-select-display {
    border: 1px solid #dee2e6;
    border-radius: .375rem;
    padding: .75rem 2.5rem .75rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    cursor: pointer;
    width: 100%;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    min-height: 48px;
    display: flex;
    align-items: center
}

.custom-select-container:hover .custom-select-display {
    border-color: #b0b0b0
}

.custom-variant-select:focus + .custom-select-display {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.custom-select-arrow {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6c757d;
    font-size: 14px;
    transition: transform .3s ease;
    z-index: 1
}

.custom-variant-select:focus + .custom-select-display + .custom-select-arrow {
    color: #495057;
    transform: translateY(-50%) rotate(180deg)
}

.custom-select-display span {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.product-image-container {
    position: relative;
    width: 100%
}

.product-main-swiper {
    width: 100%;
    height: 500px;
    margin-bottom: 15px;
    border: 1px solid #e9e9e9;
    background-color: #f8f8f8
}

.product-main-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8
}

.product-main-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    cursor: zoom-in;
    transition: opacity .2s
}

.product-main-swiper .swiper-slide img:hover {
    opacity: .9
}

.product-main-swiper .swiper-button-next, .product-main-swiper .swiper-button-prev {
    color: var(--primary);
    background: hsla(0, 0%, 100%, .9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: -20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    transition: all .3s ease
}

.product-main-swiper .swiper-button-next:after, .product-main-swiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 700
}

.product-main-swiper .swiper-button-next:hover, .product-main-swiper .swiper-button-prev:hover {
    background: #fff;
    color: var(--primary-hover);
    transform: scale(1.1)
}

.product-thumbs-swiper {
    width: 100%;
    height: 80px;
    box-sizing: border-box;
    padding: 10px 0
}

.product-thumbs-swiper .swiper-slide {
    width: 80px;
    height: 60px;
    opacity: .6;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: all .3s ease
}

.product-thumbs-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.product-thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--primary)
}

.product-thumbs-swiper .swiper-slide:hover {
    opacity: 1;
    transform: scale(1.05)
}

@media (max-width: 991px) {
    .product-main-swiper {
        height: 400px
    }
}

@media (max-width: 576px) {
    .product-main-swiper {
        height: 350px
    }

    .product-thumbs-swiper {
        height: 70px
    }

    .product-thumbs-swiper .swiper-slide {
        width: 70px;
        height: 50px
    }
}

.modal, body.modal-open {
    padding-right: 0 !important
}

.image-modal .modal-dialog {
    max-width: 90vw;
    max-height: 90vh;
    margin: 5vh auto
}

.image-modal .modal-content {
    background: rgba(0, 0, 0, .9);
    border: none;
    border-radius: 8px;
    overflow: hidden
}

.image-modal .modal-body {
    padding: 0;
    position: relative
}

.modal-swiper {
    width: 100%;
    height: 80vh;
    max-height: 600px
}

.modal-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent
}

.modal-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px
}

.modal-swiper .swiper-button-next, .modal-swiper .swiper-button-prev {
    color: #fff;
    background: hsla(0, 0%, 100%, .2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all .3s ease
}

.modal-swiper .swiper-button-next:after, .modal-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700
}

.modal-swiper .swiper-button-next:hover, .modal-swiper .swiper-button-prev:hover {
    background: hsla(0, 0%, 100%, .3);
    transform: scale(1.1)
}

.modal-swiper .swiper-pagination {
    bottom: 20px
}

.modal-swiper .swiper-pagination-bullet {
    background: hsla(0, 0%, 100%, .6);
    width: 12px;
    height: 12px;
    opacity: 1
}

.modal-swiper .swiper-pagination-bullet-active {
    background: #fff
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, .6);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    backdrop-filter: blur(10px);
    transition: all .3s ease
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, .8);
    transform: scale(1.1)
}

.image-counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    z-index: 10
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 100%;
        padding-left: 5px;
        padding-right: 5px
    }

    .header-top .row {
        margin-left: 0;
        margin-right: 0;
        flex-wrap: nowrap
    }

    .col-6 {
        padding-left: 10px;
        padding-right: 10px
    }

    .col-md-4:last-child {
        padding-left: 0
    }

    .logo-img {
        height: 45px
    }

    .fa-search, .fa-shopping-cart, .fa-user, .user-link i {
        font-size: 14px;
        margin-bottom: 1px
    }

    .flag-img {
        width: 28px;
        height: 19px
    }

    .cart-container {
        width: 28px;
        height: 28px
    }

    .cart-badge {
        width: 16px;
        height: 16px;
        font-size: 9px
    }

    .small {
        font-size: 8px;
        line-height: 1
    }

    .header-icon {
        padding: 0 2px
    }

    .me-2, .me-3 {
        margin-right: 5px !important
    }

    .ms-1 {
        margin-left: 2px !important
    }

    .ms-auto {
        margin-left: auto !important
    }

    .dropdown-menu-end {
        right: 0;
        left: auto
    }

    .header-top .col-6.col-md-4:first-child {
        flex: 0 0 auto;
        width: 40%
    }

    .header-top .col-6.col-md-4:last-child {
        flex: 0 0 auto;
        width: 60%
    }

    .header-top .col-6.col-md-4:last-child .d-flex {
        justify-content: space-between !important
    }

    .header-bottom {
        padding-top: 10px !important;
        padding-bottom: 10px !important
    }

    .d-flex.flex-column.align-items-center {
        line-height: 1
    }
}

@media (max-width: 991px) {
    .main-content {
        margin-top: 0
    }

    .product-title {
        font-size: 26px
    }

    .custom-tabs .nav-link {
        padding: 8px 10px;
        font-size: 13px
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 22px
    }

    .price {
        font-size: 26px
    }

    .custom-tabs {
        overflow-x: auto;
        white-space: nowrap
    }

    .custom-tabs .nav-item {
        margin-right: 2px
    }

    .logo-img {
        height: 50px
    }

    .iso-text {
        font-size: 11px
    }

    .user-link i {
        font-size: 16px
    }

    .flag-img {
        width: 36px;
        height: 24px
    }

    .cart-container {
        width: 30px;
        height: 30px
    }

    .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 10px
    }

    .me-3, .mx-3 {
        margin-right: .5rem !important
    }

    .mx-3 {
        margin-left: .5rem !important
    }

    .modal-fullscreen-sm-down {
        width: 100%;
        height: 100%
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border-radius: 0;
        border: none
    }
}

:root {
    --primary: #d61921;
    --text: #555;
    --bg-light: #f6f6f6;
    --blue-light: #6689a1;
    --search-btn: #6c8ea7;
    --gray-100: #f0f0f0;
    --gray-200: #ecf0f3;
    --gray-300: #e0e0e0;
    --gray-500: #777;
    --secondary: #6c8ea7
}

body {
    color: var(--text);
    background-color: var(--bg-light)
}

body.nav-sticky {
    padding-top: 60px
}

body.mobile-nav-sticky {
    padding-top: 50px
}

.header-top {
    border-bottom: 2px solid var(--bg-light)
}

.header-bottom, .header-top {
    background-color: var(--white)
}

.header-bottom {
    border-bottom: 1px solid var(--gray-200);
    transition: all .3s ease
}

.header-bottom.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    width: 100%
}

@media (max-width: 991px) {
    .header-bottom.sticky {
        position: relative;
        box-shadow: none
    }

    body.nav-sticky {
        padding-top: 0
    }
}

.logo-img {
    height: 80px
}

.iso-text {
    font-size: 13px;
    font-style: italic;
    color: var(--text);
    white-space: nowrap
}

.search-input {
    border-radius: 0;
    border: 1px solid var(--gray-200);
    font-size: 13px;
    height: 40px
}

.search-input:focus {
    border-color: var(--search-btn);
    box-shadow: 0 0 0 .25rem rgba(108, 142, 167, .25)
}

.search-btn {
    font-size: 13px;
    border-radius: 0;
    background-color: var(--search-btn);
    border: 1px solid var(--search-btn);
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.search-btn:focus, .search-btn:hover {
    background-color: var(--blue-light);
    border-color: var(--blue-light)
}

.search-btn i, .search-btn span {
    pointer-events: none
}

.user-link {
    color: var(--blue-light);
    text-decoration: none
}

.user-link:hover {
    color: var(--primary)
}

.user-link i {
    font-size: 22px
}

.user-link:hover i {
    color: var(--primary)
}

.flag-img {
    width: 44px;
    height: 30px
}

.flag-option-img {
    width: 24px;
    height: 16px
}

.cart-container {
    width: 40px;
    height: 40px;
    /*background: #999*/
}

.cart-badge {
    width: 20px;
    height: 20px;
    font-size: 12px;
    background-color: var(--primary)
}

.cart-price {
    color: var(--primary)
}

.nav-main {
    font-weight: 700
}

.nav-link-custom {
    color: #000;
    font-size: 15px;
    padding: 0 10px;
    margin-right: 40px;
    transition: color .3s ease
}

.nav-link-custom:hover {
    color: var(--primary)
}

.header-icon {
    display: flex;
    align-items: center;
    padding: 0 5px
}

.sidebar {
    background-color: var(--white);
    border: 1px solid var(--gray-200)
}

.sidebar-category {
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color) !important;
    text-decoration: none !important;
}
#content .product-wrap .product-in .price_detail .price {
    font-size: inherit !important;
}

.sidebar-category:hover {
    background-color: var(--bg-light)
}

.sidebar-category.active {
    background-color: var(--gray-200)
}

.sidebar-category .toggle-icon i {
    color: var(--search-btn);
    transition: transform .3s ease
}

.sidebar-category.expanded .toggle-icon i {
    transform: rotate(180deg)
}

.sidebar-subcategory {
    display: none;
    background-color: #e8e8e8;
    padding: 5px 0
}

.sidebar-subcategory a {
    color: var(--text) !important;
    text-decoration: none;
    display: block;
    padding: 8px 15px 8px 30px;
    font-size: 13px;
    font-weight: 400
}

.sidebar-subcategory a:hover {
    color: var(--primary) !important;
    background-color: rgba(0, 0, 0, .03)
}

.sidebar-subcategory a.selected {
    background-color: #ddd !important;;
}

.main-content {
    background-color: var(--white)
}

.product-title {
    font-size: 32px;
    font-weight: 400;
    color: #333
}

.show-full-desc {
    color: var(--blue-light);
    text-decoration: underline
}

.show-full-desc:hover {
    color: var(--primary-hover)
}

.availability {
    font-size: 20px;
    color: #5cb85c
}

.price {
    font-size: 32px;
    color: var(--primary)
}

.product-image, .product-image-container {
    position: relative;
    width: 100%
}

.product-image {
    height: 500px;
    overflow: hidden;
    border: 1px solid #e9e9e9;
    background-color: #f8f8f8
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    cursor: zoom-in;
    transition: opacity .2s
}

.product-image img:hover {
    opacity: .9
}

.custom-tabs {
    border-bottom: none
}

.custom-tabs .nav-link {
    border-radius: 0;
    padding: 10px 15px;
    color: #495057;
    background-color: #f5f5f5;
    margin-bottom: 0;
    border: 1px solid #dee2e6;
    position: relative
}

.custom-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-top: 3px solid #5b87aa;
    border-bottom-color: #fff;
    margin-bottom: -1px
}

.custom-tabs .individual-tab {
    background-color: #5b87aa;
    color: #fff;
    border-color: #5b87aa
}

.custom-tabs .individual-tab.active {
    background-color: #fff;
    color: #495057;
    border-top: 3px solid #5b87aa;
    border-bottom-color: #fff
}

.modal-backdrop {
    opacity: .85 !important;
    z-index: 1040 !important
}

.modal-backdrop + .modal-backdrop {
    opacity: 0 !important;
    visibility: hidden !important
}

body.modal-open {
    overflow: hidden
}

.modal, body.modal-open {
    padding-right: 0 !important
}

.modal-content {
    z-index: 1050;
    position: relative
}

.modal-content:focus {
    outline: none
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translateY(-50px)
}

.modal.show .modal-dialog {
    transform: none
}

.modal-fullscreen-sm-down {
    padding: 0;
    max-width: 100vw;
    margin: 0
}

.modal-fullscreen-sm-down .modal-content {
    border-radius: 0;
    min-height: 100%
}

.modal-fullscreen-sm-down .modal-header {
    background-color: var(--secondary);
    color: #fff
}

.modal-fullscreen-sm-down .modal-title {
    color: #fff;
    font-weight: 500
}

.modal-fullscreen-sm-down .btn-close {
    filter: brightness(0) invert(1)
}

.modal-fullscreen-sm-down .modal-body {
    padding: 20px
}

#searchModal .search-btn {
    background-color: var(--search-btn);
    color: #fff;
    border-color: var(--search-btn);
    position: relative;
    z-index: 5
}

#searchModal .search-btn:focus, #searchModal .search-btn:hover {
    background-color: var(--blue-light);
    border-color: var(--blue-light)
}

.breadcrumb-item a {
    color: var(--primary) !important;
}

.btn-danger {
    border-radius: 0
}

.btn-quantity {
    background-color: var(--secondary)
}

.mobile-category-btn, .mobile-nav-btn {
    background-color: var(--secondary);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 0
}

.mobile-category-btn {
    padding: 12px 15px
}

.mobile-nav-btn {
    padding: 10px 15px
}

.mobile-category-btn:focus, .mobile-category-btn:hover, .mobile-nav-btn:focus, .mobile-nav-btn:hover {
    background-color: var(--blue-light);
    color: #fff
}

.mobile-category-btn .fa-chevron-down, .mobile-nav-btn .fa-chevron-down {
    transition: transform .3s
}

.mobile-category-btn[aria-expanded=true] .fa-chevron-down, .mobile-nav-btn[aria-expanded=true] .fa-chevron-down {
    transform: rotate(180deg)
}

#mobileSidebar {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-top: none
}

#mobileSidebar .sidebar-category {
    border-top: 1px solid var(--gray-200);
    border-bottom: none
}

#mobileSidebar .sidebar-category:first-child {
    border-top: none
}

.mobile-nav {
    border: 1px solid var(--gray-200);
    border-top: none
}

.mobile-nav-link {
    display: block;
    padding: 12px 15px;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-200);
    transition: all .2s ease
}

.mobile-nav-link:last-child {
    border-bottom: none
}

.mobile-nav-link:hover {
    color: var(--primary);
    background-color: var(--bg-light)
}

.mobile-header-bar {
    width: 100%;
    margin-bottom: 0;
    transition: all .3s ease
}

#mobileNavContainer.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    width: 100%;
    background-color: var(--white)
}

.mobile-header-bar.sticky {
    position: relative;
    box-shadow: none
}

.mobile-header-bar .btn-secondary {
    background-color: var(--secondary);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 0;
    padding: 12px 15px;
    margin: 0
}

.mobile-header-bar .btn-secondary:focus, .mobile-header-bar .btn-secondary:hover {
    background-color: var(--blue-light);
    color: #fff
}

.mobile-header-bar .fa-chevron-down {
    transition: transform .3s
}

.mobile-header-bar .btn-secondary[aria-expanded=true] .fa-chevron-down {
    transform: rotate(180deg)
}

.mobile-header-divider {
    width: 1px;
    background-color: hsla(0, 0%, 100%, .3)
}

#mobileNavMenu, #mobileSidebar {
    z-index: 100
}

body.menu-open #mobileSidebar.show, body.sidebar-open #mobileNavMenu.show {
    display: none !important
}

@media (min-width: 992px) {
    .container {
        max-width: 1320px
    }

    .header-top .row {
        display: flex;
        align-items: center
    }

    .logo-img {
        height: 80px
    }

    .iso-text {
        display: inline-block
    }

    .header-top .col-lg-4:nth-child(2) {
        display: flex;
        justify-content: center
    }

    .input-group {
        width: 100%
    }

    .user-link i {
        font-size: 22px
    }

    .flag-img {
        width: 44px;
        height: 30px
    }

    .cart-container {
        width: 40px;
        height: 40px
    }

    .cart-badge {
        width: 20px;
        height: 20px;
        font-size: 12px
    }

    .header-icon {
        padding: 0 5px
    }

    .me-3 {
        margin-right: 1rem !important
    }

    .ms-3 {
        margin-left: 1rem !important
    }

    .header-top .col-lg-4:last-child {
        display: flex;
        justify-content: flex-end
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 100%;
        padding-left: 5px;
        padding-right: 5px
    }

    .header-top .row {
        margin-left: 0;
        margin-right: 0;
        flex-wrap: nowrap
    }

    .col-6 {
        padding-left: 10px;
        padding-right: 10px
    }

    .col-md-4:last-child {
        padding-left: 0
    }

    .logo-img {
        height: 45px
    }

    .fa-search, .fa-shopping-cart, .fa-user, .user-link i {
        font-size: 14px;
        margin-bottom: 1px
    }

    .flag-img {
        width: 28px;
        height: 19px
    }

    .cart-container {
        width: 28px;
        height: 28px
    }

    .cart-badge {
        width: 16px;
        height: 16px;
        font-size: 9px
    }

    .small {
        font-size: 8px;
        line-height: 1
    }

    .header-icon {
        padding: 0 2px
    }

    .me-2, .me-3 {
        margin-right: 5px !important
    }

    .ms-1 {
        margin-left: 2px !important
    }

    .ms-auto {
        margin-left: auto !important
    }

    .dropdown-menu-end {
        right: 0;
        left: auto
    }

    .header-top .col-6.col-md-4:first-child {
        flex: 0 0 auto;
        width: 40%
    }

    .header-top .col-6.col-md-4:last-child {
        flex: 0 0 auto;
        width: 60%
    }

    .header-top .col-6.col-md-4:last-child .d-flex {
        justify-content: space-between !important
    }

    .header-bottom {
        padding-top: 10px !important;
        padding-bottom: 10px !important
    }

    .d-flex.flex-column.align-items-center {
        line-height: 1
    }
}

@media (min-width: 768px) and (max-width: 850px) {
    .logo-img {
        height: 40px
    }

    .fa-search, .fa-shopping-cart, .fa-user, .user-link i {
        font-size: 12px
    }

    .flag-img {
        width: 24px;
        height: 16px
    }

    .cart-container {
        width: 24px;
        height: 24px
    }

    .cart-badge {
        width: 14px;
        height: 14px;
        font-size: 8px
    }

    .header-icon {
        padding: 0 1px
    }

    .me-2, .me-3 {
        margin-right: 3px !important
    }
}

@media (max-width: 991px) {
    .main-content {
        margin-top: 0
    }

    .product-title {
        font-size: 26px
    }

    .product-image {
        height: 400px
    }

    .custom-tabs .nav-link {
        padding: 8px 10px;
        font-size: 13px
    }
}

@media (max-width: 767px) {
    .logo-img {
        height: 50px
    }

    .header-icon {
        padding: 0 3px
    }

    .fa-search, .fa-shopping-cart, .fa-user, .user-link i {
        font-size: 16px
    }

    .cart-container {
        width: 32px;
        height: 32px
    }

    .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 10px
    }

    .small {
        font-size: 9px
    }

    .me-2, .me-3 {
        margin-right: 8px !important
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 22px
    }

    .price {
        font-size: 26px
    }

    .product-image {
        height: 350px
    }

    .custom-tabs {
        overflow-x: auto;
        white-space: nowrap
    }

    .custom-tabs .nav-item {
        margin-right: 2px
    }

    .logo-img {
        height: 50px
    }

    .iso-text {
        font-size: 11px
    }

    .user-link i {
        font-size: 16px
    }

    .flag-img {
        width: 36px;
        height: 24px
    }

    .cart-container {
        width: 30px;
        height: 30px
    }

    .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 10px
    }

    .me-3, .mx-3 {
        margin-right: .5rem !important
    }

    .mx-3 {
        margin-left: .5rem !important
    }

    .modal-fullscreen-sm-down {
        width: 100%;
        height: 100%
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border-radius: 0;
        border: none
    }
}

@supports (-webkit-overflow-scrolling:touch) {
    .modal-body {
        -webkit-overflow-scrolling: touch
    }
}

.section-heading-large {
    font-weight: 300;
    line-height: 1.2;
    /*max-width: 430px*/
}
.section-heading-large-2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.2;
    max-width: 430px;
}
.section-text {
    margin-bottom: 25px;
    line-height: 1.6
}

.read-more-link, .show-less-link {
    text-decoration: underline;
    cursor: pointer;
    font-weight: 400
}

.gallery-img {
    margin-bottom: 20px;
    height: 220px
}

.hidden-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height .8s cubic-bezier(0, 1, 0, 1), opacity .6s ease;
    opacity: 0
}

.hidden-section.show {
    max-height: 3000px;
    opacity: 1;
    transition: max-height 1s ease-in-out, opacity .8s ease-in-out .1s
}

#content ul li:before {
    content: ""
}

.service-card {
    background-color: var(--card-bg);
    border: none;
    border-radius: 8px;
    padding: 30px 20px;
    height: 100%;
    transition: all .3s ease;
    cursor: pointer
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .1)
}

.service-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px
}

.service-card p {
    font-size: 13px;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.5
}

.service-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    display: inline-block;
    margin-bottom: 15px
}

.tesa-gold-section .heading-block h2 {
    font-size: 2.5rem
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0
    }

    .section-heading-large {
        font-size: 28px
    }

    .tesa-gold-section .heading-block h2 {
        font-size: 2rem
    }

    .tesa-gold-section {
        padding: 60px 0
    }

    .col-mb-50 > [class*=col-] {
        margin-bottom: 30px
    }

    .tesa-gold-section .col-md-4 {
        justify-content: center !important;
        text-align: center
    }

    .hero-image {
        margin-top: 30px
    }
}

.section-heading-large {
    font-size: 32px
}

.bg-light-blue {
    background-color: var(--light-blue);
    color: #fff
}

.bg-light-gray {
    background-color: var(--light-gray)
}

.bg-section {
    background-color: var(--section-bg)
}

.text-red, .text-red a {
    color: var(--primary-color)
}

ul {
    font-size: 14px
}

.industry-list, .product-list {
    list-style-type: disc;
    padding-left: 20px;
    line-height: 1.6
}

.industry-list a, .product-list a {
    color: var(--primary-color);
    text-decoration: underline
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.news-card {
    margin-bottom: 0
}

.news-card img {
    height: 216px;
    width: 100%;
    object-fit: cover
}

.news-content {
    min-height: 270px
}

.news-title {
    font-size: 20px !important;
    margin-bottom: 5px !important;
}

.news-subtitle {
    color: var(--medium-gray);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 12px
}

.max-width-200 {
    max-width: 200px
}

.max-width-300 {
    max-width: 300px
}

.max-width-650 {
    max-width: 650px
}

.line-height-sm {
    line-height: 1.2
}

.tesa-gold-section {
    background-color: #e8e8e8;
    padding: 80px 0
}

.tesa-gold-section .heading-block h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 10px
}

.tesa-gold-section .heading-block h2 strong {
    font-weight: 700;
    color: #333
}

.tesa-gold-section .heading-block span {
    color: #999;
    font-size: 1.1rem;
    font-style: italic;
    display: block;
    margin-bottom: 20px
}

.tesa-gold-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0
}

.tesa-gold-section img {
    max-width: 100%;
    height: auto
}

.clearfix:after {
    content: "";
    display: table;
    clear: both
}

.col-mb-50 > [class*=col-] {
    margin-bottom: 50px
}

.topmargin-sm {
    margin-top: 20px
}

.btn-animated {
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.btn-animated:hover {
    transform: scale(1.05)
}

.btn-pulse {
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.05)
    }
    to {
        transform: scale(1)
    }
}

@media (max-width: 768px) {
    .tesa-gold-section .heading-block h2 {
        font-size: 2rem
    }

    .tesa-gold-section {
        padding: 60px 0
    }

    .col-mb-50 > [class*=col-] {
        margin-bottom: 30px
    }

    .tesa-gold-section .col-md-4 {
        justify-content: center !important;
        text-align: center
    }

    .preaplikace-section {
        flex-direction: column-reverse
    }
}

:root {
    --primary-color: #d61921;
    --primary-hover: #c82333;
    --text-color: #555;
    --light-bg: #f6f6f6;
    --white: #fff;
    --light-blue: #6689a1;
    --light-gray: #ecf0f3;
    --medium-gray: #777;
    --section-bg: #f0f0f0;
    --card-bg: #f8f9fa
}

body {
    color: var(--text-color);
    font-family: Roboto, sans-serif;
    line-height: 1.6;
    background-color: var(--light-bg);
    font-size: 14px
}

.section-heading, h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    font-family: Roboto, sans-serif
}

.fw-normal {
    font-weight: 400 !important
}

.color-black {
    color: #000
}

.btn-red {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 0;
    font-size: 14px;
    transition: all .3s;
    text-decoration: none
}

.btn-red:hover {
    background-color: var(--primary-hover);
    color: #fff
}

.section-heading {
    margin-bottom: 20px;
    font-size: 28px
}

.section-heading-large {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 500;
    padding-top: 40px
}

.section-text {
    margin-bottom: 20px;
    font-size: 14px
}

.bg-image-container {
    position: relative;
    padding: 30px;
    background-size: cover;
    background-position: 50%;
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.bg-white {
    background-color: var(--white)
}

.text-red {
    color: var(--primary-color)
}

.hero-section {
    background-color: var(--white);
    padding: 60px 0
}

.hero-content {
    max-width: 500px
}

.hero-image {
    text-align: center
}

.hero-image img {
    max-width: 100%;
    height: auto
}

.services-grid .bg-image-container {
    min-height: 160px;
    background-color: #ecf0f3 !important
}

.max-width-250 {
    max-width: 250px
}

.btn-arrow {
    width: 38px;
    font-size: 29px;
    padding: 0
}

.read-more-link, .show-less-link {
    color: var(--primary-color);
    text-decoration: none
}

.read-more-link:hover, .show-less-link:hover {
    color: var(--primary-hover);
    text-decoration: underline
}

/*.hidden-section {*/
/*    display: none*/
/*}*/

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px
}

.feature-box {
    text-align: center;
    padding: 20px;
    transition: all .3s
}

.feature-box:hover {
    transform: translateY(-5px)
}

.feature-icon {
    margin-bottom: 15px
}

.feature-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px
}

.feature-description {
    color: var(--medium-gray);
    font-size: 12px;
    font-style: italic;
    line-height: 1.4
}

.testimonial-card {
    background-color: var(--white);
    border: none;
    box-shadow: none;
    padding-top: 25px
}

.star-rating {
    color: gold
}

.btn-slide {
    position: relative;
    z-index: 1
}

.btn-slide:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: hsla(0, 0%, 100%, .2);
    transition: all .3s ease;
    z-index: -1
}

.btn-slide:hover:after {
    width: 100%
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0
    }

    .section-heading-large {
        font-size: 28px
    }

    .hero-image {
        margin-top: 30px
    }
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
    position: relative;
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    max-width:120px;
}

.product-badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    color:white;
}

.produkt-medium-obrazek{
    max-height: 150px;
    object-fit: contain;
    min-height: 150px;
}

.badge-obrazek{
    width:100%;
    max-height: 26px;
    object-fit: contain;
}
