
/* GENERAL */
.row-produse {
    display: grid;
    grid-template-columns: repeat(var(--default-products-grid), 12fr);
    gap: var(--default-products-gap);
}
.row-category-both {
    display: grid;
    grid-template-columns: repeat(calc(var(--default-products-grid) - 2), 12fr);
    gap: var(--default-products-gap);
}
.row-category-one {
    display: grid;
    grid-template-columns: repeat(calc(var(--default-products-grid) - 1), 12fr);
    gap: var(--default-products-gap);
}
#column-left {
    width: var(--width-column-page);
    padding: 0;
}
#column-right {
    width: var(--width-column-page);
    padding: 0;
}
.contentboth {
    width: calc(100% - var(--width-column-page) - var(--width-column-page) - var(--gap-columns) - var(--gap-columns));
}
.contentone {
    width: calc(100% - var(--width-column-page) - var(--gap-columns));
}
.contentsingle {
    width: 100%;
}
.page-header {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    background: var(--module-background);
    border-radius: var(--radius);
    color: var(--color-title);
}
.row-pagination {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    padding: 8px;
    background: var(--color-background);
    border-radius: var(--radius);
    margin-top: 32px;
}
.pagination {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}
.category-description {
    padding: 8px;
    background: var(--module-background);
    border-radius: var(--radius);
    margin-top: 32px;
}
.icon-header-top {
    position: relative;
    padding: 0 10px;
    line-height: 40px;
    border-right: solid 1px var(--color-general-border);
    cursor: pointer;
}
.btn-header-account {
    display: block;
    line-height: 40px;
    text-align: right;
    padding-right: 20px;
}
/* END GENERAL */

/* START Breadcrumbs */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
}
.breadcrumb a {
    color: var(--color-black);
    font-family: 'Montserrat', 'Arial', 'Tahoma', sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin: 0;
}
.breadcrumb li:first-child a svg {
    height: 22px;
    vertical-align: -6px;
}
.breadcrumb li:first-child a svg path {
    stroke: var(--color-black);
    transition: 0.2s all;
}
.breadcrumb li:first-child a:hover svg path {
    stroke: var(--color-primary);
}
.breadcrumb a:hover {
    color: var(--color-primary);
}
.breadcrumb a:before {
    content: '/';
    margin-right: 5px;
    color: var(--color-black);
}
.breadcrumb li:first-child a:before {
    display: none;
}

/* END Breadcrumbs */

/* START Category Page */

.row-subcategory {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    
}
.row-subcategory::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    opacity: 0;
}
.subcategory {
    margin-bottom: 16px;
}
.box-category {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;

    flex: 0 0 auto;
    width: 144px;
}
.box-category .subcategory-image {
    position: relative;
    display: block;
    flex: 0 0 auto;

    transform:scale(1);
    transform: 0.2s all;
}
.box-category:hover .subcategory-image {
    transform:scale(0.9);
}
.box-category .subcategory-title {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;

    font-family: 'Montserrat', 'Arial', 'Tahoma', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}
.box-category:hover .subcategory-title {
    color: var(--color-primary);
}
.box-category .subcategory-title span {
    position: relative;
    display: block;
    flex: 0 0 auto;
    max-width: 100%;
}
.box-category img {
    border: 1px solid var(--color-grey);
    border-radius: 100%;
}
.rowpage {
    display: flex;
    gap: var(--gap-columns);
    padding-left: 6px;
}
.rowpage > * {
    flex-shrink: 0;
}
/* END Category Page */

/* START OWL-Carousel */
.owl-nav {
    position: absolute;
    top: calc(50% - 20px);
    width: 100%;
    margin-top: 0 !important;
}
.owl-prev {
    height: 40px;
    width: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    position: absolute;
    margin: 0 !important;
}
.owl-next {
    height: 40px;
    width: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    position: absolute;
    margin: 0 !important;
    right: 0;
}
.owl-nav button span {
    font-size: 40px;
    line-height: 40px;
}
/* END OWL-Carousel */


.product-sorts {
    position: relative;
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px 0;
    
}
.product-sorts::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    opacity: 0;
}
.product-sort {
    position: relative;
    display: block;
    flex: 0 0 auto;
    white-space: nowrap;

    font-size: 14px;
    font-weight: 300;
    font-family: 'Montserrat', 'Arial', 'Tahoma', sans-serif;
    color: #000000;
}
.product-sort:hover {
    color: var(--color-primary);
}

.product-sort.active {
    font-weight: 500;
    text-decoration: underline;
}


.custom-pagination {
    position: relative;
    margin-top: 20px;
}

.custom-pagination .btn {
    font-size: 18px;
    font-family: 'Montserrat', 'Arial', 'Tahoma', sans-serif;
    font-weight: 300;

    min-width: 41px;
    text-align: center;
}
.custom-pagination .btn + .btn {
    margin-left: 5px;
}
.custom-pagination .btn.btn-default {
    color: #444444;
    border-color: transparent;
    background: none;
}
.custom-pagination .btn.btn-primary {
    
    background: #0000000F;
    border-color: transparent;
    font-weight: 500;
    color: var(--color-black);;
}

.page-header-products {
    position: relative;
    display: block;
    margin-bottom: 15px;
}
.page-header-products .page-header {
    display: inline-block;
    margin-bottom: 0;
}
.page-header-result {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    color: #444444;
    font-weight: 300;
    font-size: 16px;
}

.itx-filter-box-item .total {
    float: right;

    background: #0000000F;
    border-radius: 2px;
    padding: 1px 2px;
    color: var(--color-black);
    min-width: 21px;
    text-align: center;
}

.btn:focus,
.form-control:focus {
    box-shadow: inherit;
}

.flex-mobile-buttons {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.btn.btn-display {
    position: relative;
    background: none;
    border: none;
    padding: 0;
    vertical-align: 0px;
    opacity: 1;
}

.btn.btn-display + .btn {
    margin-left: 15px;
}

.btn.btn-display.active {
    opacity: 0.7;
}