/* -------------------------------------------------------- *\
 * STYLE GUID
\* -------------------------------------------------------- */

:root {
    /**
     * Typography
     */

    /* Font size */
    --fs-base: 62.5%;
    --fs-display-large: 2.8rem;
    --fs-display-medium: 3.2rem;
    --fs-display-small: 2rem;
    --fs-headline-small: 2.5rem;
    --fs-title-medium: 2.2rem;
    --fs-title-small: 1.4rem;
    --fs-body-large: 1.6rem;
    --fs-body-medium: 1.4rem;
    --fs-label-large: 1.4rem;
    --fs-label-medium: 1.2rem;
    --fs-label-small: 1.1rem;

    /**
     * Border Radius
     */
    --radius-4: 4px;
    --radius-8: 8px;
    --radius-12: 12px;
    --radius-circle: 50%;
    --radius-pill: 500px;

    /**
     * Fonts
     */
    --font-family: "Almarai", serif;
}

/* -------------------------------------------------------- *\
 * RESET
\* -------------------------------------------------------- */

ul {
    padding: 0 !important;
    margin: 0 !important;
}

li { list-style: none; }

a,
img,
span,
input,
button,
select,
textarea { display: block; }

a {
    font-family: var(--font-family);
    color: var(--text-color);
    text-decoration: none;
}

img { height: auto; }

input,
button,
select,
textarea {
    font-family: var(--font-family);
    background: none;
    border: none;
}

input,
select,
textarea {
    outline: none;
    width: 100%;
}

input::placeholder { color: var(--second-color); }

textarea { resize: none; }

textarea::placeholder { color: var(--second-color); }

textarea::-webkit-scrollbar { display: none; }

select { color: var(--second-color) !important; }

option { background-color: var(--second-bg-color); }

button { cursor: pointer; }

.table>:not(caption)>*>* {
    color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
    background-color: var(--bg-color);
    border-bottom-width: var(--border-color);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: var(--fs-base);
    font-weight: normal;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bolder;
    padding: 0;
    margin: 0;
}

p {
    line-height: 2rem;
    padding: 0;
    margin: 0;
}

/* -------------------------------------------------------- *\
 * DUBLICATE ITEMS
\* -------------------------------------------------------- */

.section { padding-block-end: 70px; }

.container {
    padding-inline: 16px;
    margin-inline: auto;
}

.img-cover {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.img-holder {
    overflow: hidden;
    background-color: var(--second-bg-color);
}

.title-section { margin-block-end: 30px; }

.overflow-table::-webkit-scrollbar { display: none; }

.title-card-blog {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: 0.4s;
}

.title-card-blog:hover {
    color: var(--main-hover-color);
    text-decoration: underline;
    transition: 0.4s;
}

/* --------------------------------------------------------- *\
 * TYPOGRAPHY
\* --------------------------------------------------------- */

.display-large {
    font-size: var(--fs-display-large);
    font-weight: 900;
}

.display-medium {
    font-size: var(--fs-display-medium);
    font-weight: 900;
}

.display-small {
    font-size: var(--fs-display-small);
    font-weight: 900;
}

.headline-small {
    font-size: var(--fs-headline-small);
    font-weight: 800;
}

.title-medium {
    font-size: var(--fs-title-medium);
    font-weight: 700;
}

.title-small {
    font-size: var(--fs-title-small);
    font-weight: 700;
}

.body-large {
    font-size: var(--fs-body-large);
    font-weight: 600;
}

.body-medium {
    font-size: var(--fs-body-medium);
    font-weight: 600;
}

.label-large {
    font-size: var(--fs-label-large);
    font-weight: 600;
}

.label-medium {
    font-size: var(--fs-label-medium);
    font-weight: 600;
}

.label-small {
    font-size: var(--fs-label-small);
    font-weight: 600;
}

/* --------------------------------------------------------- *\
 * UTILITIES
\* --------------------------------------------------------- */

/**
 * bg colors
 */
.bg-bg { background-color: var(--bg-color); }

.bg-second-bg { background-color: var(--second-bg-color); }

.bg-text { background-color: var(--text-color); }

.bg-main { background-color: var(--main-color); }

.bg-other { background-color: var(--other-color); }

.bg-main-hover { background-color: var(--main-hover-color); }

.bg-other-hover { background-color: var(--other-hover-color); }

.bg-second { background-color: var(--second-color); }

.bg-border { background-color: var(--border-color); }

/**
 * text colors
 */
.text-bg { color: var(--bg-color); }

.text-second-bg { color: var(--second-bg-color); }

.text-text { color: var(--text-color); }

.text-main { color: var(--main-color); }

.text-other { color: var(--other-color); }

.text-main-hover { color: var(--main-hover-color); }

.text-other-hover { color: var(--other-hover-color); }

.text-second { color: var(--second-color); }

.text-border { color: var(--border-color); }

/* -------------------------------------------------------- *\
 * COMPONENTS
\* -------------------------------------------------------- */

/**
 * TEXT FEILD
 */
.form-label {
    font-size: 1rem;
    font-weight: 500;
}

.form-check-label {
    font-size: 1rem;
    font-weight: 500;
}

.form-control {
    border: 2px solid var(--border-color) !important;
    box-shadow: none !important;
}

.form-control::placeholder { color: var(--second-color); }

.form-select {
    border: 2px solid var(--border-color) !important;
    box-shadow: none !important;
}

.form-select::placeholder { color: var(--second-color); }

.form-text {
    font-size: 1rem;
    font-weight: 500;
}

.input-group .btn-count {
    border: 2px solid var(--border-color);
    padding: 10px;
    min-height: 54px;
    min-width: 40px;
    max-height: 54px;
    max-width: 40px;
    transition: 0.4s;
}

.input-group .btn-count:hover {
    color: var(--text-color);
    transition: 0.4s;
}

.input-group input {
    border-block: 2px solid var(--border-color);
    min-height: 54px;
    min-width: 54px;
    max-height: 54px;
    max-width: 54px;
}

/**
 * HEADERS
 */
.header .header-top {
    height: 60px;
    border-bottom: 2px solid var(--border-color);
}

.header .header-top .social-list {
    padding-left: 13px !important;
    border-left: 2px solid var(--border-color);
    margin-left: 13px !important;
}

.header .header-top .social-list .social-link {
    font-size: 13px;
    width: 26px;
    height: 26px;
    border-radius: var(--radius-pill);
    transition: 0.4s;
}

.header .header-top .social-list .social-link:hover {
    background-color: var(--main-color);
    color: var(--bg-color);
    transition: 0.4s;
}

.header .header-top .header-top-link { transition: 0.4s; }

.header .header-top .header-top-link:hover {
    color: var(--text-color);
    transition: 0.4s;
}

.header .header-top .dropdown .dropdown-lang { font-size: 0.8rem; }

.header .header-top .dropdown .dropdown-lang i { font-size: 0.7rem; }

.header .header-top .dropdown .dropdown-menu {
    border: 2px solid var(--border-color);
    border-radius: 0;
    padding-block: 5px !important;
    width: 65px !important;
    min-width: unset;
    max-width: unset;
}

.header .header-top .dropdown .dropdown-menu li .dropdown-item {
    padding: 5.5px 7px;
    transition: 0.4s;
}

.header .header-top .dropdown .dropdown-menu li .dropdown-item:hover {
    background-color: var(--second-bg-color);
    transition: 0.4s;
}

.header .header-center { padding-block: 27px; }

.header .header-center .logo .img-logo {
    min-width: 111px;
    max-width: 111px;
    min-height: 44px;
    max-height: 44px;
}

.header .header-center .card-phone .img-phone {
    width: 35px;
    height: 35px;
    transform: rotateY(190deg);
}

.header .header-center .card-phone h2 { font-weight: 600; }

.header .header-center .header-center-icon { font-size: 1.6rem; }

.header .header-bottom {
    background-color: var(--main-color);
    height: 70px;
}

.header .header-bottom .header-bottom-list .header-bottom-link {
    color: var(--bg-color);
    transition: 0.4s;
}

.header .header-bottom .header-bottom-list .header-bottom-link.active { color: var(--other-hover-color); }

.header .header-bottom .header-bottom-list .header-bottom-link:hover {
    color: var(--other-hover-color);
    transition: 0.4s;
}

.header .header-bottom .header-bottom-list .header-bottom-link i { font-size: 0.8rem; }

.header .header-bottom .header-bottom-list .dropdown-menu {
    display: block;
    border-radius: var(--radius-4);
    background-color: var(--bg-color) !important;
    border: none;
    box-shadow: 0 8px 8px rgb(0, 0, 0, 0.1);
    padding-block: 5px !important;
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    width: 200px;
    transition: 0.4s;
}

.header .header-bottom .header-bottom-list li:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(10px);
    visibility: visible;
    transition: 0.4s;
}

.header .header-bottom .header-bottom-list .dropdown-menu .dropdown-item .dropdown-link {
    background-color: var(--bg-color) !important;
    padding: 8px 18px !important;
    color: var(--second-color);
    text-align: right;
    font-size: 1rem;
    transition: 0.4s !important;
}

.header .header-bottom .header-bottom-list .dropdown-menu .dropdown-item .dropdown-link:hover {
    background-color: var(--second-bg-color) !important;
    padding: 8px 18px !important;
    color: var(--text-color);
    text-align: right;
    transition: 0.4s !important;
}

.header .header-bottom .header-bottom-list .megamenu {
    display: block;
    border-radius: var(--radius-8);
    background-color: var(--bg-color) !important;
    border: none;
    box-shadow: 0 8px 8px rgb(0, 0, 0, 0.1);
    padding: 20px !important;
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    width: fit-content;
    text-align: right;
    transition: 0.4s;
}

.header .header-bottom .header-bottom-list li:hover .megamenu {
    opacity: 1;
    transform: translateY(10px);
    visibility: visible;
    transition: 0.4s;
}

.header .header-bottom .header-bottom-list .megamenu .megamenu-link {
    color: var(--second-color);
    font-size: 1rem;
    width: 190px;
    transition: 0.4s !important;
}

.header .header-bottom .header-bottom-list .megamenu .megamenu-link:hover {
    color: var(--text-color);
    transition: 0.4s !important;
}

.header .header-bottom .header-bottom-list .megamenu .megamenu-img {
    min-width: 190px;
    max-width: 190px;
    border-radius: var(--radius-8);
}

.header-3 .header-top { padding-block: 25px; }

.header-3 .header-top .img-logo {
    min-width: 85px;
    max-width: 85px;
    min-height: 35px;
    max-height: 35px;
}

.header-3 .header-top .from-header-3 {
    width: 100%;
    max-width: 800px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-4);
    padding-inline: 50px 12px;
    height: 45px;
}

.header-3 .header-top .from-header-3 .icon-search {
    right: 0;
    width: 50px;
    height: 45px;
    transition: 0.4s;
}

.header-3 .header-top .from-header-3 .icon-search:hover {
    color: var(--main-hover-color);
    transition: 0.4s;
}

.header-3 .header-top .dropdown .dropdown-lang {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-4);
    padding: 10px 20px;
    height: 45px;
}

.header-3 .header-top .dropdown .dropdown-lang i { font-size: 0.8rem; }

.header-3 .header-top .dropdown .dropdown-menu {
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.2);
    border-radius: var(--radius-8);
    padding: 10px !important;
    width: 110px !important;
    min-width: unset;
    max-width: unset;
    border: none;
}

.header-3 .header-top .dropdown .dropdown-menu .dropdown-item {
    border-radius: var(--radius-4);
    padding-block: 5px;
    width: 100%;
    transition: 0.4s;
}

.header-3 .header-top .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: var(--main-hover-color);
    color: var(--bg-color);
    transition: 0.4s;
}

.header-3 .header-bottom .container .header-list .header-link i { font-size: 0.8rem; }

.header-3 .header-bottom .container .header-list .dropdown-menu {
    display: block;
    border-radius: var(--radius-4);
    background-color: var(--bg-color) !important;
    border: none;
    box-shadow: 0 8px 8px rgb(0, 0, 0, 0.1);
    padding-block: 5px !important;
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    width: 200px;
    transition: 0.4s;
}

.header-3 .header-bottom .container .header-list li:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(10px);
    visibility: visible;
    transition: 0.4s;
}

.header-3 .header-bottom .container .header-list .dropdown-menu .dropdown-item .dropdown-link {
    background-color: var(--bg-color) !important;
    padding: 8px 18px !important;
    color: var(--second-color);
    text-align: right;
    font-size: 1rem;
    transition: 0.4s !important;
}

.header-3 .header-bottom .container .header-list .dropdown-menu .dropdown-item .dropdown-link:hover {
    background-color: var(--second-bg-color) !important;
    padding: 8px 18px !important;
    color: var(--text-color);
    text-align: right;
    transition: 0.4s !important;
}

.header-3 .header-bottom .container .header-list .megamenu {
    display: block;
    border-radius: var(--radius-8);
    background-color: var(--bg-color) !important;
    border: none;
    box-shadow: 0 8px 8px rgb(0, 0, 0, 0.1);
    padding: 20px !important;
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    width: max-content;
    text-align: right;
    transition: 0.4s;
}

.header-3 .header-bottom .container .header-list li:hover .megamenu {
    opacity: 1;
    transform: translateY(10px);
    visibility: visible;
    transition: 0.4s;
}

.header-3 .header-bottom .container .header-list .megamenu .megamenu-link {
    color: var(--second-color);
    font-size: 1rem;
    width: 190px;
    transition: 0.4s !important;
}

.header-3 .header-bottom .container .header-list .megamenu .megamenu-link:hover {
    color: var(--text-color);
    transition: 0.4s !important;
}

.header-3 .header-bottom .container .header-list .megamenu .megamenu-img {
    min-width: 190px;
    max-width: 190px;
    border-radius: var(--radius-8);
}

.header-3 .header-bottom {
    background-color: var(--second-bg-color);
    height: 65px;
}

.header-3 .header-bottom .container .btn-header-bottom {
    background-color: var(--main-hover-color);
    border-radius: var(--radius-4);
    color: var(--bg-color);
    padding: 8px 20px;
}

.header-3 .header-bottom .container .icon-header-bottom {
    height: 45px;
    width: 45px;
    z-index: 2;
    transition: 0.4s;
}

.header-3 .header-bottom .container .icon-header-bottom:hover {
    color: var(--bg-color);
    transition: 0.4s;
}

.header-3 .header-bottom .container .icon-header-bottom::before {
    content: "";
    background-color: var(--main-hover-color);
    border-radius: var(--radius-pill);
    position: absolute;
    height: 0;
    width: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: 0.4s;
}

.header-3 .header-bottom .container .icon-header-bottom:hover::before {
    height: 45px;
    width: 45px;
    transition: 0.4s;
}

.header-3 .header-bottom .container .icon-header-bottom span {
    background-color: var(--main-hover-color) !important;
    border: 2px solid var(--bg-color);
    top: 10px !important;
    right: -18px !important;
    min-width: 24px;
    font-size: 0.8rem;
}

/**
 * NAVBARS
 */
.navbar {
    background-color: var(--main-color);
    transform: translateY(-100%);
    height: 70px;
    transition: 0.6s;
}

.navbar.active {
    transform: translateY(0%);
    transition: 0.6s;
}

.navbar .container .logo .img-logo {
    min-width: 111px;
    max-width: 111px;
    min-height: 44px;
    max-height: 44px;
}

.navbar .container .navbar-icon {
    color: var(--bg-color);
    font-size: 1.6rem;
}

.navbar .container .navbar-list .navbar-link {
    color: var(--bg-color);
    transition: 0.4s;
}

.navbar .container .navbar-list .navbar-link.active { color: var(--other-hover-color); }

.navbar .container .navbar-list .navbar-link:hover {
    color: var(--other-hover-color);
    transition: 0.4s;
}

.navbar .container .navbar-list .navbar-link i { font-size: 0.8rem; }

.navbar .container .navbar-list .dropdown-menu {
    display: block;
    border-radius: var(--radius-4);
    background-color: var(--bg-color) !important;
    border: none;
    box-shadow: 0 8px 8px rgb(0, 0, 0, 0.1);
    padding-block: 5px !important;
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    width: 200px;
    transition: 0.4s;
}

.navbar .container .navbar-list li:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(10px);
    visibility: visible;
    transition: 0.4s;
}

.navbar .container .navbar-list .dropdown-menu .dropdown-item .dropdown-link {
    background-color: var(--bg-color) !important;
    padding: 8px 18px !important;
    color: var(--second-color);
    text-align: right;
    font-size: 1rem;
    transition: 0.4s !important;
}

.navbar .container .navbar-list .dropdown-menu .dropdown-item .dropdown-link:hover {
    background-color: var(--second-bg-color) !important;
    padding: 8px 18px !important;
    color: var(--text-color);
    text-align: right;
    transition: 0.4s !important;
}

.navbar .container .navbar-list .megamenu {
    display: block;
    border-radius: var(--radius-8);
    background-color: var(--bg-color) !important;
    border: none;
    box-shadow: 0 8px 8px rgb(0, 0, 0, 0.1);
    padding: 20px !important;
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    width: max-content;
    text-align: right;
    transition: 0.4s;
}

.navbar .container .navbar-list li:hover .megamenu {
    opacity: 1;
    transform: translateY(10px);
    visibility: visible;
    transition: 0.4s;
}

.navbar .container .navbar-list .megamenu .megamenu-link {
    color: var(--second-color);
    font-size: 1rem;
    width: 190px;
    transition: 0.4s !important;
}

.navbar .container .navbar-list .megamenu .megamenu-link:hover {
    color: var(--text-color);
    transition: 0.4s !important;
}

.navbar .container .navbar-list .megamenu .megamenu-img {
    min-width: 190px;
    max-width: 190px;
    border-radius: var(--radius-8);
}

/**
 * ASIDES
 */
.aside {
    max-width: 300px;
    padding: 50px 20px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.aside .aside-link {
    color: var(--second-color);
    transition: 0.4s;
}

.aside .aside-link.active { color: var(--text-color); }

.aside .aside-link:hover {
    color: var(--text-color);
    transition: 0.4s;
}

.aside-shop {
    max-width: 300px;
    padding: 20px;
}

.aside-shop .close-aside {
    font-size: 1.8rem;
    color: var(--bg-color);
    right: -50px;
}

.aside-shop .card-aside {
    padding-block: 20px;
    border-bottom: 2px solid var(--border-color);
}

.aside-shop .card-aside .btn-delete {
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    top: 10px;
    right: -10px;
}

.aside-shop .card-aside .img-card {
    border-radius: var(--radius-4);
    width: 78px;
    height: 78px;
}

.aside-shop .btn { width: 100%; }

.aside-slider {
    padding-block: 50px;
    max-width: 250px;
}

.aside-slider .close-aside {
    font-size: 1.8rem;
    top: 16px;
    left: -50px;
}

.aside-slider .aside-card {
    border-bottom: 2px solid var(--border-color);
    color: var(--second-color);
    padding: 13px 30px;
    font-size: 1.8rem;
    transition: 0.4s;
}

.aside-slider .aside-card:hover {
    color: var(--text-color);
    transition: 0.4s;
}

.aside-slider .aside-card .img-card {
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
}

.aside-slider .aside-card i {
    color: var(--main-hover-color);
    min-width: 36px;
    max-height: 36px;
}

/**
 * CATEGORYS
 */
.card-category { background-color: var(--second-bg-color); }

.card-category .img-card {
    max-width: 150px;
    max-height: 150px;
}

.card-category .img-card-best-seller {
    max-width: 150px;
    max-height: 280px;
}

.card-category h2 {
    line-height: 2.3rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-category .animation-card-x {
    background-color: var(--text-color);
    width: 100%;
    height: 1.5px;
}

.card-category .animation-card-y {
    background-color: var(--text-color);
    width: 1.5px;
    height: 100%;
}

.card-category .animation-x-1 {
    width: 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.6s;
}

.card-category:hover .animation-x-1 {
    width: 100%;
    transition: 0.6s;
}

.card-category .animation-x-2 {
    width: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.6s;
}

.card-category:hover .animation-x-2 {
    width: 100%;
    transition: 0.6s;
}

.card-category .animation-y-1 {
    height: 0;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: 0.6s;
}

.card-category:hover .animation-y-1 {
    height: 100%;
    transition: 0.6s;
}

.card-category .animation-y-2 {
    height: 0;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: 0.6s;
}

.card-category:hover .animation-y-2 {
    height: 100%;
    transition: 0.6s;
}

.card-category-2 {
    border: 1px solid var(--border-color);
    background-color: var(--second-bg-color);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 250px;
    max-height: 250px;
    transition: 0.4s;
}

.card-category-2:hover {
    filter: brightness(80%);
    transition: 0.4s;
}

.card-category-2 .card-position {
    background-color: var(--text-color);
    color: var(--bg-color);
    width: max-content;
    padding: 10px 25px;
    max-width: 250px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-category-3 { border: 1px solid var(--border-color); }

.card-category-3 .img-card {
    filter: brightness(80%);
    min-height: 200px;
    max-height: 200px;
    transition: 0.4s;
}

.card-category-3:hover .img-card {
    filter: brightness(50%);
    transition: 0.4s;
}

.card-category-4 {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-4);
    padding: 20px;
    height: 152px;
    min-width: 164px;
    transition: 0.4s;
}

.card-category-4:hover {
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.2);
    transition: 0.4s;
}

.card-category-4 .img-card {
    min-width: 64px;
    min-height: 64px;
    max-width: 64px;
    max-height: 64px;
    margin-inline: auto;
}

.card-category-4 h3 {
    text-wrap: nowrap;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

/**
 * BTNS
 */
.btn-one {
    background-color: var(--main-color) !important;
    border-radius: var(--radius-4);
    color: var(--bg-color) !important;
    padding: 13px 25px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.4s;
}

.btn-one:hover {
    background-color: var(--other-color) !important;
    transition: 0.4s;
}

.btn-two {
    background-color: var(--second-bg-color) !important;
    border-radius: var(--radius-4);
    color: var(--text-color) !important;
    padding: 13px 25px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.4s;
}

.btn-two:hover {
    background-color: var(--second-color) !important;
    color: var(--bg-color) !important;
    transition: 0.4s;
}

.btn-three {
    background-color: var(--second-color);
    color: var(--bg-color);
    border-radius: var(--radius-4);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
}

.btn-three:hover {
    background-color: var(--second-bg-color);
    color: var(--text-color);
    transition: 0.4s;
}

.btn-card-category {
    background-color: var(--main-color) !important;
    color: var(--bg-color) !important;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-wrap: nowrap;
    width: max-content;
    transition: 0.4s;
}

.arrow {
    background-color: var(--second-bg-color);
    border-radius: var(--radius-pill);
    color: var(--second-color);
    width: 50px;
    height: 50px;
    transition: 0.4s;
}

.arrow:hover {
    background-color: var(--main-hover-color);
    color: var(--bg-color);
    transition: 0.4s;
}

.btn-link {
    color: var(--main-hover-color) !important;
    transition: 0.4s;
}

.btn-link:hover {
    color: var(--other-hover-color) !important;
    transition: 0.4s;
}

/**
 * CARDS
 */
.card-primary .figure {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-primary .img-card {
    min-height: 250px;
    max-height: 250px;
    transition: 0.4s;
}

.card-primary:hover .img-card {
    transform: scale(1.2);
    transition: 0.4s;
}

.card-primary .figure .off {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 10px;
    top: 10px;
    right: 10px;
}

.card-primary .card-body .title-card {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-primary .card-body i {
    font-size: 0.9rem;
    color: #ffb700;
}

.card-primary .btn-card {
    background-color: var(--main-color) !important;
    color: var(--bg-color) !important;
    padding: 10px 25px;
    width: 100%;
    transition: 0.4s;
}

.card-primary .btn-card:hover {
    background-color: var(--other-color) !important;
    transition: 0.4s;
}

.card-message .img-card {
    border-radius: var(--radius-pill);
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
}

.card-message .message {
    background-color: var(--second-bg-color);
    border-radius: var(--radius-8);
    padding: 20px;
    width: 100%;
}

.card-dashboard {
    border: 2px solid var(--border-color);
    padding: 35px 30px;
}

.card-dashboard i { transition: 0.4s; }

.card-dashboard:hover i {
    transform: scale(1.2);
    transition: 0.4s;
}

.card-table .img-table {
    border-radius: var(--radius-4);
    min-width: 90px;
    min-height: 90px;
    max-width: 90px;
    max-height: 90px;
}

.card-table .delete-order {
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    top: -5px;
    right: -5px;
}

.card-table td {
    min-height: 100px !important;
    max-height: 100px !important;
    vertical-align: middle;
    padding: 10px 15px;
    min-width: 110px;
}

.card-table h2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}

.card-blog .img-blog {
    min-height: 240px;
    max-height: 240px;
}

.card-blog .description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-blog-aside img {
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
}

/**
 * SEARCHS
 */
.search-header {
    border-radius: var(--radius-pill);
    overflow: hidden;
    width: max-content;
}

.search-header .input-search {
    padding: 10px 20px;
    height: 45px;
    width: 400px;
}

.search-header .select-form {
    padding: 0 17px 0 10px;
    height: 45px;
    max-width: 140px;
}

.search-header .btn-search {
    height: 45px;
    min-width: 50px;
    max-width: 50px;
}

.dropdown-menu-search::before {
    content: "";
    background-color: var(--second-color);
    transform: rotate(43deg);
    height: 20px;
    width: 20px;
    position: absolute;
    top: 5px;
    left: 15px;
    z-index: -1;
}

.search-position {
    margin-top: 10px;
    border: 3px solid var(--second-color);
    border-radius: var(--radius-pill);
    width: max-content;
    height: 45px;
}

.search-position .input-search {
    border-radius: 0 1000px 1000px 0;
    padding: 10px 20px;
    height: 45px;
    width: 300px;
}

.search-position .select-form {
    padding: 0 17px 0 10px;
    height: 45px;
    max-width: 140px;
}

.search-position .btn-search {
    height: 45px;
    min-width: 50px;
    max-width: 50px;
}

/**
 * FILTERS
 */
.filter { max-width: 300px; }

.filter .accordion-item {
    border-bottom: 2px solid var(--border-color);
    padding: 20px;
}

.filter .accordion-item .collapse { padding-block-start: 15px; }

.filter .box-color {
    border: 1px solid var(--border-color);
    cursor: pointer;
    height: 28px;
    width: 28px;
}

.filter .color-1 { background-color: black; }

.filter .color-2 { background-color: rgb(0, 183, 255); }

.filter .color-3 { background-color: rgb(255, 255, 34); }

.filter .color-4 { background-color: rgb(66, 255, 66); }

.filter .color-5 { background-color: rgb(255, 34, 34); }

.filter .box-sizes {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-4);
    cursor: pointer;
    height: 25px;
    width: 35px;
    transition: 0.4s;
}

.filter .box-sizes.active {
    border: 1px solid var(--main-hover-color);
    background-color: var(--main-hover-color);
    color: var(--bg-color);
}

.filter .box-sizes:hover {
    border: 1px solid var(--main-hover-color);
    background-color: var(--main-hover-color);
    color: var(--bg-color);
    transition: 0.4s;
}

.filter .box-sizes p {
    font-size: 0.8rem;
    font-weight: 400;
}

/**
 * POP UP
 */
.pop-up .modal-dialog .modal-content { border-radius: var(--radius-12); }

.pop-up .modal-dialog .modal-content .carousel .carousel-inner .carousel-item .img-pop-up {
    min-height: 500px;
    max-height: 650px;
}

.pop-up .modal-dialog .modal-content .carousel .carousel-indicators button {
    opacity: 1;
    border: 3px solid var(--border-color);
    background-color: transparent;
    border-radius: 100%;
    height: 16px;
    width: 16px;
    position: relative;
}

.pop-up .modal-dialog .modal-content .carousel .carousel-indicators button.active { border: 3px solid var(--other-hover-color); }

.pop-up .modal-dialog .modal-content .carousel .carousel-indicators button::before {
    content: "";
    background-color: var(--border-color);
    position: absolute;
    height: 8px;
    width: 8px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--radius-pill);
}

.pop-up .modal-dialog .modal-content .carousel .carousel-indicators button.active::before { background-color: var(--other-hover-color); }

/**
 * FOOTERS
 */
.footer .footer-top {
    background-color: var(--main-color);
    padding-block: 20px;
    color: var(--bg-color);
}

.footer .footer-top .social-link {
    font-size: 1.8rem;
    color: var(--bg-color);
    transition: 0.4s;
}

.footer .footer-top .social-link:hover {
    color: var(--other-hover-color);
    transition: 0.4s;
}

.footer .footer-center {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding-block: 65px 25px;
}

.footer .contact { transition: 0.4s; }

.footer .contact:hover {
    color: var(--main-hover-color);
    transition: 0.4s;
}

.footer .footer-center .footer-link {
    color: var(--second-color);
    transition: 0.4s;
}

.footer .footer-center .footer-link:hover {
    color: var(--main-hover-color);
    transition: 0.4s;
}

.footer .footer-center .tagcloud a {
    font-size: 0.8rem;
    font-weight: 400;
    padding: 5px 8px;
    border: 2px solid #292c30;
    color: var(--second-color);
    transition: 0.4s;
}

.footer .footer-center .tagcloud a:hover {
    border: 2px solid var(--bg-color);
    color: var(--bg-color);
    transition: 0.4s;
}

.footer .footer-center .input-footer {
    background-color: #292c30;
    color: var(--bg-color);
    padding: 13px 24px;
}

.footer .footer-bottom {
    border-top: 2px solid #292c30;
    background-color: var(--text-color);
    color: var(--bg-color);
    padding-block: 27px;
}

.footer .footer-bottom .banner-img-footer {
    background-color: #292c30;
    width: 56px;
    height: 32px;
}

/**
 * BACK TOP BTNS
 */
.back-top-btn {
    color: var(--main-hover-color);
    left: 20px;
    bottom: -100px;
    transition: 0.6s;
}

.back-top-btn.active {
    bottom: 20px;
    transition: 0.6s;
}

.back-top-btn:hover {
    color: var(--other-hover-color);
    transition: 0.6s;
}

/**
 * BANNER
 */
.banner {
    border-bottom: 2px solid var(--border-color);
    background-color: var(--second-bg-color);
    padding-block: 65px !important;
    margin-block-end: 50px;
}

/* -------------------------------------------------------- *\
 * HOME
\* -------------------------------------------------------- */

.home { width: 100%; }

.home .home-content {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.home .carousel-inner .home-content .card-text {
    bottom: 30px;
    left: 16px;
    right: 16px;
}

.areas {
    background-color: var(--main-color);
    color: var(--bg-color);
    padding-block: 30px;
    margin-block-end: 40px;
}

.home .carousel-control {
    border-radius: var(--radius-pill);
    height: 70px;
    width: 70px;
    background-color: rgb(0, 0, 0, 0.5);
    color: var(--bg-color);
    transform: translateY(-50%);
    top: 50%;
    margin-inline: 20px;
    transform: scale(0.0);
    transition: 0.6s;
}

.home:hover .carousel-control {
    transform: scale(1.0);
    transition: 0.6s;
}

/* -------------------------------------------------------- *\
 * CATEGORY
\* -------------------------------------------------------- */

.category .container .carousel-inner::-webkit-scrollbar { display: none; }

.category .container .carousel-inner .card-category-3 { flex: 0 0 calc(100% / 1); }

/* -------------------------------------------------------- *\
 * LATEST PRODUCTS
\* -------------------------------------------------------- */

.latest-products .container .carousel-inner::-webkit-scrollbar { display: none; }

.latest-products .container .carousel-inner .card-primary { flex: 0 0 calc(100% / 1); }

/* -------------------------------------------------------- *\
 * BEST SELLER
\* -------------------------------------------------------- */

.best-seller .container .carousel-inner::-webkit-scrollbar { display: none; }

.best-seller .container .carousel-inner .card-primary { flex: 0 0 calc(100% / 1); }








/* ******************************************************** *\
 * PAGE REGISTER AND LOGIN AND FORGET PASSWORD
\* ******************************************************** */

/**
 * GO TO PAGE REGISTER AND LOGIN AND FORGET PASSWORD
 */








/* -------------------------------------------------------- *\
 * REGISTER AND LOGIN AND FORGET PASSWORD
\* -------------------------------------------------------- */

.register-and-login .container .form { max-width: 500px; }

.forget-password .container .form { max-width: 600px; }








/* ******************************************************** *\
 * PAGE INDEX 2
\* ******************************************************** */

/**
 * GO TO PAGE INDEX 2
 */








/* -------------------------------------------------------- *\
 * HOME 2
\* -------------------------------------------------------- */

.home-2 { margin-block: 20px; }

.home-2 .container .carousel .carousel-inner .carousel-item {
    background-position: cneter center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}

.home-2 .container .carousel .carousel-inner .carousel-item .body {
    right: 16px;
    transform: translateY(-50%);
}

.home-2 .container .carousel .carousel-inner .carousel-item .body h2 { font-weight: 900; }

.home-2 .container .carousel .carousel-control {
    opacity: 0;
    width: max-content;
    color: var(--text-color);
    transition: 0.4s;
}

.home-2 .container .carousel:hover .carousel-control {
    opacity: 1;
    transition: 0.4s;
}

.home-2 .container .carousel .carousel-control-prev { left: -7px; }

.home-2 .container .carousel .carousel-control-next { right: -7px; }








/* ******************************************************** *\
 * PAGE INDEX 3
\* ******************************************************** */

/**
 * GO TO PAGE INDEX 3
 */








/* -------------------------------------------------------- *\
 * HOME 3
\* -------------------------------------------------------- */

.home-3 { margin-block: 20px; }

.home-3 .container .carousel .carousel-inner { height: 100%; }

.home-3 .container .carousel .carousel-inner .carousel-item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--bg-color);
    min-height: 400px;
    height: 100%;
}

.home-3 .container .carousel .carousel-inner .carousel-item .body {
    right: 16px;
    transform: translateY(-50%);
}

.home-3 .container .carousel .carousel-inner .carousel-item .body .price { font-weight: 900; }

.home-3 .container .carousel .carousel-indicators {
    right: auto;
    margin-left: 30px;
    margin-bottom: 30px;
}

.home-3 .container .carousel .carousel-indicators button {
    opacity: 1;
    border: 3px solid var(--bg-color);
    background-color: transparent;
    border-radius: 100%;
    height: 16px;
    width: 16px;
    position: relative;
}

.home-3 .container .carousel .carousel-indicators button.active { border: 3px solid var(--other-hover-color); }

.home-3 .container .carousel .carousel-indicators button::before {
    content: "";
    background-color: var(--bg-color);
    position: absolute;
    height: 8px;
    width: 8px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--radius-pill);
}

.home-3 .container .carousel .carousel-indicators button.active::before { background-color: var(--other-hover-color); }

.home-3 .container img { border: 1px solid var(--border-color); }








/* ******************************************************** *\
 * PAGE INDEX 4
\* ******************************************************** */

/**
 * GO TO PAGE INDEX 4
 */








/* -------------------------------------------------------- *\
 * HOME 4
\* -------------------------------------------------------- */

.home-4 { margin-block-end: 20px; }

.home-4 .container .carousel .carousel-inner .carousel-item {
    background-color: var(--second-bg-color);
    border-radius: var(--radius-8);
    margin-block-start: 20px;
    height: 100%;
    padding: 30px 20px;
}

.home-4 .container .carousel .carousel-inner .carousel-item img {
    max-width: 300px;
    min-height: 300px;
    max-height: 365px;
}

.home-4 .container .carousel .carousel-indicators button {
    background-color: var(--bg-color);
    height: 3.5px;
}

.home-4 .container .carousel .carousel-indicators button.active { background-color: var(--main-hover-color); }








/* ******************************************************** *\
 * PAGE CATEGORY
\* ******************************************************** */

/**
 * GO TO PAGE CATEGORY
 */








/* -------------------------------------------------------- *\
 * BANNER 2
\* -------------------------------------------------------- */

.banner-2 { padding-block-end: 45px; }

.banner-2 .background-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(100% - 30px);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 30px;
    z-index: -1;
    transform: rotateY(180deg);
}

.banner-2 .banner-content { padding-block: 70px; }

/* -------------------------------------------------------- *\
 * CATEGORY ROW
\* -------------------------------------------------------- */

.category-row .container .btn-three {
    bottom: 10px;
    right: 20px;
}

.category-row .container .form-select { max-width: 180px; }

.category-row .container .pagination .page-item.disabled .page-link {
    background-color: var(--second-bg-color) !important;
    color: var(--second-color) !important;
}

.category-row .container .pagination .page-item .previous {
    width: max-content !important;
    padding-inline: 20px;
}

.category-row .container .pagination .page-item .page-link {
    background-color: var(--bg-color) !important;
    border-color: var(--border-color) !important;
    color: var(--second-color) !important;
    height: 37px;
    width: 37px;
    transition: 0.4s;
}

.category-row .container .pagination .page-item .page-link.active {
    background-color: var(--main-hover-color) !important;
    border-color: var(--main-hover-color) !important;
    color: var(--bg-color) !important;
}

.category-row .container .pagination .page-item .page-link:hover {
    background-color: var(--main-hover-color) !important;
    color: var(--bg-color) !important;
    transition: 0.4s;
}

.category-row .container .pagination .page-item .next {
    width: max-content !important;
    padding-inline: 20px;
}








/* ******************************************************** *\
 * PAGE PRODUCT
\* ******************************************************** */

/**
 * GO TO PAGE PRODUCT
 */








/* -------------------------------------------------------- *\
 * PRODUCT
\* -------------------------------------------------------- */

.products { margin-block: 30px 40px; }

.products .container .carousel .img-products {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-8);
}

.products .container .carousel .img-up {
    min-height: 450px;
    max-height: 450px;
}

.products .container .carousel .carousel-inner .product-label {
    background-color: var(--main-hover-color);
    border-radius: var(--radius-8);
    color: var(--bg-color);
    padding: 3px 15px;
    right: 15px;
    top: 15px;
}

.products .container .carousel .carousel-inner .btn-modal {
    left: 10px;
    bottom: 10px;
    opacity: 0;
    transition: 0.4s;
}

.products .container .carousel .carousel-inner:hover .btn-modal {
    opacity: 1;
    transition: 0.4s;
}

.products .container .carousel .carousel-control {
    color: var(--main-hover-color);
    margin-inline: 10px;
    font-size: 1.8rem;
    width: auto;
}

.products .container .price { font-weight: 900; }

.products .container .category-product-link { transition: 0.4s; }

.products .container .category-product-link:hover {
    color: var(--main-hover-color);
    transition: 0.4s;
}

.products .container .social-link {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-pill);
    color: var(--second-color);
    height: 35px;
    width: 35px;
    transition: 0.4s;
}

.products .container .social-link:hover {
    background-color: var(--main-hover-color);
    border: 2px solid var(--main-hover-color);
    color: var(--bg-color);
    transition: 0.4s;
}

/* -------------------------------------------------------- *\
 * ABOUT PRODUCT
\* -------------------------------------------------------- */

.about-product .container .tabs { border-bottom: 2px solid var(--border-color); }

.about-product .container .tabs::-webkit-scrollbar { display: none; }

.about-product .container .tabs .btn-tab {
    border-bottom: 2px solid transparent;
    color: var(--second-color);
    padding-block-end: 12px;
    transition: 0.4s;
}

.about-product .container .tabs .btn-tab.active {
    border-bottom: 2px solid var(--text-color);
    color: var(--text-color);
}

.about-product .container .tabs .btn-tab:hover {
    border-bottom: 2px solid var(--text-color);
    color: var(--text-color);
    transition: 0.4s;
}

.textarea-message {
    background-color: var(--second-bg-color);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-8);
    padding: 16px;
    max-height: 300px;
}

.submit-message {
    background-color: var(--main-hover-color);
    border-radius: var(--radius-4);
    color: var(--bg-color);
    padding: 10px 20px;
    transition: 0.4s;
}

.submit-message:hover {
    background-color: var(--other-hover-color);
    transition: 0.4s;
}








/* ******************************************************** *\
 * PAGE DASHBOARD
\* ******************************************************** */

/**
 * GO TO PAGE DASHBOARD
 */








/* -------------------------------------------------------- *\
 * DASHBAORD BANNER
\* -------------------------------------------------------- */

.banner-dashboard {
    border-bottom: 2px solid var(--border-color);
    margin-block-end: 35px;
    padding-block: 65px;
}

/* -------------------------------------------------------- *\
 * DASHBAORD
\* -------------------------------------------------------- */

.dashboard .container .dashbaord-link {
    border-bottom: 2px solid var(--border-color);
    color: var(--second-color);
    padding: 13px 15px;
    transition: 0.4s;
}

.dashboard .container .dashbaord-link.active {
    color: var(--text-color);
    font-weight: 900;
}

.dashboard .container .dashbaord-link:hover {
    color: var(--text-color);
    transition: 0.4s;
}

.dashboard .container .password-changec { border: 2px solid var(--border-color); }

.dashboard .container .upload-image {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-pill);
    min-width: 170px;
    min-height: 170px;
    max-width: 170px;
    max-height: 170px;
    cursor: pointer;
}

.dashboard .container .img-upload {
    border-radius: var(--radius-pill);
    min-width: 170px;
    min-height: 170px;
    max-width: 170px;
    max-height: 170px;
}








/* ******************************************************** *\
 * PAGE BLOG POST
\* ******************************************************** */

/**
 * GO TO PAGE BLOG POST
 */








/* -------------------------------------------------------- *\
 * BLOG POST
\* -------------------------------------------------------- */

.blog-post .img-post { max-height: 345px; }
