/*
    Created on : 15.01.2026, 19:38:21
    Author     : Alekhnovich Oleg (https://webplatinum.net)
*/

@font-face {
    font-family: PlayfairDisplay;
    src: url('fonts/PlayfairDisplay-Regular.ttf');
    font-display: swap;
}

@font-face {
    font-family: Roboto;
    src: url('fonts/Roboto-Regular.ttf');
    font-display: swap;
}

body {
    font-family: PlayfairDisplay, sans-serif;
}

.container-xxl {
    max-width: 1400px !important;
}

.font-roboto {
    font-family: Roboto, sans-serif;
}

#logoImg {
    width: 50px;
    height: 50px;
}

#logoText {
    font-size: 14px;
}

@media (min-width: 768px) {
    #logoImg {
        width: 60px;
        height: 60px;
    }

    #logoText {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    #logoImg {
        width: 70px;
        height: 70px;
    }

    #logoText {
        font-size: 18px;
    }
}

@media (min-width: 1400px) {
    #logoImg {
        width: 80px;
        height: 80px;
    }

    #logoText {
        font-size: 20px;
    }
}

/* HEADER TOP
-------------------------------------------------- */
.header-top {
    position: static;
}

.header-top.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDown 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* CATALOG NAVBAR
-------------------------------------------------- */
#catalogNavbar .nav-link {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    margin: 0px 3px 0px 3px;
    padding: 9px 21px 9px 21px;
}

#catalogNavbar .nav-link::before,
#catalogNavbar .nav-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #B11226;
    transform: scale(0);
    transition: transform 0.35s ease;
    z-index: -1;
}

#catalogNavbar .nav-link::before {
    transform-origin: right bottom;
}

#catalogNavbar .nav-link::after {
    transform-origin: left top;
}

#catalogNavbar .nav-link:hover::before,
#catalogNavbar .nav-link:hover::after {
    transform: scale(1);
}

#catalogNavbar .nav-link:hover {
    color: #fff;
}

#catalogNavbar .nav-link.active {
    background-color: #B11226;
    color: #fff;
}

/* CUSTOMIZE THE MAIN CAROUSEL
-------------------------------------------------- */
#mainCarousel .carousel {
    margin-bottom: 4rem;
}

#mainCarousel .carousel-item {
    aspect-ratio: 14 / 9;
}

#mainCarousel .carousel-bg-filter {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: black;
    background: rgba(0, 0, 0, 0.5);
}

#mainCarousel .carousel-h1 {
    font-size: 18pt;
}

#mainCarousel .carousel-p {
    font-size: 12pt;
    font-family: Roboto, sans-serif !important;
}

@media (min-width: 576px) {
    #mainCarousel .carousel-item {
        aspect-ratio: 16 / 9;
    }

    #mainCarousel .carousel-h1 {
        font-size: 24pt;
    }

    #mainCarousel .carousel-p {
        font-size: 14pt;
    }
}

@media (min-width: 768px) {
    #mainCarousel .carousel-item {
        aspect-ratio: 21 / 9;
    }

    #mainCarousel .carousel-h1 {
        font-size: 30pt;
    }

    #mainCarousel .carousel-p {
        font-size: 16pt;
    }
}

@media (min-width: 1200px) {
    #mainCarousel .carousel-item {
        aspect-ratio: 26 / 9;
    }

    #mainCarousel .carousel-h1 {
        font-size: 36pt;
    }

    #mainCarousel .carousel-p {
        font-size: 18pt;
    }
}

@media (min-width: 1400px) {
    #mainCarousel .carousel-h1 {
        font-size: 44pt;
    }
}

/* CAROUSEL FOR ADDITIONAL PRODUCT IMAGES
-------------------------------------------------- */
.additional-carousel-indicator {
    opacity: .5;
    transition: all 0.3s ease;
}

.additional-carousel-indicator:hover {
    opacity: 1;
    transition: all 0.3s ease;
}

.additional-carousel-indicator.active {
    opacity: 1;
    transition: all 0.3s ease;
}

/* CUSTOMIZE THE JUMBOTRON
-------------------------------------------------- */
.jumbotron-bg-filter {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #e9ecef;
    background: rgba(0, 0, 0, 0.4);
}

/* HORIZONTAL SCROLLING CARDS
-------------------------------------------------- */
.scroll-wrapper {
    position: relative;
    padding: 1rem 0;
}

.scroll-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 0 1rem;
}

.scroll-container::-webkit-scrollbar {
    height: 6px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background-color: #B11226;
    border-radius: 3px;
}

.scroll-container {
    scrollbar-width: thin;
    scrollbar-color: #B11226 transparent;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
    z-index: 10;
}

.scroll-btn.left {
    left: 0;
}

.scroll-btn.right {
    right: 0;
}

.scroll-container .col {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: center;
}

.scroll-container {
    scroll-snap-type: x mandatory;
}

@media (max-width: 576px) {
    .scroll-container .col {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .scroll-container .col {
        width: 200px;
    }
}

@media (max-width: 1200px) {
    .scroll-container .col {
        width: 240px;
    }
}

@media (max-width: 1400px) {
    .scroll-container .col {
        width: 280px;
    }
}

/* MAIN CONTENT
-------------------------------------------------- */
a {
    color: #B11226;
}

a:hover {
    color: #000;
}

.text-primary {
    color: #B11226 !important;
}

.bg-primary {
    background-color: #B11226 !important;
}

.bg-light {
    background-color: #f5f5f5 !important;
}

.bg-cream {
    background-color: #ede4d5 !important;
}

.bg-filter-main-categories {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* background: rgba(230, 230, 230, 0); */
    transition: all 0.3s ease;
}

.main-category-item:hover .bg-filter-main-categories {
    background: rgba(255, 0, 0, 0.2);
}

.bg-filter-main-categories::after {
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    font-size: 96px;
    font-weight: 100;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.main-category-item:hover .bg-filter-main-categories::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.main-category-item a {
    color: #000 !important;
    text-decoration: none;
}

.main-category-item:hover a {
    color: #B11226 !important;
}

.link-dark:hover {
    color: #B11226 !important;
}

.link-primary {
    color: #B11226 !important;
}

.link-primary:hover {
    color: #000 !important;
}

.section-title::after {
    content: "";
    display: block;
    width: 101px;
    height: 12px;
    margin: 10px auto 0;
    background: url("../images/all/divider.png") center no-repeat;
    background-size: contain;
}

.error404 {
    font-size: 5rem;
}

@media (min-width: 390px) {
    .error404 {
        font-size: 7rem;
    }
}

@media (min-width: 576px) {
    .error404 {
        font-size: 10rem;
    }
}

@media (min-width: 768px) {
    .error404 {
        font-size: 14rem;
    }
}

@media (min-width: 1200px) {
    .error404 {
        font-size: 14rem;
    }
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #B11226;
    --bs-btn-border-color: #B11226;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #000;
    --bs-btn-hover-border-color: #000;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #000;
    --bs-btn-active-border-color: #000;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #444;
    --bs-btn-disabled-border-color: #444;
}

.btn-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: #212529;
    --bs-btn-border-color: #212529;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #B11226;
    --bs-btn-hover-border-color: #B11226;
    --bs-btn-focus-shadow-rgb: 66, 70, 73;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #B11226;
    --bs-btn-active-border-color: #B11226;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #212529;
    --bs-btn-disabled-border-color: #212529;
}

.btn-light {
    --bs-btn-color: #000;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #B11226;
    --bs-btn-hover-border-color: #B11226;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #B11226;
    --bs-btn-active-border-color: #B11226;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #444;
    --bs-btn-disabled-border-color: #444;
}

.btn-outline-secondary {
    --bs-btn-color: #777;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: #dadada;
    --bs-btn-hover-color: #B11226;
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: #B11226;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #B11226;
    --bs-btn-active-bg: transparent;
    --bs-btn-active-border-color: #B11226;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #777;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #dadada;
}

.form-check-input:checked {
    background-color: #B11226;
    border-color: #B11226;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: transparent;
    color: #B11226;
}

.nav-pills .nav-link {
    color: #000;
}

.nav-pills .nav-link:hover {
    background-color: #B11226;
    color: #fff;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #B11226;
}

.form-control:focus {
    box-shadow: none;
}

.aspect-ratio-1x1 {
    aspect-ratio: 1 / 1;
    width: 100%;
    position: relative;
}

.aspect-ratio-4x3 {
    aspect-ratio: 4 / 3;
    width: 100%;
    position: relative;
}

.aspect-ratio-3x4 {
    aspect-ratio: 3 / 4;
    width: 100%;
    position: relative;
}

.aspect-ratio-16x9 {
    aspect-ratio: 16 / 9;
    width: 100%;
    position: relative;
}

.aspect-ratio-19x9 {
    aspect-ratio: 19 / 9;
    width: 100%;
    position: relative;
}

.product-card .card-body a {
    text-decoration: none;
    color: #000;
}

.product-card .card-body a:hover {
    color: #B11226;
}

.product-card-actions {
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-card-actions {
    opacity: 1;
}

.product-card:hover .aspect-ratio-1x1 {
    border-color: rgba(177, 18, 38, 0.7) !important;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #dddddd;
    text-decoration: underline;
}

input[type="number"] {
    --moz-appearance: textfield;

    &::-webkit-outer-spin-button,
    &::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    &::-ms-clear {
        display: none;
    }
}

/* HOME PAGE BANNERS (SMALL)
-------------------------------------------------- */
.banner-sm .text {
    font-size: 11pt;
}

.banner-sm .title {
    font-size: 13pt;
}

.banner-sm .btn {
    font-size: 10pt;
}

.banner-sm .col-6 img {
    transition: transform 0.6s ease;
}

.banner-sm:hover .col-6 img {
    transform: scale(1.1);
}

@media (min-width: 390px) {
    .banner-sm .text {
        font-size: 12pt;
    }

    .banner-sm .title {
        font-size: 14pt;
    }

    .banner-sm .btn {
        font-size: 11pt;
    }
}

@media (min-width: 576px) {
    .banner-sm .text {
        font-size: 14pt;
    }

    .banner-sm .title {
        font-size: 18pt;
    }

    .banner-sm .btn {
        font-size: 12pt;
    }
}

@media (min-width: 768px) {
    .banner-sm .title {
        font-size: 15pt;
    }
}

@media (min-width: 992px) {
    .banner-sm .title {
        font-size: 16pt;
    }
}

@media (min-width: 1200px) {
    .banner-sm .text {
        font-size: 16pt;
    }

    .banner-sm .title {
        font-size: 18pt;
    }
}

@media (min-width: 1400px) {
    .banner-sm .text {
        font-size: 18pt;
    }

    .banner-sm .title {
        font-size: 22pt;
    }
}

/* PAGINATION
-------------------------------------------------- */
.pagination {
    --bs-pagination-color: #fff;
    --bs-pagination-bg: #000;
    --bs-pagination-hover-color: #fff;
    --bs-pagination-hover-bg: #B11226;
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #B11226;
    --bs-pagination-active-border-color: #fff;
}

/* USER ACCOUNT
-------------------------------------------------- */
@media (min-width: 768px) {
    .sidebar .offcanvas-lg {
        position: sticky;
        top: 48px;
    }

    .navbar-search {
        display: block;
    }
}

.sidebar .nav-link {
    font-size: .875rem;
}

.sidebar .nav-link.active {
    font-weight: 500;
    color: #B11226 !important;
}

.sidebar-heading {
    font-size: .75rem;
}

/* 3th LEVEL SUBMENU (BOOTSTRAP 5.x)
-------------------------------------------------- */
.dropdown-submenu,
.dropdown-item {
    position: relative;
}

.dropdown-submenu>a.dropdown-toggle::after {
    display: inline-block !important;
    vertical-align: middle !important;
    content: "" !important;
    width: 0.5rem;
    height: 0.5rem;
    border: 1px solid currentColor;
    border-left: 0;
    border-top: 0;
    transform: rotate(-45deg);
    margin-bottom: 0.2rem;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
}

.dropdown-submenu>.dropdown-menu-end {
    top: 0;
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 0.1rem;
}

.dropdown-submenu>a.dropdown-toggle.dropdown-toggle-start::before {
    transform: rotate(135deg);
}

/* BUTTON UP
-------------------------------------------------- */
#btn-back-to-top {
    position: fixed;
    bottom: 11px;
    right: 11px;
    display: none;
}

/* CSS3 EFFECTS
-------------------------------------------------- */
.fade-effect {
    -webkit-transition: all 0.3s ease;
    ;
    -moz-transition: all 0.3s ease;
    ;
    -o-transition: all 0.3s ease;
    ;
    transition: all 0.3s ease;
    opacity: 1;
}

.fade-effect:hover {
    -webkit-transition: all 0.3s ease;
    ;
    -moz-transition: all 0.3s ease;
    ;
    -o-transition: all 0.3s ease;
    ;
    transition: all 0.3s ease;
    opacity: 0.7;
}

/* IMAGE SWITCHER
-------------------------------------------------- */
.image-switcher {
    display: grid;
    width: 100%;
    height: 100%;
}

.image-switcher img {
    grid-area: 1 / 1 / 2 / 2;
    transition: opacity 0.4s ease-in-out;
}

.image-switcher .main-image {
    opacity: 1;
}

.image-switcher .hover-image {
    opacity: 0;
}

.product-card:not(:has(.hover-image)) .image-switcher img {
    transition: none !important;
}

.product-card:hover:has(.hover-image) .image-switcher .main-image {
    opacity: 0;
}

.product-card:hover:has(.hover-image) .image-switcher .hover-image {
    opacity: 1;
}

/* SLICK SLIDER
-------------------------------------------------- */
.slick-dots li button:before {
    display: none;
}

.slick-dots li button {
    width: 5px !important;
    height: 5px !important;
    border-radius: 50% !important;
    background-color: #999 !important;
    opacity: 1 !important;
}

.slick-dots li.slick-active button {
    background-color: #B11226 !important;
}

/* MEDIA
-------------------------------------------------- */
/*
@media (min-width: 390px) {

}
@media (min-width: 576px) {

}
@media (min-width: 768px) {

}
@media (min-width: 992px) {

}
@media (min-width: 1200px) {

}
@media (min-width: 1400px) {

}
*/