@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

/* =====================================================================
CSS VARIABLES SYSTEM - Centralized Design Tokens
======================================================================== */
:root {
    /* ======== PRIMARY COLORS ======== */
    --color-primary: -moz-radial-gradient(50% 80%, circle, #555555, #000000);
    --color-secondary: #09c6ff;
    --color-secondary-dark: #1e3b49;
    --color-accent: #2275d3;
    --color-success: #028845;

    /* ======== NEUTRAL COLORS ======== */
    --color-white: #ffffff;
    --color-border: #eeeeee;
    --color-text: #333333;
    --color-text-dark: #111111;
    --color-text-light: #545966;
    --color-text-muted: #555555;
    --color-text-gray: #212529;

    /* ======== SEMANTIC COLORS ======== */
    --color-footer: #191e2c;
    --color-footer-light: #444444;

    /* ======== TYPOGRAPHY ======== */
    --font-family-base: "Cairo", sans-serif;
    --font-family-secondary: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --font-family-serif:
        "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;

    /* ======== FONT WEIGHTS ======== */
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 900;

    /* ======== FONT SIZES ======== */
    --font-size-medium: 14px;
    --font-size-lg: 15px;
    --font-size-xl: 16px;
    --font-size-xxl: 18px;
    --font-size-xxxl: 22px;
    --font-size-huge: 25px;
    --font-size-title: 35px;

    /* ======== GRADIENTS ======== */
    --gradient-light-top: linear-gradient(#ffffff, #eeeeee);
    --gradient-red-dark: linear-gradient(90deg,
            #b20000 0%,
            #d72828 50%,
            #b20000 100%);
    --gradient-banner-gold: linear-gradient(90deg,
            #ffcc00 0%,
            #fff176 50%,
            #ffb300 100%);
    --gradient-button-hover: linear-gradient(rgb(255 255 255 / 100%), #fefefe);
    --gradient-tab-nav: linear-gradient(top, rgb(255 255 255 / 100%), #fefefe);

    /* ======== ANIMATIONS ======== */
    --animation-slide-line: slideLine 3s linear infinite;
    --animation-spin: spin 2s linear infinite;
    --animation-fast: spin 1s linear infinite;

    /* ======== TRANSITIONS ======== */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    --transition-color: background-color 0.2s ease;

    /* ======== SIZES ======== */
    --size-button-height: 45px;
    --size-button-height-md: 40px;
    --size-button-height-sm: 35px;
}

@font-face {
    font-family: "Font Awesome 6 Free";
    src: url("../webfonts/fa-solid-900.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;

    ascent-override: 90%;
    descent-override: 10%;
    line-gap-override: 0%;
}

@font-face {
    font-family: "Font Awesome 6 Free";
    src: url("../webfonts/fa-regular-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;

    ascent-override: 90%;
    descent-override: 10%;
    line-gap-override: 0%;
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    src: url("../webfonts/fa-brands-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;

    ascent-override: 90%;
    descent-override: 10%;
    line-gap-override: 0%;
}

html,
body {
    width: auto;
    max-width: 100vw;
    overflow-x: hidden;
    height: auto;
    background: #f2f4f7;
    scrollbar-color: var(--color-secondary) var(--color-secondary-dark);
    scrollbar-width: auto;
    font-family: var(--font-family-base);
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Rotate animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes hithere {
    30% {
        transform: scale(1.1);
    }

    40%,
    60% {
        transform: rotate(-5deg) scale(1.1);
    }

    50% {
        transform: rotate(5deg) scale(1.1);
    }

    70% {
        transform: rotate(0deg) scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

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

    100% {
        transform: translateY(-8px);
    }
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

@keyframes centerGlow {
    0% {
        width: 0%;
        height: 0%;
        opacity: 0.2;
    }

    25% {
        width: 80%;
        height: 80%;
        opacity: 1;
    }

    50% {
        width: 120%;
        height: 120%;
        opacity: 0.6;
    }

    75% {
        width: 80%;
        height: 80%;
        opacity: 1;
    }

    100% {
        width: 0%;
        height: 0%;
        opacity: 0.2;
    }
}

@keyframes slideLine {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--color-secondary-dark);
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: var(--color-secondary);
}

#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #010f1c;
    top: 0;
    left: 0;
    opacity: 0.8;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: var(--animation-fast);
}

.hide {
    display: none;
}

.fa {
    font-weight: var(--font-weight-extra-bold);
}

.rtl {
    direction: rtl;
}

a {
    text-decoration: none;
}

.custom-select {
    position: relative;
    width: 100%;
}

.selected {
    height: 60px;
    line-height: 60px;
    padding-left: 0;
    border: 1px solid #ced4da;
    background-color: var(--color-white);
    cursor: pointer;
}

.selected img {
    width: 30px;
    height: 25px;
    float: left;
    margin-top: 19px;
    margin-left: 10px;
    margin-right: 5px;
}

.options {
    display: none;
    position: absolute;
    max-height: 203px;
    overflow: auto;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ced4da;
    background-color: var(--color-white);
    z-index: 1;
}

.option {
    padding-top: 4px;
    padding-bottom: 4px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-color);
}

.option img {
    width: 30px;
    height: 25px;
    margin-left: 10px;
    margin-right: 10px;
}

.option:hover {
    background-color: #f0f0f0;
}

.selected:focus+.options {
    display: block;
}

.pagination {
    direction: ltr;
}

#body {
    scrollbar-color: var(--color-secondary) var(--color-secondary-dark);
    scrollbar-width: thin;
}

.link_btn {
    width: auto;
    height: 42px;
    line-height: 39px;
    bottom: 0;
    text-align: center;
    align-items: center;
    align-content: center;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    color: var(--color-text-dark);
    border-radius: 3px;
    border: 1px solid var(--color-text-dark);
    background-image: var(--gradient-light-top);
    display: inline-block;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.link_btn:focus,
.link_btn:hover {
    border: 1px solid var(--color-text-dark);
    background-image: var(--gradient-button-hover);
}

.continue {
    border: 1px solid #dddddd;
    background: #545966;
    color: #ffffff;
}

.continue:hover {
    border: 1px solid #dddddd;
    background: #3e4350;
    color: #ffffff;
}

.container {
    margin: auto;
    padding: 0;
    direction: ltr;
}

.container .row {
    width: 100%;
    margin: 0;
    direction: ltr;
    transition: all 0.3s;
}

input {
    height: var(--size-button-height-md);
    background: var(--color-white);
    background-color: rgb(255 255 255);
    box-shadow: 0 1px 1px rgb(1 15 28 / 20%);
    border-radius: 0 5px 5px 0;
    border: 1px solid var(--color-border);
    border-left: none;
    border-bottom: none;
    outline: none;
}

input:focus {
    box-shadow: 0 1px 1px rgb(1 15 28 / 20%);
    border-color: var(--color-border);
}

textarea:focus {
    box-shadow: 0 1px 1px rgb(1 15 28 / 20%);
    border-color: var(--color-border);
}

.input-group-text {
    box-shadow: 0 1px 1px rgb(1 15 28 / 20%);
}

#form .card {
    height: 100%;
}

.card {
    width: 100%;
    height: auto;
    border-radius: 0;
    border: none;
}

.card #form_image {
    width: 100%;
    height: 100%;
    background-size: cover;
    transition:
        transform 0.6s ease,
        filter 0.4s ease;
}

.card-body {
    background: #ffffff;
    text-align: left;
}

.card-body form {
    overflow: auto;
}

.card-body form input {
    height: 60px;
}

.card-body form select {
    height: 60px;
}

.card-body form #city,
.card-body form .fa-city {
    margin-top: 36px;
}

.card-body form .d-flex i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    float: left;
    text-align: center;
    font-size: var(--font-size-xxxl);
    background: var(--color-white);
    background-color: rgb(255 255 255);
    box-shadow: 0 1px 1px rgb(1 15 28 / 20%);
    border: 1px solid var(--color-border);
    border-bottom: none;
}

.pages {
    font-size: 20px;
}

.address input {
    float: left;
}

.address .title {
    float: left;
    margin-left: 7px;
    line-height: 38px;
}

.shipping p {
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}

.shipping i {
    font-size: 20px;
    float: left;
    margin-top: 3px;
    margin-left: 8px;
}

.address_div {
    width: auto;
    height: 100%;
    overflow: auto;
    padding: 5px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
}

.address_div p {
    width: 100%;
}

.address_div span {
    width: 100%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
}

.address_div span .select_address {
    width: 25px;
    height: 25px;
    float: left;
}

.address_div span .delete {
    width: auto;
    height: auto;
    float: right;
    padding: 4px;
    padding-top: 2px;
    padding-bottom: 3px;
    color: var(--color-white);
    background-image: var(--gradient-red-dark);
    border: 1px solid #4e0501;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
}

.address_div span .delete i {
    margin: auto;
}

.card-body .row>* {
    padding: 5px;
}

.card-body form {
    height: auto;
    margin: 0;
    margin-bottom: 15px;
    padding: 0;
}

.card-body form #country {
    height: 60px;
    line-height: 60px;
    padding-left: 5px;
    background: #ffffff;
    border: 1px solid #dddddd;
}

.card-body form #country img {
    float: left;
    margin-top: 11px;
    margin-right: 8px;
}

.card-body form input {
    width: 100%;
}

.card-body select {
    width: 100%;
    height: 60px;
    line-height: 46px;
    float: left;
    padding-left: 10px;
    background: #ffffff;
    border: 1px solid #dddddd;
}

.card-body form textarea {
    width: 100%;
    height: 100px;
    padding: 8px;
    background: var(--color-white);
    background-clip: border-box;
    background-color: rgb(255 255 255);
    box-shadow: 0 1px 1px rgb(1 15 28 / 20%);
    border-radius: 5px;
    border: 1px solid var(--color-border);
    border-left: none;
    border-bottom: none;
    outline: none;
}

.card-body form .terms {
    width: auto;
    height: auto;
    margin-top: 5px;
}

.card-body form .mt-3 {
    margin-top: 10px;
}

.card-body form .terms a {
    font-size: var(--font-size-lg);
}

.card-body #address_form {
    width: auto;
    text-align: left;
}

.card-body .table>tbody tr th {
    position: relative;
}

.card-body .table>tbody tr th .cell-content {
    justify-content: space-between;
    align-items: center;
}

.card-body .table>tbody tr th a {
    display: block;
    height: auto;
    width: 72%;
    padding: 0;
    float: left;
    text-align: left;
    padding-left: 5px;
    padding-right: 5px;
    margin-right: 3px;
    margin-bottom: 5px;
    border: 1px solid var(--color-text-dark);
}

.card-body .table>tbody tr th a:hover {
    border: 1px solid var(--color-text-dark);
}

.card-body .table>tbody tr th span {
    display: block;
    height: auto;
    width: auto;
    min-width: 25px;
    padding-left: 5px;
    padding-right: 5px;
    float: left;
    text-align: center;
    margin-bottom: 5px;
    border: 1px solid var(--color-text-dark);
}

.card-body .table>tbody tr th span:hover {
    border: 1px solid var(--color-text-dark);
}

.card-body .justify-content-between {
    padding: 0;
}

.card-body .pay {
    width: 100%;
    height: 50px;
}

.card-body .paypal {
    width: 100%;
    height: 50px;
    line-height: var(--size-button-height);
    margin-top: 5px;
    text-align: center;
    overflow: hidden;
    font-size: var(--font-size-lg);
    font-weight: normal;
    cursor: pointer;
    background: #fbd568;
    background: linear-gradient(#fbd568, #ffb347);
    background: linear-gradient(#fbd568, #ffb347);
    background: linear-gradient(#fbd568, #ffb347);
    background: -webkit-gradient(linear,
            0 0,
            0 100%,
            from(#fbd568),
            to(#ffb347));
    background: linear-gradient(#fbd568, #ffb347);
    background: linear-gradient(#fbd568, #ffb347);
    border: 1px solid #aa6d17;
    color: #996319;
    text-shadow: 0 1px rgb(255 255 255 / 30%);
}

.shipping_button {
    color: var(--color-text-light);
    background-repeat: repeat-x;
    border: 1px solid #bbbbbb;
    background-image: var(--gradient-light-top);
}

.shipping_button:hover {
    color: var(--color-text-light);
    background-repeat: repeat-x;
    border: 1px solid #bbbbbb;
    background-image: var(--gradient-light-top);
}

.shipping_button i {
    color: var(--color-text-light);
}

.card-body form .btn-block {
    width: 100%;
    height: 50px;
    text-align: center;
}

.list-group-item {
    width: auto;
    height: auto;
    display: flex;
    padding: 5px;
    align-content: center;
    align-items: center;
}

.list-group-item .name {
    width: auto;
    min-width: 60%;
    height: auto;
    margin-bottom: 0px;
    display: flex;
    padding-right: 10px;
    align-items: center;
    align-content: center;
    font-size: 14px;
}

.list-group-item .name p {
    width: 25%;
    height: auto;
    text-align: center;
}

.list-group-item .price {
    width: 40%;
    height: 100%;
    background: #f9f9f9;
    padding-left: 5px;
    font-size: 14px;
    margin-bottom: 0px;
}

.heading .count {
    width: 60px;
    height: 60px;
    align-items: center;
    align-content: center;
    text-align: center;
    margin-left: 10px;
    font-size: 35px;
    color: #003333;
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
}

.list-group-item+.list-group-item {
    height: auto;
}

.card-body .card {
    width: 100%;
    overflow: hidden;
    border: 2px solid var(--color-text-dark);
    display: block;
}

.card-body .card input {
    width: 100%;
    height: 38px;
}

.card .btn-secondary {
    width: 100%;
    margin-top: 10px;
}

.card-body #address_form .row input {
    width: 100%;
    float: left;
}

.card-body #address_form #left {
    width: 49%;
    float: right;
}

.card-body #address_form #right {
    width: 49%;
    float: left;
}

.card-body #address_form .right {
    float: left;
}

.card-body form {
    width: 100%;
    min-height: 80%;
    padding: 0px;
    align-items: center;
    align-content: center;
}

form #terms_conditions {
    width: 25px;
    height: 25px;
    float: left;
    margin-top: 10px;
    margin-right: 8px;
}

form #terms_conditions .terms {
    height: auto;
    margin-top: 11px;
}

.right input {
    text-align: left;
}

.right select {
    width: 100%;
    height: var(--size-button-height-md);
}

#user form .row .d-flex {
    display: flex;
    flex-wrap: wrap;
}

#user form .row .location {
    width: 100%;
    height: var(--size-button-height-md);
    line-height: 38px;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 5px;
    background: var(--color-border);
    border: 1px solid #bbbbbb;
    border-bottom: 2px solid #bbbbbb;
}

#user form .row div input {
    width: 80%;
    flex: 1;
    border-left: none;
    border-bottom: none;
    border-radius: 0 5px 5px 0;
}

#user form .row div select {
    width: 100%;
    height: 60px;
}

.checkbox {
    width: auto;
    list-style: none;
    font-size: var(--font-size-medium);
    padding-bottom: 5px;
}

.checkbox section {
    counter-reset: total;
    margin: auto;
    background: white;
    box-shadow: 0 1px 2px rgb(0 0 0 / 30%);
    padding: 15px;
}

.checkbox input {
    width: auto;
    opacity: 0;
    position: absolute;
}

.checkbox label {
    width: auto;
    height: 30px;
    line-height: 30px;
    margin-left: 3px;
    padding-left: 55px;
    position: relative;
    display: block;
    color: #fbfdff;
    cursor: pointer;
}

.checkbox label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 3em;
    height: 1.2em;
    border-radius: 0.6em;
    background: var(--color-border);
    transform: translateY(-50%);
    box-shadow:
        0 1px 3px rgb(100 100 100 / 50%) inset,
        0 0 10px rgb(100 100 100 / 20%) inset;
}

.checkbox label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1.4em;
    height: 1.4em;
    border: 0.25em solid #fafafa;
    border-radius: 50%;
    box-sizing: border-box;
    background-color: #cccccc;
    background-image: linear-gradient(to top,
            var(--color-white) 0%,
            var(--color-white) 40%,
            transparent 100%);
    transform: translateY(-50%);
    box-shadow: 0 3px 3px rgb(0 0 0 / 50%);
}

.checkbox label,
label::before,
label::after {
    transition: var(--transition-base);
}

.checkbox label:hover {
    color: #fbfdff;
}

.checkbox label:hover::after {
    background-color: #cccccc;
}

.checkbox label img {
    margin-top: 7px;
}

.checkbox input:checked {
    counter-increment: total;
}

.checkbox input:checked+label::before {
    background: #1ce;
}

.checkbox input:checked+label::after {
    transform: translateX(2em) translateY(-50%);
}

.checkbox .total::after {
    content: counter(total);
    font-weight: bold;
}

#empty {
    width: 100%;
    height: auto;
    line-height: 80px;
    padding: 75px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-left: none;
    color: var(--color-text-light);
    text-align: center;
    font-size: var(--font-size-huge);
}

#empty i {
    font-size: 50px;
    float: none;
    color: var(--color-text-light);
}

/*
============================================================================
Home category
============================================================================
*/
.home_category {
    min-height: 115px;
}

.home_category .row {
    width: 100%;
    transition: all 0.3s;
}

.home_category .row>* {
    padding-left: 0;
    padding-right: 0;
}

.heading .carousel-title {
    width: auto;
    height: 60px;
    line-height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.heading .carousel-title>* {
    margin: 0 5px;
}

.home_category .carousel-container {
    position: relative;
    width: 100%;
    height: auto;
    margin: auto;
    overflow: hidden;
}

.home_category .category {
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.home_category .carousel-inner {
    width: auto;
    height: 100%;
    margin: auto;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.home_category .category.smooth-show {
    animation: fadeInScale 0.6s ease forwards;
}

.home_category .carousel-inner img:hover {
    animation: hithere 1s ease;
}

.home_category .carousel-inner a {
    padding: 0;
    cursor: pointer;
}

.home_category .category a .category-inner {
    width: auto;
    height: 83%;
    align-items: center;
    align-content: center;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    background-image: linear-gradient(to bottom,
            var(--color-white) 0%,
            var(--color-white) 100%);
    overflow: hidden;
}

.home_category .category a .category-inner:hover>img {
    opacity: 0.75;
}

.home_category .category a .category-inner img {
    width: auto;
    height: auto;
    min-width: 70%;
    max-width: 70%;
    margin: auto;
}

.home_category .carousel-inner a {
    display: block;
}

.home_category .carousel-inner a .name {
    height: 40px;
    width: 100%;
    display: table;
    text-align: center;
    color: var(--color-white);
    background: var(--color-primary);
    text-transform: uppercase;
}

.home_category .carousel-inner a .name span {
    display: table-cell;
    vertical-align: middle;
    padding: 0 5px;
}

.home_category .carousel-control-next {
    width: 57px;
    height: 54px;
    top: 0px;
    right: 0px;
    position: absolute;
    border-left: 1px solid #cccccc;
    background-color: #eeeeee;
    background-image: linear-gradient(to bottom,
            var(--color-white) 0%,
            var(--color-white) 100%);
    opacity: 1;
    color: var(--color-text-dark);
    font-size: var(--font-size-title);
    cursor: pointer;
    padding: 4px;
    z-index: 1;
}

.home_category .carousel-control-prev {
    width: 57px;
    height: 54px;
    top: 0px;
    left: auto;
    right: 57px;
    position: absolute;
    border-left: 1px solid #cccccc;
    background-color: #eeeeee;
    background-image: linear-gradient(to bottom,
            var(--color-white) 0%,
            var(--color-white) 100%);
    opacity: 1;
    color: var(--color-text-dark);
    font-size: var(--font-size-title);
    cursor: pointer;
    padding: 4px;
    z-index: 1;
}

.home_category .carousel-control-prev:hover,
.home_category .carousel-control-next:hover,
.home_category .carousel-control-prev:focus,
.home_category .carousel-control-next:focus {
    opacity: 1;
    color: #0d6efd;
}

/*
============================================================================
Home category — End
============================================================================
*/

/*
============================================================================
Home New Product - Low Product
============================================================================
*/
.nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
}

.nav-tabs::-webkit-scrollbar {
    height: 6px;
}

.nav-tabs .nav-item {
    width: auto;
    height: auto;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.nav-tabs .nav-item:last-child {
    margin-right: 0;
}

.nav-tabs .nav-item .nav-link {
    height: auto;
    line-height: 33px;
    cursor: pointer;
    color: var(--color-text-dark);
    border-radius: 0;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background-image: var(--gradient-tab-nav);
    text-transform: uppercase;
}

.nav-tabs .nav-item .nav-link:hover {
    color: var(--color-white);
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--color-white);
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.tabs-header {
    width: 100%;
}

.tabs-header .heading {
    width: 100%;
    height: 60px;
    position: relative;
    color: var(--color-footer-light);
    border: 2px solid #000000;
    font-weight: bold;
    background-image: var(--gradient-light-top);
    overflow: hidden;
    text-transform: uppercase;
    align-items: center;
}

.tabs-header .heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    margin-left: 0%;
    background: linear-gradient(90deg,
            var(--color-text-dark),
            #0d6efd,
            var(--color-text-dark));
    background-size: 200% 100%;
    animation: var(--animation-slide-line);
}

.tabs-header .heading .left {
    flex: 70%;
}

.tabs-header .heading .left i {
    margin-top: 3px;
    float: left;
    font-size: 45px;
    color: #003333;
    background: #ffffff;
}

.tabs-header .heading .left .title {
    width: auto;
    height: 60px;
    line-height: 63px;
    float: left;
    padding-left: 5px;
    font-size: 30px;
    background-image: none;
    border: none;
    color: #010f1c;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.tabs-header .heading .left .title_tow {
    width: auto;
    height: 60px;
    line-height: 63px;
    float: left;
    padding-left: 5px;
    font-size: 30px;
    background-image: none;
    border: none;
    color: #2a5200;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.heading .next-prev {
    flex: 20%;
    height: 60px;
    line-height: 55px;
}

.heading button {
    width: 50px;
    float: right;
    font-size: 30px;
    background: #fefefe;
    border: none;
    border-left: 1px solid #dddddd;
    color: var(--color-text-dark);
    cursor: pointer;
}

.heading button:hover {
    color: #0077ff;
}

.heading button:focus {
    background: #EEEEEE;
    color: #0077ff;
}

.tab-content {
    width: 100%;
    margin-top: 10px;
}

.tab-pane {
    margin-top: 0;
}

.categorieswithproducts .nav-tabs {
    display: flex;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.nav-tabs .nav-link {
    flex: 1;
}

.stars_price {
    height: auto;
}

.stars_price .stars img {
    float: left;
    margin-top: 4px;
}

.stars_price .price {
    width: 100%;
    height: auto;
    line-height: 25px;
    display: block;
    clear: both;
    text-align: left;
    font-size: 14px;
}

.price .text-price {
    color: green;
}

.price strong {
    color: red;
}

/* Stars */
.stars img {
    width: 80px;
}

.product-card .card-body .name {
    height: auto;
}

/*
============================================================================
Home All category — End
============================================================================
*/

/*
============================================================================
Home Deals
============================================================================
*/
#deals .row .col-12:nth-child(3) {
    padding-left: 5px;
}

#deals .row .col-12:nth-child(5) {
    padding-left: 5px;
    padding-right: 5px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 7px;
    border-bottom: 1px solid #cccccc;
}

.time-box {
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
    border-radius: 12px;
    background: #fff;
    color: var(--color-text-dark);
}

.time-box:first-child {
    background: var(--color-primary);
    color: var(--color-white);
}

.time-box:first-child .time-label {
    color: var(--color-white);
}

.time-value {
    height: 50px;
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.time-label {
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-transform: uppercase;
    color: #003333;
}

/* Actions */
.product-actions {
    width: 100%;
    height: 49px;
    bottom: 70px;
    left: 0;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease,
        transform 0.3s ease;
}

.product-item:hover .product-actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-actions form {
    width: 25%;
    height: var(--size-button-height-md);
    float: right;
    overflow: inherit;
}

.product-actions .quick-view-btn {
    width: 25%;
    height: var(--size-button-height-md);
    padding: 0;
    font-size: var(--font-size-xxxl);
    text-align: center;
    cursor: pointer;
    border: none;
}

.product-actions form button {
    width: 100%;
    height: var(--size-button-height-md);
    padding: 0;
    font-size: var(--font-size-xxxl);
    text-align: center;
    cursor: pointer;
    border: none;
}

.product-actions .quick-view-btn .fa-square-arrow-up-right,
.product-actions form button .fa-shield-heart,
.product-actions form button .fa-folder-plus,
.product-actions form button .fa-table-list,
.product-actions form button .fa-trash-alt {
    width: 100%;
    height: var(--size-button-height-md);
    line-height: var(--size-button-height-md);
    float: left;
    font-size: var(--font-size-xxl);
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.product-actions form button .fa-table-list {
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    font-size: 19px;
}

.product-actions form button .fa-trash-alt {
    border-left: 1px solid var(--color-border);
    font-size: 19px;
}

.product-actions form button .fa-shield-heart:hover,
.product-actions form button .fa-table-list:hover,
.product-actions form button .fa-trash-alt:hover {
    color: var(--color-text-dark);
}

.product-actions form button .fa-folder-plus:hover {
    background: #f0f2f5;
    border: 1px solid #bbbbbb;
}

.product-actions .number {
    width: 25%;
    height: 40px;
    float: right;
    padding-left: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
    background: var(--color-white);
    border-radius: 0;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    border-bottom: none;
    box-shadow: none;
}

.product-actions .number:focus {
    box-shadow: 0 1px 1px rgb(1 15 28 / 20%);
}

/*
============================================================================
Home Deals
============================================================================
*/

/*
============================================================================
Home Banner down
============================================================================
*/
.banner_down {
    min-height: 100px;
    padding: 10px;
    border-top: 3px solid var(--color-white);
    border-bottom: 3px solid var(--color-white);

    background-image: radial-gradient(circle at center bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.6) 100%),
        url("../img/bg.webp");

    background-position: center bottom, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
}

.banner_down .row {
    margin: auto;
    gap: 5px;
}

.banner_down .image {
    padding: 5px;
    flex: 1 1 calc(33.333% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: var(--color-white);
    border: 4px solid #010f1c;
}

.banner_down .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease,
        filter 0.4s ease;
    filter: grayscale(100%);
}

.banner_down .image:hover img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.banner_down .photo {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.banner_down .photo .glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 40%,
            rgba(255, 255, 255, 0.05) 70%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(40px);
    opacity: 0;
    animation: centerGlow 6s infinite ease-in-out;
}

/*
============================================================================
Home Banner down — End
============================================================================
*/
.container-fluid .row {
    margin: 0;
}

.container-fluid .row .col-12 {
    padding: 0;
}

.home_text .row {
    border: 1px solid var(--color-text-dark);
    background: radial-gradient(circle at center,
            #0056b3 0%,
            rgba(1, 45, 99, 0.682) 100%),
        url("../img/footer.webp");
    background-position: center;
    background-size: auto, cover;
    width: 100%;
    direction: ltr;
    box-shadow: 0 2px 2px rgb(0 0 0 / 20%);
    transition: transform 0.5s ease;
    display: flex;
    flex-wrap: wrap;
}

.home_text .row>* {
    padding-left: 0;
    padding-right: 0;
}

.home_text i {
    width: 100px;
    float: left;
    flex-grow: 1;
    text-align: center;
    font-size: 33px;
    margin-right: 20px;
    padding: 25px;
    color: var(--color-white);
    background: #002340b1;
    border-left: 1px solid var(--color-text-dark);
    border-right: 1px solid var(--color-text-dark);
}

.home_text .lf {
    width: auto;
    height: auto;
    padding-left: 8px;
    padding-right: 8px;
    flex-grow: 1;
    float: left;
}

.home_text .lf .div_a {
    width: auto;
    padding-top: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-white);
}

.home_text .lf p {
    width: auto;
    margin-top: 5px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--color-white);
}

/*
============================================================================
Posts
============================================================================
*/
.posts {
    width: auto;
    height: auto;
    background: #f1f3f5;
}

.posts .img-div {
    height: 100%;
    overflow: hidden;
}

.posts .card-img-top {
    height: auto;
    min-height: 100%;
    border-radius: 0px;
    transition: transform 0.6s ease,
        filter 0.4s ease;
}

.posts .card-img-top:hover {
    transform: rotate(1deg) scale(1.05);
}

.posts .text-muted {
    padding: 5px;
    background: var(--gradient-light-top);
    border: 5px;
}

/* Title styling */
.card-title {
    height: 45px;
    line-height: 22px;
    color: var(--color-text);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0.5rem;
}

.card-title a:hover {
    color: var(--color-text-dark);
}

/*
============================================================================
Related Posts
============================================================================
*/
.related_posts {
    width: auto;
    height: auto;
}

.related_posts .row .col-12 .card {
    border-radius: 0;
}

.related_posts .card-img-top {
    width: 100%;
    height: auto;
    border-radius: 0px;
}

.related_posts .card-title {
    height: auto;
}

/*
============================================================================
Posts
============================================================================
*/
.category_posts {
    width: auto;
    height: auto;
    background: #f1f3f5;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.category_posts .img-div {
    height: auto;
    overflow: hidden;
}

.category_posts .card-img-top {
    height: 100%;
    border-radius: 0px;
    transition: transform 0.6s ease,
        filter 0.4s ease;
}

.category_posts .card-img-top:hover {
    transform: rotate(1deg) scale(1.05);
}

/*
============================================================================
Profile
============================================================================
*/
.category-item {
    min-height: 100px;
    gap: 12px;
    padding: 0;
    border: none;
    border-bottom: 1px solid var(--color-border);
    cursor: pointer;
}

.category-item:hover {
    background: #f8f8f8;
}

.item-image {
    width: 95px;
    height: 85px;
    margin-left: 8px;
}

.item-text {
    width: 100%;
    height: 100%;
    line-height: 30px;
    float: left;
    margin-right: 8px;
    display: flex;
    flex-direction: column;
}

.item-title {
    width: auto;
    height: auto;
    display: flex;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text-dark);
    text-decoration: none;
}

.item-title:hover {
    color: #007bff;
}

.item-sub {
    width: auto;
    height: auto;
    font-size: 13px;
    color: #777;
}

.item-sub p {
    width: auto;
    height: 20px;
    float: left;
    margin-right: 8px;
}

@media (width <=576px) {
    .item-image {
        margin-bottom: 8px;
    }
}

tbody .status {
    border-radius: 5px;
    padding: 4px 6px;
}

tbody .Canceled {
    color: #FFFFFF;
    background-color: #e74c3c;
}

tbody .Completed {
    color: #FFFFFF;
    background-color: #2ecc71;
}

tbody .Hold {
    color: #212529;
    background-color: #f1c40f;
}

tbody .Pending {
    color: #FFFFFF;
    background-color: #18676d;
}

tbody .Payment {
    color: #FFFFFF;
    background-color: #1abc9c;
}

tbody .Processing {
    color: #FFFFFF;
    background-color: #3498db;
}

tbody .Refunded {
    color: #FFFFFF;
    background-color: #9b59b6;
}

/*==========================================================================
Profile - End
==========================================================================*/
#v-tabs-tab {
    min-height: 200px;
    border-bottom: none;
    bottom: 0;
}

#v-tabs-tab-1,
#v-tabs-tab-2,
#v-tabs-tab-3,
#v-tabs-tab-4 {
    height: 100px;
    line-height: var(--size-button-height-sm);
    text-align: center;
    align-content: center;
    align-items: center;
    border-radius: 0;
    font-size: 13px;
    color: var(--color-text-light);
    border: 2px solid var(--color-white);
    background-image: var(--gradient-tab-nav);
    cursor: pointer;
}

#v-tabs-tab-1,
#v-tabs-tab-3 {
    border-right: none;
}

#v-tabs-tab-1 i,
#v-tabs-tab-2 i,
#v-tabs-tab-3 i,
#v-tabs-tab-4 i {
    width: 100%;
    float: none;
    margin-top: 13px;
    font-size: var(--font-size-huge);
    color: var(--color-text-dark);
}

#v-tabs-tab .active {
    color: var(--color-text-dark);
    background: #dddddd;
}

#v-tabs-tab .active i {
    color: var(--color-text-dark);
}

#v-tabs-tabContent {
    min-height: 199px;
    background: var(--color-white);
    border: 2px solid var(--color-white);
    padding-top: 12px;
    padding-bottom: 10px;
}

#v-tabs-tabContent h4 {
    height: auto;
    line-height: 42px;
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 12px;
    padding-right: 12px;
    background: #f0f2f5;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-footer-light);
}

#v-tabs-tabContent h4 i {
    color: var(--color-primary);
}

#v-tabs-tabContent h4 a {
    color: var(--color-footer-light);
}

#v-tabs-tabContent #v-tabs-tabContent .form-group label {
    margin-top: 8px;
    margin-bottom: 5px;
}

#v-tabs-tabContent #old_order {
    clear: both;
    width: 100%;
    height: auto;
    padding-top: 2px;
}

#v-tabs-tabContent #old_order #empty {
    width: 100%;
    margin: 0px;
    background: #fefefe;
    flex: 1;
    border: none;
}

#v-tabs-tabContent #old_order .img {
    width: 15%;
    height: 100px;
    float: left;
    text-align: center;
}

#v-tabs-tabContent #old_order .img img {
    width: 70%;
    max-height: 100%;
    height: auto;
    margin: auto;
}

#v-tabs-tabContent #old_order #left {
    width: auto;
    float: left;
}

#v-tabs-tabContent #old_order #left .full-stars-example-two {
    float: none;
}

#v-tabs-tabContent #old_order #left .full-stars-example-two img {
    width: 85px;
    height: 17px;
}

#v-tabs-tabContent .link_btn i {
    float: left;
    height: 40px;
    font-size: 20px;
    align-items: center;
    align-content: center;
}

#v-tabs-tabContent .link_btn p {
    width: 55px;
    float: right;
    height: 40px;
    align-items: center;
    align-content: center;
}

.tab-content .selected {
    height: 40px;
    line-height: 40px;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}

.tab-content .selected img {
    margin-top: 9px;
}

.tab-content form .row select {
    width: 100%;
    height: var(--size-button-height-md);
    float: left;
    padding-left: 5px;
    background: var(--color-border);
    border: 1px solid #bbbbbb;
    border-bottom: 2px solid #bbbbbb;
}

.tab-content .address_div span {
    padding-left: 0;
    padding-right: 0;
}

.tab-content .address_div span .delete {
    width: 30px;
    height: 30px;
    padding-left: 0;
    padding-right: 0;
    float: left;
    text-align: center;
}

.tab-content .address_div span .delete i {
    margin: auto;
    padding: 0;
    font-size: 23px;
}

/*==========================================================================
Profile — End
==========================================================================*/

/*==========================================================================
Category
==========================================================================*/
.wrapper {
    border-bottom: 1px solid #dddddd;
}

.hide_b {
    display: none;
}

.div-bg {
    width: 100%;
    height: auto;
    float: left;
    padding: 0;
    background: #f49;
    background-clip: border-box;
    border: 1px solid #dddddd;
    border-bottom-color: #bbbbbb;
    border-left: none;
    overflow: hidden;
    color: #ffffff;
    background: #f9f9f9;
}

.div-bg .buttons .grid_1 {
    border-left: 1px solid #dddddd;
}

.div-bg .buttons .grid_1,
.div-bg .buttons .grid_2,
.div-bg .buttons .grid_3 {
    width: 55px;
    height: 40px;
    float: left;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-right: 1px solid #dddddd;
    cursor: pointer;
}

.div-bg .buttons .grid_1:hover,
.div-bg .buttons .grid_2:hover,
.div-bg .buttons .grid_3:hover {
    background: #eeeeee;
}

.div-bg .buttons .grid_1 i,
.div-bg .buttons .grid_2 i,
.div-bg .buttons .grid_3 i {
    color: #003333;
    font-size: 16px;
}

.div-bg .buttons .grid_2 i:hover,
.div-bg .buttons .grid_3 i:hover {
    color: #000000;
}

.filter_title {
    width: auto;
    height: 40px;
    line-height: 40px;
    border-left: 1px solid #dddddd;
    padding-left: 10px;
    padding-right: 10px;
    float: left;
    font-size: 1rem;
    font-weight: normal;
    color: #666666;
    text-align: center;
    cursor: pointer;
}

.label {
    width: 98px;
    height: 40px;
    line-height: 30px;
    float: left;
    font-size: 1rem;
    font-weight: normal;
    color: #666666;
    text-align: center;
    background-color: #e9ecef;
    cursor: pointer;
}

#label {
    margin-right: 0;
}

.filter_button .fa-chevron-down {
    display: none;
}

.filter_button .fa-chevron-up {
    display: none;
}

#product_filters select {
    width: 100%;
    height: 40px;
    line-height: 20px;
    padding-left: 10px;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: normal;
    color: #666666;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #eeeeee;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#product_filters {
    border-left: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    background: #ffffff;
}

#product_filters .head {
    width: 100%;
    height: 35px;
    line-height: 35px;
    padding-left: 8px;
    margin-bottom: 8px;
    background: #f9f9f9;
    border: 1px solid #eeeeee;
}

#product_filters .form-check {
    padding: 0px;
    margin-bottom: 10px;
}

#product_filters .form-check input {
    width: 25px;
    height: 25px;
    margin: 0px;
    float: left;
    margin-right: 10px;
}

.wrapper .product-item {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product-card {
    position: relative;
}

.product-card::before {
    content: "";
    position: absolute;
    z-index: 9;
    inset: 0;
    pointer-events: none;

    background: linear-gradient(#000 0 0) top left / 0 2px,
        linear-gradient(#000 0 0) top left / 2px 0,
        linear-gradient(#000 0 0) bottom left / 0 2px,
        linear-gradient(#000 0 0) top right / 2px 0;

    background-repeat: no-repeat;
}

.product-card:hover::before {
    animation: draw-border 2.4s forwards ease;
}

@keyframes draw-border {
    0% {
        background-size: 0 2px, 2px 0, 0 2px, 2px 0;
    }

    25% {
        background-size: 100% 2px, 2px 0, 0 2px, 2px 0;
    }

    50% {
        background-size: 100% 2px, 2px 100%, 0 2px, 2px 0;
    }

    75% {
        background-size: 100% 2px, 2px 100%, 100% 2px, 2px 0;
    }

    100% {
        background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
    }
}

.product-img-link {
    position: relative;
}

.product-img-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #ffc107, #dc3545);
    background-size: 300% 100%;
    transform: scaleX(0);
    transform-origin: center;
}

.product-card:hover .product-img-link::after {
    animation: draw-color-line 0.6s forwards ease, gradientMove 3s linear infinite;
    animation-delay: 2.4s, 2.4s;
}

@keyframes draw-color-line {
    to {
        transform: scaleX(1);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

#products-wrapper {
    position: relative;
}

#products-wrapper .price {
    float: left;
}

#products-wrapper .wrapper #empty {
    min-height: 600px;
    border: 0px;
}

#products-loader {
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.8;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#products-loader .spinner {
    width: 50px;
    height: 50px;
    top: 10%;
    margin: auto;
    position: relative;
    border: 5px solid #ccc;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    -o-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg);
    }

    100% {
        -o-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*==========================================================================
Category — End
==========================================================================*/

/*==========================================================================
Product (optimized, same visuals)
==========================================================================*/

/* Tab animation */
.tab-content .product-item {
    border: 1px solid #f2f4f7;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.tab-content .product-item.animate-show {
    transition: var(--transition-base);
    opacity: 1;
    transform: translateY(0);
}

/* Card base */
.product-card {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--color-white);
    border-radius: 0;
    transition: transform var(--transition-base),
        box-shadow var(--transition-base);
    overflow: hidden;
}

.product-card .card-body {
    padding: 8px;
}

.product-card {
    position: relative;
}

.product-card .top-left-buttons {
    top: 8px;
    left: 11px;
    position: absolute;
    z-index: 9;

    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);

    transition: opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

.product-card:hover .top-left-buttons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-card .top-left-buttons .product-button {
    width: 34px;
    height: 34px;
    margin-top: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fefefe;
    border: 1px solid #001836;
    border-radius: 5%;
}

.product-card .top-left-buttons .product-button:hover {
    background: #f4fcff;
}

.product-card .top-left-buttons .product-button i {
    width: 34px;
    height: 34px;
    margin-top: 15px;
    font-size: 18px;
    color: #001836;
}

/* Badge */
.product-card .badge.bg-danger {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    padding: 0.3rem 0.6rem;
    z-index: 8;
}

.name a {
    color: #003333;
}

/* Image wrapper */
.product-img-link {
    width: auto;
    max-height: 220px;
    overflow: hidden;
    position: inherit;
    border-bottom: 1px solid #f0f0f0;
}

.product-img-link img {
    width: auto;
    height: 100%;
    max-height: 175px;
    margin: auto;
    border-radius: 0;
    transition: var(--transition-base);
}

.product-card:hover .product-img-link img {
    transform: scale(1.05);
}

/* Left buttons (add to cart) */
.product-card-button {
    width: 100%;
    display: block;
    bottom: 0;
    transition: var(--transition-base);
}

.product-card-button .buttons {
    width: 100%;
    margin-top: 10px;
}

.product-card-button .product-button {
    width: 100%;
    height: var(--size-button-height-md);
    margin: auto;
    line-height: var(--size-button-height-sm);
    text-transform: uppercase;
    font-size: var(--font-size-medium);
    color: var(--color-white);
    background: var(--color-primary);
    border: 1px solid var(--color-text-dark);
    cursor: pointer;
    transition: var(--transition-base);
}

.product-card-button .product-button:hover {
    background: var(--color-primary);
}

.product-card-button .product-button:active {
    transform: scale(0.98);
    box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
}

.product-card-button .product-button i {
    width: 40px;
    height: 38px;
    margin-top: -1px;
    margin-left: -4px;
    padding: 8px;
    line-height: 20px;
    float: left;
    font-size: 17px;
    border-right: 1px solid var(--color-text-dark);
    background: #0a2532;
}

/* Tooltip */
.product-card-button .product-button .tooltip {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background-color: var(--color-text);
    color: var(--color-white);
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base);
}

.product-card-button .product-button:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Floating wishlist/compare */
.wish_list .card-body {
    padding: 5px;
    padding-bottom: 0px;
}

.wish_list .product-actions {
    bottom: 103px;
}


/* Section Products */
.section-products {
    margin-bottom: 40px;
}

.section-products .d-flex {
    display: flex;
    flex-direction: row;
}

.section-products h4 {
    flex: 1;
    position: relative;
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: none;
}

.section-products h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 10px;
    height: 2px;
    background: linear-gradient(to right, #ff5722 10%, #007bff 90%);
    background-size: 200% 100%;
    animation: moveBlue 3s linear infinite;
}

@keyframes moveBlue {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.section-products .list-group-item {
    border: none;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.section-products .list-group-item:hover {
    background-color: #f9f9f9;
}

.section-products .img-thumbnail {
    width: 88px;
    height: 88px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    outline: 1px solid #0077ff;
}

.section-products .list-group-item div {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.section-products h5 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #222;
    line-height: 1.3;
}

.section-products h5 a {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.section-products p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

.section-products p img {
    width: 80px;
}

.section-products small {
    font-size: 0.85rem;
    color: #007bff;
    font-weight: bold;
}


/* Deals */
#deals .product {
    position: relative;
    background: var(--color-white);
    border: 1px solid #cccccc;
    border-radius: 8px 8px 0 0;
    box-shadow: inset 0 0 10px #0002;
    transition: all 5s ease;
}

#deals .product:hover {
    box-shadow: 0 0 5px #0002;
}

#deals .product .hover13 figure {
    height: auto;
    text-align: center;
    align-items: center;
    align-content: center;
}

#deals .product .top {
    position: absolute;
    width: 100%;
    top: 0px;
}

#deals .product .top .price {
    height: 28px;
    float: left;
    background: #eef7ef;
    border-radius: 0 0 8px 0;
    border-left: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

#deals .product .top .full-stars-example-two {
    height: 28px;
    float: right;
    background: #eef7ef;
    border-radius: 0 0 0 8px;
    border-left: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

#deals .product .full-stars-example-two img {
    width: 85px;
    height: 17px;
    margin: 4px 10px;
}

#deals .product .hover13 figure .image_link {
    height: 100%;
    line-height: 180px;
}

#deals .product .foot {
    width: 100%;
}

/* Best sellers */
.best_sellers .product {
    height: auto;
    text-align: center;
    background: none;
    border: none;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
}

.best_sellers .product:nth-of-type(6),
.best_sellers .product:nth-of-type(12) {
    border-right: none;
}

.best_sellers .product .hover13 {
    height: auto;
    background: var(--color-white);
    border-bottom: none;
}

.best_sellers .product figure {
    height: auto;
}

.best_sellers .product .carousel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.best_sellers .product .img-fluid {
    width: 140px;
    max-width: 140px;
    margin: 8px 0;
    transition: var(--transition-base);
}

.best_sellers .col-lg-12 .carousel img {
    margin-top: -55px;
}

.best_sellers .full-stars-example-two img:hover {
    animation: none;
}

/* Price bar & rating bar (shared block styles) */
.best_sellers .product .price,
.best_sellers .product .full-stars-example-two {
    height: 28px;
    background: #eef7ef;
    border-bottom: 1px solid var(--color-border);
}

.best_sellers .product .price {
    flex: 0 0 50%;
    margin-bottom: 0;
    text-align: right;
    font-size: var(--font-size-medium);
    font-weight: bold;
    position: static;
    border: none;
}

.best_sellers .product .price strong {
    color: var(--color-primary);
}

.best_sellers .product .price s {
    color: #010f1c;
}

.best_sellers .product .full-stars-example-two {
    flex: 0 0 50%;
    line-height: 25px;
    position: static;
    border-right: 1px solid var(--color-border);
}

.best_sellers .product .full-stars-example-two img {
    width: 85px;
    height: 17px;
    float: left;
    margin-top: 4px;
    margin-left: 8px;
    padding: 0;
}

/* Carousel controls */
.product .carousel-control-prev,
.product .carousel-control-next {
    width: 40px;
    height: var(--size-button-height-md);
    top: 50px;
    opacity: 0.5;
    background: #003333;
    border-radius: 50%;
}

.product .carousel-control-prev {
    margin-left: 7px;
}

.product .carousel-control-next {
    margin-right: 7px;
}

/* Product figure */
.product figure {
    width: auto;
    height: 180px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.product figure:hover+span {
    bottom: -36px;
    opacity: 1;
}

/* Banners */
.out_of_stock,
.best_product {
    width: 225px;
    height: 30px;
    line-height: 25px;
    margin-top: 15px;
    left: -45px;
    float: left;
    text-align: left;
    position: relative;
    transform: rotate(-45deg);
    border: 2px solid var(--color-text-dark);
    font-size: 13px;
    box-shadow: none;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.out_of_stock {
    padding-left: 44px;
    color: #ffffff;
    background: var(--gradient-red-dark);
    position: absolute;
    z-index: 9;
}

.best_product {
    padding-left: 42px;
    color: #010f1c;
    background: var(--gradient-banner-gold);
    position: absolute;
    z-index: 8;
}

#deals .out_of_stock {
    top: 35px;
    left: -75px;
    padding-left: 85px;
}

#deals .best_product {
    top: 35px;
    left: -75px;
    padding-left: 85px;
}

/* Product image */
#deals .product figure img {
    width: auto;
    height: 350px;
    max-height: 350px;
    margin: auto;
    transition: filter var(--transition-base);
}

#deals .product figure img:hover {
    animation: none;
}

/* Inline price badge in .product figure */
#deals .product .price {
    position: absolute;
    top: 0;
    height: 28px;
    line-height: 25px;
    padding: 0 10px;
    font-size: var(--font-size-medium);
    background-image: var(--gradient-light-top);
    border-radius: 0 0 8px;
    text-align: center;
}

/* Foot bar & container */
#deals .product .foot_div_a {
    width: 100%;
    min-height: 30px;
    padding: 5px 10px;
    line-height: 20px;
    font-size: var(--font-size-medium);
    color: var(--color-text-dark);
    background: #e8eef4;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

.product-item .fa-stack,
.card-body .fa-stack {
    width: 1em;
    float: left;
    margin: 4px 3px 0;
}

.product .foot {
    width: 100%;
    display: block;
    background: var(--color-white);
    border-top: 1px solid #eeeeee;
}

.product .foot .name {
    padding: 8px;
    padding-bottom: 4px;
}

.product .foot input {
    border-radius: 0;
    box-shadow: none;
    border-left: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* Rating generic */
.product .full-stars-example-two {
    float: left;
    font-size: var(--font-size-xl);
    direction: rtl;
}

.product .full-stars-example-two img {
    width: 85px;
    height: 17px;
    vertical-align: middle;
}

/* Actions */
.product-actions-b {
    width: 100%;
    height: auto;
    padding: 0;
}

.product-actions-b form,
.product-actions-b .quick-view-btn {
    width: 33.9%;
    height: var(--size-button-height-md);
    float: right;
    overflow: inherit;
    border: none;
    padding: 0px;
}

.product-actions-b form button {
    width: 100%;
    height: var(--size-button-height-md);
    padding: 0;
    font-size: var(--font-size-xxxl);
    text-align: center;
    cursor: pointer;
    border: none;
}

.product-actions-b form button .fa-shield-heart,
.product-actions-b form button .fa-folder-plus,
.product-actions-b form button .fa-table-list,
.product-actions-b form button .fa-trash-alt,
.product-actions-b .quick-view-btn .fa-square-arrow-up-right {
    width: 100%;
    height: var(--size-button-height-md);
    line-height: var(--size-button-height-md);
    float: left;
    font-size: var(--font-size-xxl);
    color: #1e3b49;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.product-actions-b form button .fa-table-list {
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    font-size: 19px;
}

.product-actions-b form button .fa-trash-alt {
    border-left: 1px solid var(--color-border);
    font-size: 19px;
}

.product-actions-b form button .fa-shield-heart:hover,
.product-actions-b form button .fa-table-list:hover,
.product-actions-b form button .fa-trash-alt:hover {
    color: var(--color-text-dark);
}

.product-actions-b form button .fa-folder-plus:hover {
    background: #f0f2f5;
    border: 1px solid #bbbbbb;
}

.product-actions-b .number {
    width: 32.1%;
    height: var(--size-button-height-md);
    float: right;
    padding-left: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
    background: var(--color-white);
    border-radius: 0;
    border-left: 1px solid #eeeeee;
}

.product-actions-b .number:focus {
    box-shadow: 0 1px 1px rgb(1 15 28 / 20%);
}

/*==========================================================================
Product — End
==========================================================================*/

/*==========================================================================
Quick View
==========================================================================*/

/* Overlay */
#quickViewPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    font-family: Arial, sans-serif;
    display: none;
}

.quickview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.quickview-content {
    position: relative;
    max-width: 1000px;
    width: 95%;
    max-height: 85vh;
    margin: 25px auto;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    z-index: 10000;
    overflow-y: auto;
}

.quickview-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.quickview-content .best_product,
.quickview-content .out_of_stock {
    padding-left: 55px;
}

/* Product images */
.quickview-images {
    height: 475px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quickview-images .main-img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
    margin-bottom: 10px;
}

.quickview-images .thumbs {
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 5px;
    overflow-x: auto;
}

.quickview-images .thumbs img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}

.quickview-images .thumbs img.active {
    border-color: #007bff;
}

/* Product details */
.quickview-details h4 {
    margin-top: 20px;
    padding-right: 30px;
    font-size: 18px;
}

.quickview-details h4 a {
    color: #010f1c;
}

.quickview-details .deal-label {
    clear: both;
}

.quickview-details .product-attributes {
    border-left: 1px solid #eeeeee;
}

/* Countdown Wrapper */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    background: #f7f7f7;
    border-radius: 10px;
}

/* Time Box */
.countdown-wrapper .time-box {
    text-align: center;
    background: white;
    padding: 10px;
    border-radius: 8px;
    min-width: 55px;
    border: 1px solid #e1e1e1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Number */
.countdown-wrapper .time-value {
    height: 35px;
    margin-top: 10px;
    font-size: 30px;
    font-weight: 700;
    color: #333;
    display: block;
    line-height: 22px;
}

/* Label */
.countdown-wrapper .time-label {
    font-size: 15px;
    color: var(--color-primary);
}

.countdown-wrapper .time-box:first-child {
    background: var(--color-primary);
    color: var(--color-white);
}

.countdown-wrapper .time-box:first-child .time-label {
    font-size: 15px;
    color: var(--color-white);
}

.countdown-wrapper .time-box:first-child .time-value {
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 480px) {
    .countdown-wrapper {
        gap: 6px;
        padding: 6px;
    }

    .countdown-wrapper .time-box {
        min-width: 42px;
        padding: 5px;
    }

    .countdown-wrapper .time-value {
        font-size: 16px;
    }

    .countdown-wrapper .time-label {
        font-size: 10px;
    }
}

.quickview-price {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 10px 0;
}

.quickview-shortdesc {
    margin: 10px 0;
}

.quickview-attributes .attr-label {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.quickview-attributes .attr-label.active {
    border: 2px solid #007bff;
}

#quickViewPopup .product-card-button .buttons {
    padding-left: 2px;
    padding-right: 2px;
}

/*==========================================================================
Quick View — End
==========================================================================*/

/*==========================================================================
Best Sellers
==========================================================================*/
.best_sellers {
    width: auto;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

.heading {
    width: auto;
    height: 60px;
    margin: auto;
    margin-bottom: 10px;
    position: relative;
    color: var(--color-footer-light);
    border: 2px solid #000000;
    font-weight: bold;
    background-image: var(--gradient-light-top);
    font-weight: bold;
    overflow: hidden;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    border-radius: 5px;
    border-bottom: 0px;
}

.heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    margin-left: 0%;
    background: linear-gradient(90deg,
            var(--color-text-dark),
            #0d6efd,
            var(--color-text-dark));
    background-size: 200% 100%;
    animation: var(--animation-slide-line);
}

.heading i {
    margin-top: -5px;
    background: #ffffff;
    border-right: 1px solid #cccccc;
    padding: 6px;
    float: left;
    font-size: 45px;
    color: var(--color-secondary-dark);
}

.heading .title {
    width: auto;
    height: 100%;
    line-height: 64px;
    float: left;
    padding-left: 10px;
    font-size: 30px;
    background-image: none;
    border: none;
    color: #001836;
    display: flex;
    justify-content: space-between;
    position: relative;
}

/*==========================================================================
Best Sellers - End
==========================================================================*/

/*==========================================================================
Big Sale
==========================================================================*/
.big_sale {
    height: auto;
    background: #010f1c;
    box-shadow: 0 2px 2px rgb(0 0 0 / 20%);
    transition: transform 0.5s ease;
    padding: 4px;
}

.big_sale .row {
    height: 92px;
    border: 2px dashed var(--color-white);
    color: var(--color-white);
    padding: 3px;
    padding-left: 5px;
    padding-right: 5px;
}

.big_sale .link_btn {
    width: 88px;
    height: 50px;
    line-height: 34px;
    margin-top: 15px;
    float: right;
    font-size: 15px;
}

.big_sale .color_a {
    font-size: 30px;
}

.big_sale .color_b {
    font-size: 22px;
    color: var(--color-white);
    text-shadow: 0 0 3px var(--color-white);
}

/*===========================================================================
End Big Sale
==========================================================================*/

/*===========================================================================
Product details
==========================================================================*/

/* Style the list */
ul.breadcrumb {
    width: 100%;
    height: auto;
    line-height: var(--size-button-height);
    margin-bottom: 7px;
    list-style: none;
    font-style: normal;
    font-size: var(--font-size-xxl);
    text-align: left;
    position: relative;
    color: var(--color-footer-light);
    border: 2px solid #000000;
    font-weight: bold;
    background-image: var(--gradient-light-top);
    overflow: hidden;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.breadcrumb::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    margin-left: 0%;
    background: linear-gradient(90deg,
            var(--color-text-dark),
            #0d6efd,
            var(--color-text-dark));
    background-size: 200% 100%;
    animation: var(--animation-slide-line);
}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;
    height: auto;
    font-size: var(--font-size-medium);
    padding-left: 8px;
    padding-right: 8px;
    border-right: 1px solid #bbbbbb;
    text-align: center;
}

ul.breadcrumb li:first-child {
    padding-left: 0;
}

ul.breadcrumb li:nth-child(2) {
    width: auto;
    float: left;
}

ul.breadcrumb li:nth-child(3) {
    width: auto;
    line-height: var(--size-button-height-sm);
    padding-top: 3px;
    padding-bottom: 3px;
    border-right: none;
    text-align: left;
}

.breadcrumb li.wrapped {
    min-width: 100%;
    border-top: 1px solid #dddddd !important;
}

.category ul.breadcrumb .category li:first-child {
    width: 8%;
    float: left;
    border-bottom: none;
}

.category ul.breadcrumb li:nth-child(2) {
    width: auto;
    float: left;
}

.category ul.breadcrumb li i {
    background: none;
    margin-top: 7px;
    margin-right: 0;
    padding: 0;
}

ul.breadcrumb li+li::before {
    padding: 8px;
    color: black;
}

ul.breadcrumb li a {
    color: #0d6efd;
    text-decoration: none;
}

ul.breadcrumb li a:hover {
    color: var(--color-text-dark);
}

ul.breadcrumb li a i {
    width: 20px;
    height: 20px;
    margin-top: 9px;
    margin-left: 10px;
    margin-right: 2px;
    text-align: center;
    font-size: 20px;
}

.product-left {
    min-height: 100%;
    background: var(--color-white);
    padding-left: 0;
    padding-right: 0;
    border-radius: 10px 0 0 10px;
    border: 1px solid var(--color-border);
}

.product-left .product-slider {
    max-width: 100%;
    height: 100%;
    margin: auto;
    overflow: hidden;
}

.product-left .deal {
    width: 450px;
    height: 100px;
    left: 1rem;
    margin-bottom: 0;
    border-radius: 0%;
    z-index: 88888;
}

.product-left .countdown-timer {
    border: none;
}

.product-left .countdown-timer .best_deals {
    flex: 0 0 120px;
    height: 85px;
    text-align: center;
    align-items: center;
    align-content: center;
    border-radius: 12px;
    background: #003333;
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    text-transform: uppercase;
}

.product-left .product-slider .out_of_stock {
    width: 225px;
    line-height: 22px;
    background: var(--gradient-red-dark);
    transform: rotate(-45deg);
    position: relative;
    padding: 0.2rem 0;
    border: 2px solid var(--color-primary);
    box-shadow: 4px 4px 4px rgb(0 0 0 / 20%);
    text-align: left;
    padding-left: 44px;
    font-size: 13px;
    font-family: var(--font-family-serif);
    font-weight: bold;
    display: block;
    z-index: 9999;
}

.product-left .product-slider .best_product {
    width: 225px;
    line-height: 22px;
    background: var(--gradient-banner-gold);
    transform: rotate(-45deg);
    margin-left: -3px;
    position: relative;
    padding: 0.2rem 0;
    border: 2px solid var(--color-primary);
    box-shadow: 4px 4px 4px rgb(0 0 0 / 20%);
    text-align: left;
    padding-left: 40px;
    font-size: 13px;
    font-family: var(--font-family-serif);
    font-weight: bold;
    display: block;
    z-index: 9999;
}

.product-left .carousel-main {
    width: auto;
    height: auto;
    min-height: 379px;
    display: flex;
    scroll-behavior: smooth;
    overflow: hidden;
}

.product-slider:has(.out_of_stock) .out_of_stock {
    margin-top: 10px;
}

.product-slider:has(.best_product) .best_product {
    margin-top: 10px;
}

.product-slider:has(.deal):has(.out_of_stock) .out_of_stock {
    margin-top: -90px;
    z-index: 999999;
}

.product-slider:has(.deal):has(.best_product) .best_product {
    margin-top: -90px;
    padding-left: 37px;
}

.product-slider:has(.out_of_stock) .carousel-main {
    width: 80%;
    float: right;
    margin-top: 0px;
    margin-right: 50px;
}

.product-slider:has(.out_of_stock) .carousel-main .carousel-cell a img {
    max-width: 100%;
}

.product-slider:has(.best_product) .carousel-main {
    width: 80%;
    float: right;
    margin-top: 0px;
    margin-right: 50px;
}

.product-slider:has(.best_product) .carousel-main .carousel-cell a img {
    max-width: 100%;
}

.product-slider:has(.deal) .carousel-main {
    height: 290px;
}

.product-slider:has(.deal) a img {
    border-radius: 0px;
    height: 250px;
}

.product-left .carousel-nav {
    width: 98%;
    max-width: 98%;
    height: 130px;
    margin: auto;
    padding: 10px 5px 5px;
    overflow: auto hidden;
    text-align: center;
    display: flex;
    scroll-behavior: smooth;
    gap: 10px;
}

.product-left .carousel-main .carousel-cell {
    flex: 0 0 100%;
    height: 100%;
    max-height: 379px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.product-left .carousel-main .carousel-cell .img {
    width: auto;
    max-width: 65%;
    height: auto;
    max-height: 380px;
    margin-top: 10px;
    border-radius: 0;
}

.product-left .carousel-nav .carousel-thumb {
    flex: 0 0 auto;
    height: 90px;
    text-align: center;
    display: flex;
    align-items: center;
    margin: auto;
    cursor: pointer;
    border: 2px solid var(--color-text);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.product-left .carousel-nav .carousel-thumb img {
    width: 95px;
    height: auto;
    max-height: 95px;
    padding: 10px;
    border-radius: 4px;
}

.product-left .carousel-nav .active {
    border: 2px solid #007bff;
    transform: scale(1.1);
    transition: transform 0.3s,
        border-color 0.3s;
}

.spl-page {
    margin-left: 25px;
}

.product-right {
    padding-left: 0;
    padding-right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-left: 0;
    float: right;
    overflow: hidden;
}

.product-right:last-child {
    padding-left: 0;
    padding-right: 0;
    background: var(--color-white);
    border-radius: 0 10px 10px 0;
    border: 1px solid var(--color-border);
    border-left: 0;
    float: right;
    overflow: hidden;
}

.product-right #head {
    height: 42px;
    line-height: var(--size-button-height-md);
    padding-left: 0;
    padding-right: 0;
    background: var(--color-white);
    border-bottom: 2px solid var(--color-border);
}

.product-right .category i {
    margin-top: 10px;
    margin-right: 10px;
    float: left;
    display: block;
}

.product-right .category {
    width: auto;
    height: auto;
    float: left;
    padding-left: 12px;
    padding-right: 12px;
    border-right: 1px solid var(--color-border);
    text-align: center;
}

.product-right .price {
    width: auto;
    height: auto;
    float: left;
    padding-left: 12px;
    padding-right: 12px;
    border-right: 1px solid var(--color-border);
    text-align: center;
}

.product-right .price strong {
    color: red;
}

.product-right .full-stars-example-two {
    width: 120px;
    height: auto;
    line-height: 34px;
    float: left;
    text-align: center;
}

.product-right .full-stars-example-two img {
    width: 85px;
    height: 17px;
}

.product-right .title {
    width: 100%;
    height: var(--size-button-height-md);
    line-height: 39px;
    padding-left: 5px;
    background: var(--color-white);
    border-bottom: 2px solid var(--color-border);
}

.product-right .title i {
    float: left;
    font-size: 20px;
    padding: 9px;
    border-right: 1px solid var(--color-border);
}

.product-right .title p {
    height: auto;
    float: left;
    margin-left: 10px;
    font-size: var(--font-size-lg);
    font-weight: bold;
}

.product-right .short_description {
    padding: 10px;
    border-bottom: 2px solid var(--color-border);
}

.product-right .description {
    height: 225px;
    overflow: auto;
    padding: 10px;
    background: #f7fbf7;
}

.product-right .description ul {
    padding-left: 22px;
    padding-right: 22px;
    margin-bottom: 0;
}

.product-right .foot_div_a {
    width: 110px;
    height: var(--size-button-height-md);
    line-height: 37px;
    margin-top: 10px;
    float: left;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    text-align: center;
}

.product-right .product-actions .number {
    box-shadow: none;
    border-left: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.product-right .product-actions .number:focus {
    box-shadow: none;
    border-left: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

input[type="radio"] {
    width: 32px;
    height: 32px;
    margin-top: 3px;
    background-color: #279ba3;
    border: 2px solid var(--color-white);
    box-shadow: inset 0 0 0 0 white;
    cursor: pointer;
    font: inherit;
    outline: none;
}

input[type="radio"]:checked {
    background-color: white;
    transition: background 0.15s,
        box-shadow 0.1s;
}

.product-right .product-actions {
    width: 100%;
    height: var(--size-button-height);
    padding-bottom: 10px;
    border-top: none;
    display: flex;
}

.product-right .product-actions #number {
    width: 34%;
    height: var(--size-button-height-md);
    float: left;
    padding-right: 0;
    font-size: 13px;
    color: var(--color-text-muted);
    background: var(--color-white);
    background-color: rgb(255 255 255);
    box-shadow: 0 1px 1px rgb(1 15 28 / 20%);
    border: 1px solid var(--color-border);
    border-bottom: none;
}

.product-right .product-actions #number:focus {
    box-shadow: 0 1px 1px rgb(1 15 28 / 20%);
}

.product-right .add-to-cart-container {
    width: auto;
    height: auto;
    padding-top: 0;
    padding-left: 6px;
    padding-right: 6px;
}

.product-right .home_text .row {
    border-radius: 10px;
    overflow: hidden;
}

.product-right .home_text i {
    width: 100%;
}

/* MULTI TABS */

/* MULTI TABS */
.tabs {
    padding: 0;
}

.ignielMultiTab {
    border: 0;
    margin-top: 15px;
    padding: 0;
}

.ignielMultiTab input,
.ignielMultiTab .content>div {
    display: none;
}

.ignielMultiTab label,
.ignielMultiTab .content {
    border-style: solid;
    border-width: 1px;
}

.ignielMultiTab input:checked+label,
.ignielMultiTab .content {
    border-color: var(--color-border);
}

.ignielMultiTab .label {
    display: flex;
    flex-flow: row nowrap;
    max-width: calc(100vw - 2.5rem);
    overflow: auto;
}

.ignielMultiTab label {
    background-color: var(--color-white);
    border-color: transparent;
    border-bottom: 1px solid var(--color-border);
    color: #666;
    cursor: pointer;
    display: inline-block;
    padding: 0.65rem 1.25rem;
    position: relative;
    top: 1px;
    transition: all 0.3s ease;
}

.ignielMultiTab input:checked+label {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-white);
    color: #1d1d1d;
    font-weight: bold;
}

.ignielMultiTab .content {
    height: auto;
    min-height: 110px;
    overflow: auto;
    clear: both;
    padding: 1.5rem 1.25rem;
    background: var(--color-white);
}

.ignielMultiTab #tab1:checked~.content .tab1,
.ignielMultiTab #tab2:checked~.content .tab2,
.ignielMultiTab #tab3:checked~.content .tab3 {
    display: block;
}

.ignielMultiTab #tab1:checked~.content .tab1 br,
.ignielMultiTab #tab2:checked~.content .tab2 br,
.ignielMultiTab #tab3:checked~.content .tab3 br {
    display: block;
}

.tab1 img {
    max-width: 100%;
}

.tab2 #empty {
    border: none;
    padding: 0;
}

.tab2 #rating_form textarea {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    max-width: 100%;
    line-height: 1.5;
    border-radius: 5px;
    border: 1px solid #cccccc;
}

.tab2 #rating_form select {
    width: 112px;
    height: var(--size-button-height);
    line-height: 20px;
    color: #ffa500;
    font-size: 20px;
    font-weight: bold;
    float: right;
}

/* CSS */
.tab2 .card {
    overflow: hidden;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #dddddd;
}

.tab2 .card .card-body {
    padding: 5px;
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background: #f8fafc;
}

.fa-star {
    color: #ffa500;
}

.tab2 .card .card-body small {
    clear: both;
    float: left;
}

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

.tab2 .card .card-body p {
    clear: both;
    margin-top: 10px;
}

.tab3 #user_img {
    width: 60px;
    height: 60px;
    line-height: 58px;
    float: left;
    margin-right: 15px;
    font-size: var(--font-size-title);
    background: #fefefe;
    border: 1px solid var(--color-border);
    text-align: center;
}

.tab3 .right {
    width: 72%;
    float: left;
    font-size: 14px;
}

.tab3 .right br {
    display: block;
}

/*
============================================================================
Product details
============================================================================
*/

/* ================================
   Product Attributes Section
================================ */

.product-attributes {
    width: 100%;
    border-collapse: collapse;
}

.product-attributes th,
.product-attributes td {
    padding: 10px;
    border: 1px solid #ddd;
}

.product-attributes tbody tr,
.product-attributes tbody td {
    padding: 10px;
}

.product-attributes tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.product-attributes tbody tr:hover {
    background-color: #e9f1ff;
}

.table-bordered> :not(caption)>*>* {
    border-width: 0px;
    border-right: 1px solid #eeeeee;
}

.attribute-color-box {
    display: inline-block;
    width: 30px;
    height: 30px;
    padding: 0px;
    border-radius: 5px;
}

.product-attributes tbody input[type="radio"] {
    width: 32px;
    height: 32px;
    background-color: #eeeeee;
    border: 2px solid #bbbbbb;
    box-shadow: inset 0 0 0 0 white;
    cursor: pointer;
    font: inherit;
    outline: none;
}

.product-attributes tbody .form-check-input:checked[type="radio"] {
    background: #007bff;
    border: 2px solid #003333;
}

.attribute-value-text {
    font-weight: 500;
}

@media (max-width: 768px) {

    .product-attributes th,
    .product-attributes td {
        padding: 10px;
    }
}

/* ================================
   Product Attributes Section - End
================================ */

/*
============================================================================
Cart
============================================================================
*/
#cart {
    background: var(--color-white);
    border: 1px solid var(--color-border);
}

#cart h2 {
    height: var(--size-button-height-md);
    line-height: var(--size-button-height-sm);
    background: #f8fafc;
    border: 1px solid var(--color-border);
    margin-top: 15px;
    font-size: var(--font-size-xxl);
    font-weight: bold;
}

#cart .delete {
    width: 40px;
    height: var(--size-button-height-md);
    text-align: center;
    margin: 2px;
    display: block;
    cursor: pointer;
    border: 1px solid #bbbbbb;
    border-color: rgb(187 187 187);
    font-size: var(--font-size-xxl);
    color: var(--color-text-muted);
    background-image: var(--gradient-light-top);
}

#cart .fa-trash-alt {
    width: 100%;
    height: var(--size-button-height-md);
    line-height: 36px;
    text-align: center;
    float: left;
    font-size: var(--font-size-xxxl);
    color: #010f1c;
    cursor: pointer;
}

#cart .fa-trash-alt .tooltip {
    left: -32px;
}

#payment {
    display: block;
    width: 150px;
    height: var(--size-button-height-md);
    line-height: var(--size-button-height-sm);
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    align-content: center;
    align-items: center;
    text-decoration: none;
    float: left;
    cursor: pointer;
    border: 1px solid #bbbbbb;
    border-color: rgb(187 187 187);
    font-size: var(--font-size-xxl);
    color: var(--color-primary);
    background-image: var(--gradient-light-top);
}

/*
============================================================================
Stripe / Payment
============================================================================
*/
#add-all {
    width: auto;
    height: auto;
    overflow: auto;
    margin: auto;
    margin-bottom: 13px;
    padding: 15px;
    background-color: var(--color-white);
    border: 1px solid #bbbbbb;
    border-top: none;
    border-radius: 0 0 3px 3px;
}

#all {
    margin-bottom: 13px;
    text-align: right;
    padding: 0;
}

#all .card-body form {
    overflow: hidden;
}

#card_number,
#card_expiry,
#card_cvc {
    width: 100%;
    height: auto;
    padding: 10px;
    text-align: left;
    background-color: var(--color-white);
    border: 1px solid #cccccc;
    box-shadow: inset 0 0 0 2rem #f9f9f9;
    color: inherit;
    font-size: var(--font-size-medium);
    clear: both;
}

#all #payment-form {
    width: 100%;
    float: left;
}

#all #payment-form #input_foot {
    width: 100%;
    padding: 0;
    margin: 0;
}

#all #payment-form #input_foot #right {
    width: 50%;
    float: right;
    padding: 0;
    padding-right: 10px;
}

#all #payment-form #input_foot #left {
    width: 50%;
    float: left;
    padding: 0;
    padding-left: 10px;
}

#all #payment-form .row {
    clear: both;
}

#all #payment-form .row label {
    width: auto;
    line-height: 50px;
    padding-left: 0;
    float: left;
}

#or {
    width: 100%;
    height: auto;
    margin-bottom: 22px;
    padding: 0;
    text-align: center;
    font-size: 20px;
}

/*
============================================================================
Wishlist — End
============================================================================
*/

/*
============================================================================
Cart
============================================================================
*/
button:focus {
    outline: none;
    box-shadow: none;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: var(--color-white);
}

.table tr,
.table tr td {
    vertical-align: middle;
}

.button-container {
    display: flex;
    align-items: center;
}

.button-container .form-control {
    max-width: 80px;
    text-align: center;
    display: inline-block;
    margin: 0 5px;
}

#myTable {
    min-width: 1366px;
}

#myTable .form-control {
    width: auto;
    display: inline-block;
}

.cart-qty-plus,
.cart-qty-minus {
    width: 38px;
    height: 38px;
    background-color: var(--color-white);
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.cart-qty-plus:hover,
.cart-qty-minus:hover {
    background-color: #5161ce;
    color: var(--color-white);
}

.img-prdct {
    width: 150px;
    height: auto;
    padding: 10px;
    border-radius: 4px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
}

.img-prdct img {
    width: 100%;
    max-height: 130px;
}

#myTable .price {
    width: 100px;
}

/*
============================================================================
Cart — End
============================================================================
*/

/*
============================================================================
Product Comparison
============================================================================
*/
#compare {
    width: auto;
    height: auto;
    background: #fefefe;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    overflow: hidden;
    direction: ltr;
    transition: all 0.3s;
}

#compare .pe-3 i {
    margin-top: 3px;
    margin-left: 25px;
    float: left;
    font-size: 30px;
    color: var(--color-text);
}

#compare i {
    margin-left: 5px;
}

.product-col .img {
    width: 170px;
    height: auto;
    margin-top: 7px;
    text-align: center;
}

.product-col .hover13 {
    width: 100%;
    height: 100%;
    text-align: center;
}

.product-col .hover13 figure {
    height: 199px;
    margin: auto;
    text-align: center;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-col figure {
    width: auto;
    height: 150px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.product-col figure .out_of_stock {
    top: 0;
    margin-left: -5px;
}

.product-col figure .best_product {
    top: 0;
    margin-left: -5px;
}

.instruction {
    text-align: left;
    display: none;
}

.full-stars-example-two .rating__label {
    padding: 0;
}

.zui-table tbody tr td img {
    width: 80px;
    margin-top: 3px;
}

.zui-table {
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
    border-right: 1px solid var(--color-border);
    overflow: hidden;
}

tr:nth-child(even) {
    background: #f3f3f3;
}

.zui-table thead th {
    text-align: center;
    vertical-align: top;
    min-width: 275px;
    overflow: auto;
    border-left: 1px solid var(--color-border);
}

.zui-table tbody td {
    width: 285px;
    color: var(--color-text);
    font-size: var(--font-size-xl);
    padding: 5px 8px;
    white-space: normal;
    vertical-align: top;
    border-top: 2px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.zui-table tbody .number {
    width: 22%;
    height: 44px;
    float: right;
    padding-left: 5px;
    font-size: 13px;
    color: var(--color-text-muted);
    background: var(--color-white);
    background-color: rgb(255 255 255);
    box-shadow: none;
    border: 1px solid #dddddd;
    outline: 1px solid #010f1c;
    border-left: none;
}

.zui-table tbody .number:focus {
    box-shadow: 0 1px 1px rgb(1 15 28 / 20%);
}

.zui-table tbody .button {
    width: 78%;
    min-width: auto;
    height: 44px;
    float: left;
    color: #ffffff;
    display: block;
}

.zui-table tbody td a {
    color: var(--color-text);
    text-decoration: none;
}

.zui-table tbody tr td .full-stars-example-two {
    width: auto;
    height: auto;
    margin-top: 3px;
    margin-bottom: 0;
    padding: 0;
    float: left;
}

.zui-table tbody tr td .full-stars-example-two img {
    width: 85px;
    height: 17px;
}

.zui-wrapper {
    max-width: 100%;
    position: relative;
    padding: 0;
}

.zui-scroller {
    overflow: scroll visible;
    width: 100%;
}

.zui-table .zui-sticky-col {
    min-width: 285px;
    left: 0;
    top: auto;
    font-weight: var(--font-weight-bold);
    background-color: var(--color-white);
}

.zui-table .featured {
    padding-left: 8px;
}

.zui-sticky-col.zui-stripe-row {
    background-color: #f3f3f3;
}

.zui-table .submit {
    width: 100%;
    height: 44px;
    padding: 0;
    text-align: center;
    background: #bc4f38;
    border: 1px solid var(--color-text-dark);
}

.zui-table .submit i {
    float: none;
    margin: auto;
    margin-top: 8px;
    color: var(--color-white);
    font-size: var(--font-size-huge);
}

.svg-inline--fa {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 500;
    font-size: 23px;
    padding-right: 5px;
}

.fa-check-circle {
    color: var(--color-success);
    margin-right: 10px;
}

.fa-plus-circle {
    color: var(--color-accent);
}

#prev-button,
#next-button {
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%),
        0 3px 6px rgb(0 0 0 / 23%);
    position: absolute;
    top: 50%;
}

#prev-button {
    left: 230px;
    display: none;
}

#next-button {
    right: -25px;
}

.fa-chevron-left,
.fa-chevron-right {
    font-size: var(--font-size-xxxl);
    padding-right: 0;
}

@media screen and (width <=1280px) {
    .instruction {
        display: block;
    }
}

/*========================================================================
Product Comparison — End
==========================================================================*/

/*========================================================================
Contact Us
=========================================================================*/
.contact_us {
    height: auto;
    padding: 0;
    color: var(--color-text-dark);
    background: var(--color-white);
    border: 5px solid var(--color-primary);
    outline: 1px solid var(--color-white);
    font-size: var(--font-size-huge);
    direction: ltr;
    text-align: left;
}

.contact_us .card {
    border-radius: 0;
}

.contact_us .card .card-body {
    padding: 0;
}

.contact_us .card-body form {
    padding: 10px;
}

.contact_us input {
    width: 100%;
    height: var(--size-button-height-md);
    background: var(--color-white);
    background-color: rgb(255 255 255);
    box-shadow: 0 1px 1px rgb(1 15 28 / 20%);
    border-radius: 0 5px 5px 0;
    border: 1px solid var(--color-border);
    border-left: none;
    border-bottom: none;
    outline: none;
}

.contact_us textarea {
    text-align: left;
    direction: ltr;
}

.contact_us .row .input {
    padding: 0;
}

.contact_us .checkbox label {
    color: var(--color-text-dark);
}

/*===========================================================================
Contact Us — End
==========================================================================*/

/*===========================================================================
Pagination
==========================================================================*/
#pagination {
    padding-top: 20px;
    padding-right: 10px;
    direction: rtl;
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
}

.active>.page-link,
.page-link.active {
    border: 1px solid var(--color-text);
}

.page-link {
    background: var(--color-white);
    font-weight: bold;
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
}

/*
============================================================================
Pagination — End
============================================================================
*/

/*
============================================================================
Home brand
============================================================================
*/
.head_brand {
    width: auto;
    height: 50px;
    align-items: center;
    padding-left: 12px;
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 1px 0 rgb(255 255 255 / 90%);
    background: var(--color-white);
    border-radius: 10px 10px 0 0;
    border: 1px solid #cccccc;
    box-shadow: 0 0 5px #0002;
    position: relative;
    display: flex;
    text-transform: uppercase;
}

.head_brand::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    margin-left: 0%;
    background: linear-gradient(90deg,
            var(--color-text-dark),
            #db0010,
            var(--color-text-dark));
    background-size: 200% 100%;
    animation: slideLine 3s linear infinite;
}

#brand {
    background: #fbfdff;
    border: 1px solid #cccccc;
    box-shadow: 0 0 5px #0002;
    border-top: none;
}

#brand div {
    border-right: 1px solid #bbbbbb;
    border-bottom: 1px solid #bbbbbb;
    text-align: center;
}

#brand div:nth-child(6) {
    border-right: none;
}

#brand div:nth-child(12) {
    border-right: none;
}

#brand div img {
    width: auto;
    height: auto;
    margin: auto;
    cursor: pointer;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

#brand div img:hover {
    animation: fadeIn 1s ease-in-out;
    filter: grayscale(0%);
}

/*
============================================================================
Home brand — End
============================================================================
*/

/*
============================================================================
Colors / Theme
============================================================================
*/

/* Floating toggle button */
#colorToggleBtn {
    position: fixed;
    left: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    color: var(--color-white);
    background: var(--color-primary);
    background-size: cover;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--font-size-xxxl);
    cursor: pointer;
    box-shadow: 0 4px 12px rgb(0 0 0 / 30%);
    transition: background 0.3s ease,
        transform 0.3s ease;
    z-index: 99999;
}

#colorToggleBtn:hover {
    transform: scale(1.1);
}

#colorToggleBtn i {
    animation: var(--animation-spin);
}

/* Color panel */
#colorPanel {
    position: fixed;
    bottom: -400px;
    /* hidden by default */
    left: 10px;
    width: 260px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: 0.4s ease;
    /* smooth slide animation */
    z-index: 99999;
}

#colorPanel.open {
    bottom: 75px;
    /* visible */
}

#colorPanel #site_color {
    color: #191e2c;
    background: #eeeeee;
    padding-left: 10px;
    height: 40px;
    line-height: 40px;
}

#mainColor {
    width: 100%;
    height: 50px;
}

#hexInput {
    width: 100%;
    margin: 8px 0;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    text-transform: uppercase;
}

.color-tools {
    display: flex;
    gap: 10px;
    margin: 8px 0;
}

.color-tools button {
    flex: 1;
    text-transform: uppercase;
}

/* Preset color grid */
.preset-colors {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin: 12px 0;
}

/* Preset color box */
.preset {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    position: relative;
    /* needed for checkmark */
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
}

.preset:hover {
    transform: scale(1.15);
}

/* Checkmark for selected color */
.preset.selected::after {
    content: "✔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/*
============================================================================
Colors / Theme — End
============================================================================
*/

/*
============================================================================
NewsletterPopup & Cookie
============================================================================
*/

#newsletterPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

#newsletterPopup.active {
    opacity: 1;
    visibility: visible;
}

#newsletterPopup .row {
    width: 750px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

.newsletter-content {
    padding: 30px 25px;
    background: var(--color-border);
    color: var(--color-primary);
    text-align: center;
    position: relative;
    transform: none;
}

.newsletter-content {
    transform: translateY(0);
}

.newsletter-icon {
    font-size: 45px;
    margin-bottom: 15px;
    color: var(--color-primary);
    text-shadow: 0 2px 5px #ffffff;
    animation: iconBounce 1s infinite alternate;
}

.newsletter-content h2 {
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: bold;
}

.newsletter-content p {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--color-secondary-dark);
}

.newsletter-input-group {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.newsletter-input-group input[type="email"] {
    height: 50px;
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    z-index: 9999;
}

.newsletter-button-group {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.newsletter-button-group button:first-child {
    background: var(--color-accent);
    color: var(--color-white);
}

.newsletter-button-group button {
    flex: 1;
    height: 50px;
    padding: 12px 18px;
    border: none;
    background: #3a3a3a;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    z-index: 9999;
}

.newsletter-button-group button:hover {
    background: #0e4b69;
}

.newsletter-content .by_subscribe {
    display: flex;
    justify-content: center;
}

.newsletter-content .by_subscribe p {
    z-index: 9999999;
    display: flex;
    float: left;
}

.newsletter-content .by_subscribe a {
    z-index: 9999999;
    display: flex;
    margin-left: 8px;
    float: right;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #b20000;
    transition: color 0.3s ease;
    z-index: 9999;
}

.close-popup:hover {
    color: #e74c3c;
}

#cookie-box {
    width: 750px;
    max-width: 100%;
    margin: auto;
    padding: 8px;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    color: var(--color-primary);
    border-radius: 8px;
    border: 1px solid #bbbbbb;
    background: var(--color-white);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    z-index: 999;
    animation: fadeIn 3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

#cookie-box.active {
    opacity: 1;
    visibility: visible;
}

#cookie-box .row {
    width: 100%;
    margin: auto;
}

.cookie-content {
    width: 65%;
    height: auto;
}

.cookie-content p {
    height: 100%;
    float: left;
    align-items: center;
}

.cookie-buttons {
    width: 35%;
    gap: 12px;
    float: right;
}

.cookie-btn {
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

.cookie-btn.accept {
    background: var(--color-accent);
    color: var(--color-white);
}

.cookie-btn.accept:hover {
    opacity: 0.9;
}

.cookie-btn.decline {
    background: #3a3a3a;
    color: #fff;
}

.cookie-btn.decline:hover {
    background: #555;
}

/*
============================================================================
NewsletterPopup & Cookie - End - End
============================================================================
*/

/*
============================================================================
Footer
============================================================================
*/
.footer {
    width: auto;
    height: auto;
    margin-top: 5px;
    direction: ltr;
    overflow: auto;
    background: #FFFFFF;
    border: 1px solid var(--color-text-dark);
}

.footer .row {
    width: auto;
    margin: auto;
}

.footer .row .alert {
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: 5px solid var(--color-footer);
}

.line_head {
    clear: both;
    width: 100%;
    height: 5px;
    background: #191e2c;
    background: linear-gradient(top, #191e2c 60%, #191e2c 100%);
    border-top: 1px dashed #333333;
    border-bottom: 1px dashed #333333;
    position: relative;
}

.bottom {
    box-shadow: none;
}

.footer .footer_head {
    width: 100%;
    height: 100px;
    margin: auto;
    background: radial-gradient(50% 80%,
            circle,
            var(--color-footer-light),
            var(--color-text-dark));
    font-weight: bold;
    color: var(--color-white);
    text-shadow: 0 0 1px var(--color-text-dark);
    background: -moz-radial-gradient(50% 80%, circle, #0077ff, #003f86);
    background: -webkit-radial-gradient(50% 80%, circle, #0077ff, #003f86);
    color: #ffffff;
}

.footer .footer_head .right {
    width: 22%;
    height: 90px;
    line-height: 90px;
    float: left;
    text-align: center;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: var(--font-weight-bold);
    border-right: 1px solid var(--color-text);
}

.footer .footer_head .right i {
    height: 90px;
    line-height: 90px;
    font-size: 30px;
    float: left;
    margin-left: 20px;
}

.footer .footer_head .right p {
    float: right;
    margin-right: 20px;
    font-size: var(--font-size-xl);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer .footer_head .left {
    width: 78%;
    height: 90px;
    float: right;
    padding-left: 20px;
    flex: 1;
}

.footer .success_newsletter {
    width: auto;
    height: var(--size-button-height-sm);
    line-height: 30px;
    text-align: center;
    color: #270;
    background-color: #dff2bf;
    border-top: 2px solid #0e4b69;
    border-bottom: 2px solid #0e4b69;
}

.footer .footer_head .left input {
    width: 87%;
    height: 55px;
    margin: auto;
    margin-top: 18px;
    padding-right: 15px;
    padding-left: 55px;
    border-radius: 20px;
    background: var(--color-white) url("../img/at.webp") no-repeat 15px 49%;
    border: 2px solid #0e4b69;
    outline: 2px solid #fff;
    color: #fefefe;
    text-align: left;
    opacity: 0.9;
}

.footer .footer_head .left input:focus {
    color: var(--color-text-dark);
    border: 2px solid #0e4b69;
    outline: 2px solid var(--color-white);
    transition: all 0.3s;
    opacity: 1;
}

.footer .footer_head .left input::placeholder {
    color: var(--color-white);
}

.footer .footer_head .left input:focus::placeholder {
    color: var(--color-text-muted);
}

.footer .footer_head .left button {
    width: 110px;
    height: 56px;
    margin-top: 18px;
    margin-right: 14px;
    float: right;
    text-align: center;
    align-items: center;
    align-content: center;
    border-radius: 20px;
    border: 2px solid #000000;
    outline: 1px solid var(--color-white);
    background-image: var(--gradient-light-top);
}

.footer .footer_head .left button i {
    margin-top: 14px;
    float: left;
    margin-left: 4px;
    font-size: 22px;
}

.footer .footer_head .left button p {
    float: left;
    margin-top: 5px;
    margin-left: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer div h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #222222;
}

.footer ul {
    margin-top: 25px;
}

.footer .social_icon {
    height: auto;
    overflow: auto;
    gap: 10px;
    margin-top: 40px;
    color: var(--color-border);
}

.footer .social_icon a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px;
    background: #FFF;
    border: 1px solid #000;
    color: #000;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.footer .social_icon a i {
    font-size: 22px;
    line-height: 1;
}

.footer .social_icon a:hover {
    border-color: #000000;
}

.footer .link {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 10px;
    font-size: var(--font-size-lg);
    list-style: none;
    color: #555555;
    font-size: 15px;
    transition: transform .15s ease, border-color .15s ease;
}

.footer .link:hover {
    color: #007bff;
}

.footer-tags a {
    display: inline-block;
    margin: 5px;
    padding: 6px 12px;
    background-color: #f1f1f1;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.footer-tags a:hover {
    background-color: #333;
    color: #fff;
}

.footer-tags i {
    margin-right: 6px;
    color: #666;
}


/* ===== Icons Section ===== */
.footer .icon_foot {
    display: none;
}

/* Specific icons */
header .div-c .icon .wishlist {
    float: left;
}

header .div-c .icon .cart {
    float: left;
}

header .div-c .icon .compare {
    float: left;
}

.footer .foot {
    width: auto;
    height: 60px;
    line-height: 60px;
    border-top: 1px solid #DDDDDD;
    overflow: hidden;
    color: var(--color-text-dark);
    background-image: var(--gradient-light-top);
}

.footer .foot .payment {
    display: block;
    width: 90%;
    max-width: 240px;
    height: auto;
    margin-top: 10px;
    float: right;
    margin-right: 5px;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .25));
}

/*
============================================================================
Footer — End
============================================================================
*/