/*_________________________________*\
  ||     Tooltip  Start Here     ||
\*_________________________________*/
.my-tooltip {
    position: relative;
    cursor: pointer;
}

.my-tooltip .show-text {
    position: absolute;
    bottom: -32px;
    right: 2px;
    z-index: 6;
    background-color: var(--dark);
    color: var(--white-off);
    padding: 6px 8px !important;
    border-radius: 2px;
    font-size: var(--fs-xs);
    transform: translateY(-3px);
    transition: .2s;
    opacity: 0;
    max-width: 300px;
    text-wrap: nowrap;
    display: block;
    visibility: hidden;
}

.my-tooltip .show-text::after {
    content: '';
    position: absolute;
    top: -16px;
    right: 0;
    clip-path: polygon(48% 26%, 100% 100%, 100% 45%);
    height: 25px;
    width: 25px;
    background-color: var(--dark);
    z-index: 6;
}

.my-tooltip:hover .show-text {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

/*___________||  Tooltip Start Here  ||___________ */



/* group-image */
.group-images {
    max-width: 110px;
    overflow: hidden;
}

.group-images .item img {
    width: 46px;
    height: 46px;
    margin-left: -12px;
    padding: 2px;
}

.group-images .item:first-child img {
    margin-left: 0;
}





/*________________________________*\
  ||     Message Page       ||
\*________________________________*/
.message-page {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 8px;
    border: 4px solid var(--white);
    border-radius: 12px;
    background-color: #efefef;
    margin-top: 40px;
}

.message-page .inner {
    background-color: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
}

.message-page .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--border-color);
}

.message-page .icon i {
    font-size: 20px;
    font-weight: bold;
    color: green;
}

.message-page.warrning .icon i {
    color: orange;
}

.message-page.danger .icon i {
    color: red;
}

.message-page p {
    color: #777
}

.message-page .title {
    color: #444;
}

.message-page.danger .title {
    color: red;
}

.message-page.warrning .title {
    color: orange;
}


/*__________________________________*\
  ||     Dropdown Styles Here     ||
\*__________________________________*/
.my-dropdown {
    border-radius: 4px;
    box-shadow: var(--shadow-2);
    border: 1px solid var(--white-off);
    max-height: 500px;
    overflow: hidden;
    text-wrap: nowrap;
}

.my-dropdown li {
    width: 100%;
}

.mega.my-dropdown-parent {
    position: unset;
}

.mega-dropdown.my-dropdown {
    width: 100%;
    position: absolute;
    padding: 40px;
    left: 0;
    top: 30px !important;
    display: grid;
    grid-template-columns: repeat(1fr, 4) !important;
    z-index: 12 !important;
    border-radius: 25px;
    background-color: var(--white) !important;
    border: 1px solid var(--border-color);
}

.mega-dropdown.my-dropdown ul li {
    padding: 5px;
    border-bottom: 1px solid var(--border-color);
}

.mega-dropdown.my-dropdown img {
    max-width: 120px;
    height: 100px;
    padding: 2px;
    border: 1px solid var(--white-off);
    border-radius: 12px;
}



/*___________________________________________*\
  _____||   Notification Styles Here    _____||
\*___________________________________________*/
.notification {
    position: fixed;
    bottom: 20px;
    right: 0;
    transform: translateX(100%);
    padding: 25px;
    background-color: var(--blue);
    box-shadow: var(--shadow-1);
    border-radius: 12px;
    z-index: 4;
    width: 300px;
    transition: .5s linear;
    border: 1px solid var(--white-off);
    visibility: hidden;
    transition-delay: 1s;
}

.notification.active {
    transform: translateX(0);
    visibility: visible;
}

.notification img {
    max-width: 100px;
    padding-left: 29px;
}

/*___________||  End Start Here  ||___________*/





/*______________________________*\
  ||     Card  Start Here     ||
\*______________________________*/
.my-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-1);
    border: 1px solid var(--border-color);
    background-color: var(--white);
    padding: 16px;
}







/*_______________________________*\
  ||     Spinner  Start Here     ||
\*_______________________________*/
.my-spinner,
.my-spinner div {
    box-sizing: border-box;
}

.my-spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.my-spinner div {
    position: absolute;
    border: 4px solid currentColor;
    opacity: 1;
    border-radius: 50%;
    animation: my-spinner 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.my-spinner div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes my-spinner {
    0% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 0;
    }

    4.9% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 0;
    }

    5% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 1;
    }

    100% {
        top: 0;
        left: 0;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

/*___________||  Spinner End Here  ||___________ */




/*_______________________________*\
  ||     Button  Start Here     ||
\*_______________________________*/
.my-btn,
.my-btn-sm {
    cursor: pointer;
    user-select: none;
    font-size: var(--fs-sm) !important;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-500);
    font-family: inherit;
    border-radius: 6px !important;
    transition: .3s linear;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.my-btn.my-danger-btn {
    background-color: red;
    color: var(--white);
    min-width: fit-content;
    font-weight: 600;
}

.overflow-unset {
    overflow: unset;
}


/* .my-btn::after,
.my-btn-sm::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: transform .8s linear, background .3s linear;
    transform: translateY(-55px);
}


.my-btn span,
.my-btn a,
.my-btn-sm a,
.my-btn-sm span {
    position: relative;
    z-index: 4;
} */



.my-btn:hover::after,
.my-btn-sm:hover::after {
    transform: translateY(0px);
    transition: transform .4s linear;
}

.my-btn:focus,
.my-btn:active {
    outline: 2px solid #a5a4a461;
}


.my-btn.my-btn-pill {
    border-radius: var(--radius-pill);
    padding: 13px 26px;
}

.my-btn.my-btn-outline {
    border: 2px solid var(--border-color2);
    font-weight: 600;
}

.my-btn.my-btn-outline:hover {
    background-color: var(--border-color);
}



.my-btn.my-btn-sm {
    padding: 10px 12px;
    font-size: var(--fs-sm);
    border-radius: 4px !important;
}

.my-primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: 3px solid #eae6e6;
    border-radius: 4px;
    font-weight: 600;
}

.my-secendary-btn {
    background-color: var(--secondary-hover);
    color: var(--white);
    border: 3px solid #eae6e6;
    font-weight: 600;
}

.my-secendary-btn:hover {
    background-color: var(--secondary-color);
}

.my-btn.my-btn-full {
    width: 100%;
}

.my-primary-btn:hover {
    background-color: var(--primary-hover-color);
}

.my-delete-btn {
    background-color: red;
    color: white;
    font-weight: 600;
    border: 3px solid #eae6e6;
    border-radius: 4px;
}

.my-delete-btn:hover {
    background-color: rgb(221, 8, 8);
}

.my-delete-btn:has(i) {
    background-color: transparent;
}

.my-delete-btn i {
    color: red;
}

.my-delete-btn:hover i {
    color: rgb(221, 8, 8);
    ;
}

/* close button */
.close-btn-right {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 6px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 9px 12px !important;
}

.close-btn.my-btn:hover {
    background-color: var(--primary-hover-color) !important;
    transition: .2s linear;
}


/* Check have a tag inside button */
.my-btn:has(a) {
    padding: 0 !important;
}

.my-btn:has(a) a {
    padding: 12px !important;
}

.my-btn-sm:has(a) {
    padding: 0px !important;
}

.my-btn-sm:has(a) a {
    padding: 10px 12px !important;
}





/*_______________________________*\
  ||     Input  Start Here     ||
\*_______________________________*/
.my-input-control {
    position: relative;
    margin: 5px 0;
}



.my-input-control textarea {
    transition: .15s;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 16px;
    color: var(--dark);
    font-family: inherit;
}

.my-input-control input {
    padding: 11px 12px;
    border: 1px solid var(--border-color);
    outline: none;
    border-radius: 4px;
    transition: .15s linear;
    max-width: 640px;
    width: 100%;
    color: var(--dark);
    background-color: transparent;
    font-weight: var(--fw-500);
}

.my-input-control input::placeholder,
textarea::placeholder {
    font-weight: var(--fw-500);
    color: #a39e9e;
    font-size: var(--fs-sm);
    font-family: inherit;
}

.my-input-control:hover input,
.my-input-control:hover textarea {
    outline: 2px solid var(--input);
}

.my-input-control input:focus,
.my-input-control textarea:focus {
    outline: 3px solid var(--input);
    padding-left: 20px;
}

.my-input-control .label {
    position: absolute;
    left: 25px;
    top: -12px;
    background-color: var(--white);
    padding: 2px 6px;
    z-index: 2;
    color: var(--secondary-hover);
    cursor: pointer;
    font-size: var(--fs-sm);
    user-select: none;
    transition: .12s linear;
}

.my-input-control input:focus+.label {
    top: -16px;
}


/* add this class when error */
.my-input-control .error-text.error-text-show {
    display: block;
}

.my-input.success input {
    border-color: #777;
}

.my-input-control.error input,
.my-input-control.error textarea {
    border-color: var(--red);
}


.my-input-control .error-text {
    color: var(--red);
    position: absolute;
    bottom: -1px;
    left: 16px;
    font-size: 12px;
    visibility: hidden;
}



.my-input-control.error .error-text {
    visibility: visible;
}


/*_____________________________________________*\
  ||     Video Play animation Start Here     ||
\*_____________________________________________*/
.my-video {
    background-color: wheat;
    width: 400px;
    height: 330px;
    position: relative;
}

.my-video .my-play-btn {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    color: #a09696;
}

.my-video .my-play-btn:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: orange;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.my-video .my-play-btn:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: orange;
    border-radius: 50%;
    transition: all 200ms;
}

.my-video .my-play-btn img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.my-video .my-play-btn span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid darkblue;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/*___________||  Video Play Animation End Here  ||___________ */





/*_____________________________*\
  ||     Toggle Button     ||
\*______________________________*/
.emi-btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 140px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 4px;
    padding: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease-in-out;
    text-align: center;
    color: var(--white);

}

.cart-section .btn {
    flex: 1;
    text-align: center;
    position: absolute;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    font-size: 13px;
}

/* Default state (Show 'Change to Regular') */
.cart-section .toggle-on {
    transform: translateX(0);
    opacity: 1;
}

.cart-section .toggle-off {
    transform: translateX(100%);
    opacity: 0;
}

/* Toggle switch handle */
.cart-section .toggle-handle {
    position: absolute;
    left: 0px;
    width: 10%;
    height: 100%;
    background: var(--orange);
    border-radius: 0px;
    transition: transform 0.4s ease-in-out;
    transform: translateX(-2px);
}

/* Active state (Show 'Change to EMI') */
.emi-btn.active .toggle-on {
    transform: translateX(-128px);
    opacity: 0;
}

.emi-btn.active .toggle-off {
    transform: translateX(-10px);
    opacity: 1;
    font-size: 13px;
}

.emi-btn.active .toggle-handle {
    transform: translateX(128px);
    background: var(--orange);
}

.emi-btn.active {
    background-color: #6E0C0C;
    color: var(--white);
}




/*_____________________________*\
  ||     Modal Start Here     ||
\*______________________________*/
.my-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12;
    background-color: var(--modal-bg);
    display: none;
    align-items: center;
    justify-content: center;
}

.my-modal.active {
    display: flex;
}

.my-modal.active .modal-content {
    transform: scale(1);
}

.my-modal .modal-content {
    position: relative;
    max-width: 400px;
    width: 100%;
    max-height: 100dvh;
    overflow: auto;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transform: scale(0);
    transition-delay: .5s;
    transition: transform .2s linear;
    border: 1px solid var(--white-off);
    padding: 22px 0;
}

.my-modal .modal-content.lg {
    max-width: 80%;
    max-height: 90dvh;
}

.shipping-address-modal .modal-content {
    padding: 24px;
}

.my-modal .modal-body {
    overflow: auto;
    max-height: 2000px;
}

.my-modal .modal-content .header {
    background-color: blueviolet;
    min-height: 80px;
    padding: 20px;
}

.my-modal .modal-content .footer {
    background-color: var(--white-off);
    min-height: 55px;
    padding: 20px;
}

.my-modal .modal-close-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 36px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-lg);
    z-index: 4;
    cursor: pointer;
    transition: transform .2s linear;
    user-select: none;
    border-radius: 0 !important;
    outline: 2px solid var(--border-color);
    color: white;
    background-color: var(--primary-color);
}

.my-modal .modal-close-btn i {
    color: white;
}

.my-modal .body-content {
    padding: 6px 16px;
    border-left: 12px solid var(--white-off);
}


.my-modal .modal-close-btn::after {
    content: unset;
}

.my-modal .modal-close-btn:active {
    transform: translateX(3px);
}

/*______ Modal End _____ */


/*_____________________________*\
  || Add to cart modal Start Here ||
\*______________________________*/

.modal_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 12;
}

.modal_container .modal_content {
    background-color: white;
    border-radius: 6px;
    margin: 10px;
    position: relative;
    padding-top: 32px;
    overflow: hidden;
}

.modal_container .modal_content .modal-close-btn {
    text-align: right;
    position: absolute;
    right: 4px;
    top: 4px;
    width: 32px;
    height: 36px;
    font-size: 16px !important;
    padding: 10px 20px;
}

.modal_container .modal_content .modal_body {
    padding: 28px 50px 50px 50px;

}

.modal_container .modal_content .modal_body .confirmation_and_product_info {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 15px;
}

.modal_container .modal_content .modal_body .confirmation_and_product_info .product_info {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    padding: 10px;
    color: gray;
    gap: 5px;
    flex: 1 0 auto;

}

.modal_container .modal_content .modal_body .confirmation_and_product_info .product_info .pro_data {
    color: black;
    font-weight: bold;

}



.modal_container .modal_content .modal_body .view_cart_button {
    background-color: var(--primary-color);
    color: white;
}



.confirmation span {
    color: var(--red);
}

/*______ Add to cart modal Start Here _____ */




/*_________________________________*\
  ||     Scrollbar Start Here     ||
\*__________________________________*/
.my-has-scrollbar::-webkit-scrollbar {
    width: 12px;
    height: 14px;
    background-color: whitesmoke;
}

.my-has-scrollbar-sm::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: whitesmoke;
}

.my-has-scrollbar:hover::-webkit-scrollbar,
.my-has-scrollbar-sm:hover::-webkit-scrollbar {
    background-color: var(gray);
    border: 1px solid var(--border-color);
    border-radius: 0px !important;
}


.my-has-scrollbar::-webkit-scrollbar-thumb,
.my-has-scrollbar-sm::-webkit-scrollbar-thumb {
    border-radius: 0px !important;
    background-color: var(--gray);
}

.my-has-scrollbar-sm::-webkit-scrollbar-thumb {
    background-color: var(--border-color2);
    border-radius: 2px;
}

.my-has-scrollbar:hover::-webkit-scrollbar-thumb {
    background-color: var(--gray);
}

.my-has-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}




/*______________________________________*\
  ||        Small Banner Start        ||
\*______________________________________*/
.sm-banner {
    position: relative;
    padding: 12px;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url('../images/sm-banner1`.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.sm-banner::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    background-color: #2f2c2c52;
}

/*****  Banner Content  ******/
.sm-banner .content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.sm-banner .content h4 {
    color: var(--white-off);
}





/*______________________________________*\
  ||    Menu Icon Create Start     ||
\*______________________________________*/
.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Add animation when active */
.menu-icon.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}





/*______________________________________*\
  ||     Component Responsive Start     ||
\*______________________________________*/
@media(max-width:991px) {}


@media(max-width:767px) {
    .my-card {
        padding: 12px;
    }

    /* button */
    .my-btn {
        padding: 13px 15px;
    }

    .my-btn.my-btn-pill {
        padding: 10px 20px;
    }
}





/*______________________________________*\
  ||     Checkbox and Radio Input     ||
\*______________________________________*/
input[type="checkbox"],
input[type="radio"] {
    width: 17px;
    height: 17px;
    appearance: none;
    border: 1px solid var(--gray2);
    border-radius: 3px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s, border-color 0.3s;
    padding: 0;
}

/* Hover Effect */
input[type="checkbox"]:hover,
input[type="radio"]:hover {
    border-color: var(--primary-hover-color);
}

input[type="radio"] {
    border-radius: 50%;
}

/* Checked State with Checkmark for Checkbox */
input[type="checkbox"]:checked {
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}

input[type="checkbox"]:checked::after {
    content: '✔';
    /* Checkmark symbol */
    color: var(--white);
    font-size: 11px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Checked State for Radio */
input[type="radio"]:checked {
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}

input[type="radio"]:checked::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: 3px solid #c5c3c36e;
}



/*_____________________________________*\
  ||     My Dropdown Start Here      ||
\*_____________________________________*/
.my-dropdown-parent {
    cursor: pointer;
    position: relative;
    padding: 4px 0;
}

.my-dropdown {
    position: absolute;
    background-color: var(--white);
    padding: 14px 14px;
    padding-left: 14px;
    border-radius: 2px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    top: 20px;
    left: -45px;
    transition: .2s linear;
    transform: translateY(22px);
    max-height: 0px;
    min-width: 120px;
    visibility: hidden;
}

.my-dropdown input[type='radio'] {
    width: 16px;
    height: 16px;
}

input[type='radio'] {
    width: 18px;
    height: 17px;
}

input[type="radio"]:checked::after {
    width: 10px;
    height: 10px;
}

.my-dropdown li,
.my-dropdown a {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    gap: 5px;
}

/* hover */
.my-dropdown-parent:hover .my-dropdown {
    display: flex;
    opacity: 1;
    top: 6px;
    max-height: 1000px;
    visibility: visible;
}




/* base */
.base-round {
    position: absolute;
    right: 0px;
    top: -4px;
    width: 19px;
    height: 17px;
    border-radius: 50%;
    font-size: var(--fs-xs);
    color: var(--white);
    background-color: var(--primary-hover-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.base-round.active {
    animation: top-down .45s linear infinite;
}






/*_____________________________________*\
  ||   Live Message Start Here      ||
\*_____________________________________*/
.right-fixed {
    position: fixed;
    right: 25px;
    bottom: 45px;
    font-size: 20px;
    color: #ffffff;
    padding: 10px;
    border-radius: 4px;
    background-color: var(--primary-hover-color);
    z-index: 6;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0px;
    transition: .4s linear;
}

.right-fixed .item {
    width: 50px;
    height: 46px;
    background-color: var(--primary-color);
    border-radius: 4px;
}

.right-fixed .item:hover {
    background-color: var(--dark);
}

.right-fixed .item i {
    animation: scale 0.4s linear infinite alternate;
}

.right-fixed.active {
    visibility: visible;
    opacity: 1;
}

/* .message-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    left: 0;
    top: 0;
    animation: animations 2.1s infinite ease-in-out;
    z-index: -1;
} */


@keyframes animations {
    0% {
        transform: scale(1);
        opacity: .7;
    }

    100% {
        transform: scale(1.6);
        opacity: .01;
    }
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }

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

.right-fixed.up-btn {
    bottom: 220px;
    right: 25px;
    transition: .4s linear;
    width: 70px;
    height: 50px;
    padding: 16px;
}

.right-fixed .up-icon {
    font-size: 18px;
}

.right-fixed.up-btn:hover {
    background-color: var(--dark) !important;
}

.right-fixed.up-btn.active {
    bottom: 160px;
}

/*________________________________*\
  ||    Alert  Start Here      ||
\*________________________________*/
.my-alert {
    padding: 16px 12px;
    font-size: 14px;
    border-radius: 6px;
    background-color: var(--white-off);
    border: 1px solid var(--border-color);
}

.alert-primary {
    color: var(--primary-color);
    background-color: var(--white-off);
    border: 1px solid var(--primary-color)
}

.alert-success {
    color: var(--green);
    border: 1px solid var(--green);
}

.alert-danger {
    color: var(--red);
    border: 1px solid var(--red);
}

.alert-warring {
    color: var(--orange);
    border: 1px solid orange;
}

/*________________________________*\
  ||    Notice  Start Here      ||
\*________________________________*/
.my-notice {
    padding: 8px 16px;
    border-radius: var(--radius-md);
    background-color: var(--white-off);
    border: 1px solid var(--border-color);
    font-size: var(--fs-sm);
    display: block;
}



.my-notice a {
    font-weight: var(--fw-700);
    color: var(--primary-color);
}

.my-notice a:hover {
    color: var(--primary-hover-color);
}


.section-head {
    text-align: center;
}

.section-head p {
    position: relative;
    color: var(--gray);
    margin-top: -6px;
    text-align: center;
}

/* .section-head p::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 25px;
    transform: translateX(-50%);
    background-color: var(--border-color2);
    width: 60px;
    height: 2px;
}
 */











/*________________________________*\
  ||     Paroduct Cart  Here      ||
\*________________________________*/

.product-cart,
.product-cart-area {
    max-width: 400px;
    border-color: var(--border-color);
    border-radius: 8px;
}

.product-cart {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list-view.product-cart-area,
.list-view.my-card {
    max-width: 100%;
    width: 100%;
}

.product-cart.list-view {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.product-cart.list-view .images {
    width: fit-content;
    min-width: 240px;
}

.product-cart.list-view .disk {
    padding: 0 12px !important;
}


.product-cart-area.my-card {
    padding: 8px;
    padding-top: 20px;
}

.product-cart {
    /* display: flex;
     flex-direction: column;
     justify-content: flex-start;
     height: 100%;*/
}

.product-cart .new-price {
    font-size: 18px;
    color: #005b2a;
}




.product-cart .add-to-cart .my-primary-btn:hover {
    background-color: var(--primary-hover-color) !important;
}

.product-cart .base {
    background-color: var(--border-color2);
    color: var(--secondary-color);
}

.product-cart .base.new {
    color: var(--border-color);
}

.product-cart .base.save {
    top: 10px;
    left: 0px;
    right: unset;
    padding: 4px 10px;
    font-weight: 500;
    text-transform: capitalize;
    font-size: var(--fs-xs);
    background-color: var(--before);
    border-radius: 0px;
    color: var(--white);
    letter-spacing: .4px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}


.product-cart .old-price {
    color: var(--gray2);
}

.product-cart .base.earn-point {
    top: 36px;
    padding: 4px 8px;
    width: fit-content;
}

/* instock */
.product-cart .in-stock,
.product-cart .out-of-stock {
    background-color: var(--before);
    padding: 2.6px 6px;
    padding-left: 8px;
    margin: 0;
    font-size: 11px;
    color: #4d4c4c;
    color: var(--white);
    border-radius: 10px;
    position: absolute;
    right: 0px;
    bottom: 6px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.product-cart .out-of-stock,
.product-cart .out-of-stock {
    background-color: var(--red);
    color: var(--white-off);
}

/* show-desc */
.product-cart .desc {
    cursor: pointer;
}

.text-ellipsis {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
    /* ⬅ Prevent word breaking */
    line-height: 17px;
    max-height: 70px;
}

.product-cart .show-desc {
    position: absolute;
    background-color: rgba(45, 45, 53, 0.83);
    bottom: 40px;
    left: 0;
    border-radius: 4px;
    z-index: 8;
    padding: 12px;
    color: var(--white);
    transition: .2s linear;
    visibility: none;
    opacity: 0;
    z-index: -1;
    height: fit-content;
}

.product-cart .desc:hover .show-desc {
    opacity: 1;
    visibility: visible;
    bottom: 75px;
    z-index: 8;
    display: block;
}


/* Show desc after*/
.product-cart .show-desc::after {
    content: '';
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: rgba(45, 45, 53, 0.819);
    clip-path: polygon(100% 0, 0 0, 49% 47%);
}

.product-cart .base.save i {
    font-size: 12px;
}

.product-cart .show-text {
    height: 34px;
    top: 40%;
    right: 128%;
    z-index: 6;
    background-color: var(--secondary-hover);
    transform: translateY(-40%);
    padding: 10px !important;

}

.product-cart .my-tooltip .show-text::after {
    top: 0px;
    right: -18px;
    clip-path: polygon(0 0, 0% 100%, 63% 47%);
    height: 20px;
    width: 20px;
    background-color: var(--secondary-hover);
}

/*****  images  *****/
.product-cart .images {
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}

.product-cart .images img {
    width: 70%;
    margin: 0 auto;
    max-width: 180px;
    transition: .3s linear;
}

.product-cart .images .hide-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0%;
    z-index: -2;
    transform: scale(0);
    transition: .6s;
}

.product-cart:hover .images img {
    transform: scale(1.1);
}

.product-cart:hover .hide-image {
    top: 0;
    z-index: 2;
    transform: scale(.95);
}

/*****  rating  *****/
.rating i {
    margin-left: -1px;
    color: var(--green);
    font-size: 13px;
}

.stars:hover i {
    color: orange;
}

.product-cart .avg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 16px;
    color: var(--white-off);
    background-color: var(--green);
    border-radius: 12px;
    font-size: 12px;
}


.product-cart .my-primary-btn:hover {
    background-color: var(--primary-hover-color) !important;
}


/*****  Price  *****/
.product-cart .name h5 {
    transition: .2s;
}

.product-cart .description {
    height: 22px;
    overflow: hidden;
    font-size: 13px;
}

.product-cart .name:hover h5 {
    color: var(--primary-color);
}


/*****  sold available  *****/
.product-cart .sold-available .available-range {
    margin-top: 5px;
    height: 9px;
    width: 100%;
    border: 1px solid var(--border-color2);
    border-radius: 14px;
    /* padding: 2px; */
    display: flex;
    align-content: center;
    justify-content: flex-start;
}

.product-cart .sold-available .available-range .range {
    height: 100%;
    width: 90%;
    background: var(--border-color2);
    -webkit-border-radius: 4px;
    border-radius: 4px;
}



/*****  Base  *****/
.base {
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 2px 6px;
    font-size: 14px;
    background-color: var(--primary-color);
    text-transform: lowercase;
    color: var(--white);
    transition: .2s linear;
    border-radius: 3px;
}

.tag {
    padding: 3px 6px;
    color: var(--white);
    font-size: 13px;
    border-radius: 6px;
    width: fit-content;
}



.product-cart .base.new {
    animation: unset;
    left: 4px;
    right: unset;
    background-color: var(--secondary-hover);
}

.product-cart .base.stock-out {
    background-color: var(--red);
}

.product-cart .base {
    animation: base-animation 4s linear infinite;
}



/*_____ Product Content _____ */
.product-content {
    padding: 6px;
    padding-top: 2px;
    margin-top: 2px;
    border-top: 1px solid var(--white-off);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0px;
    height: 100%;
    min-height: 200px;
}

.product-content h5,
.product-content h4 {
    font-weight: 700;
    line-height: 18px;
    font-size: var(--fs-sm);
}

.product-content .my-btn {
    padding: 8px 12px !important;
    font-size: 13px !important;
    border-radius: 4px;
    font-weight: 600;
    background-color: var(--primary-color);

}

.product-content p {
    line-height: 18px;
}


/*****  Hide icons  *****/
.product-cart .hide-icons {
    position: absolute;
    z-index: 6;
    padding: 10px;
    transition: 1s ease-in-out;
    background-color: var(--before);
    top: 70%;
    transform: translateY(-70%);
    height: fit-content;
    right: -100%;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    transition-delay: 0 !important;
}

.product-cart .hide-icon {
    background-color: var(--dark);
    box-shadow: var(--shadow-3);
    width: 39px;
    height: 36px;
    border-radius: 6px;
    transition: .25s;
    color: var(--white);
    cursor: pointer;
}

.product-cart .hide-icon i {
    font-size: var(--fs-lg);
}

.product-cart .hide-icon:hover {
    background-color: var(--primary-hover-color);
}

.product-cart:hover .hide-icons {
    right: 0;
}



/*______________  After and Before  _____________ */
.product-cart-area {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.product-cart::after,
.product-cart::before,
.product-cart-area::after,
.product-cart-area::before {
    content: '';
    position: absolute;
    background-color: var(--before);
    transition: .3s linear;
    z-index: 10;
}

/* left first */
.product-cart-area::before {
    left: 0px;
    bottom: 0;
    width: 2px;
    height: 0%;
}

/* bottom last */
.product-cart::before {
    bottom: 0px;
    right: 2px;
    width: 0px;
    height: 2px;
    transition-delay: .9s;
}


/* top second */
.product-cart::after {
    top: 0;
    left: 0;
    width: 0px;
    height: 2px;
    transition-delay: .3s;
}



.product-cart-area::after {
    top: 0px;
    right: 0;
    width: 2px;
    height: 0%;
    transition-delay: .6s;
}

/* Hover Effect */
.product-cart-area:hover::before {
    bottom: 0;
    height: 100%;
}

.product-cart-area:hover::after {
    bottom: 0px;
    height: 100%;
}

/* Hover Effect */
.product-cart:hover::before {
    bottom: 0px;
    width: 100%;
}


.product-cart:hover::after {
    bottom: 0px;
    width: 100%;
}

.product-cart .show-text {
    background-color: var(--primary-color);
}

.product-cart .show-text::after {
    background-color: var(--primary-color) !important;
}


/*________________________________*\
  ||      product cart list      ||
\*________________________________*/
.product-cart-list.product-cart {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    max-width: 100%;
}

.product-cart-list.product-cart .left {
    width: 45%;
}

.product-cart-list.product-cart .left .images {
    max-width: 260px;
}

.product-cart-list.product-cart .content {
    max-width: 300px;
}

.product-cart-list.product-cart .hide-image {
    max-width: 100%;
}





/*________________________________*\
  ||     Brightcamp  Here      ||
\*________________________________*/
.brigtcamp-area {
    background-color: var(--white);
    padding: 16px;
    border-radius: 6px;
    margin-top: -10px;
    border-radius: 0;
}

.brigtcamp-area li {
    font-weight: var(--fw-500);
    position: relative;
}

.brigtcamp-area li a {
    color: var(--dark);
}

.brigtcamp-area li::after {
    content: '/';
    position: absolute;
    right: -13px;
    top: 0px;
    color: var(--dark);
}

.brigtcamp-area li:last-child {
    font-weight: var(--fw-500);
    font-size: 14px;
    color: var(--gray);
}

.brigtcamp-area li:last-child::after {
    content: unset;
}

.brigtcamp-area li a:hover {
    color: var(--primary-color);
}



/* subcribe */
.subcribe {
    background-color: var(--border-color);
    padding: 8px 12px;
    border-radius: 8px;
}

.subcribe input {
    background-color: transparent;
    border: none;
}





/*________________________________*\
  ||     Message Box  Here      ||
\*________________________________*/
.my-message-box {
    background-color: rgb(237, 234, 234);
    max-width: 400px;
    color: green;
    display: none;
    padding: 12px;
    border-radius: 8px;
}

.my-message-box.active {
    display: flex;
    align-items: center;
    gap: 20px;
}

.my-message-box.warning {
    background-color: khaki;
    color: rebeccapurple;
}

.my-message-box.error {
    background-color: rgb(220, 220, 220);
    color: red;
}


/*________________________________*\
  ||        Product Modal  Here      ||
\*________________________________*/
.product-modal .modal-content {
    max-width: 1000px;
    max-height: 2000px !important;
    min-width: 75%;
    min-height: 90%;
    width: 75%;
    height: 85%;
}

.product-page-area {
    padding: 40px;
    overflow: auto;
}



.product-area-top {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1.5fr;
    gap: 60px;
}


/*****  Product Image  ******/
.product-area-top .image {
    overflow: auto;
}

.product-area-top .big-img {
    padding: 0px;
    border: 1px solid var(--border-color);
}


/*****  Product Details  ******/
.product-area-top .product-details {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.datils-top {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}


/*****  Product Rating  ******/
.product-cart .rating i {
    color: var(--green);
    display: inline-block;
    margin-right: -3px;
}

.product-area-top .stars:hover i {
    /* color: var(--primary-hover-color) */
}




.short-desc .my-card {
    padding: 20px;
    box-shadow: unset;
    border-color: var(--border-color2);
    width: fit-content;
}


.color-size {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

/*****  Product quantity buttons  ******/
.product-area-top .quantity-buttons {
    border: 3px solid var(--white-off);
}

.product-area-top .quantity-buttons input {
    width: 38px;
    height: 34px;
    text-align: center;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}

.product-area-top .quantity-buttons input[type="number"] {
    padding-left: 10px;
    padding-right: 0;
}

.product-area-top .quantity-buttons input[type="button"] {
    cursor: pointer;
    font-size: var(--fs-lg);
    font-weight: var(--fw-600);
}

.product-area-top .quantity-buttons input[type="button"]:hover {
    color: var(--primary-color);
}

.product-area-top .quantity-buttons input[type="button"]:active {
    background-color: var(--border-color2);
}

/* wish-compare */
.wish-compare .item {
    width: 40px;
    height: 36px;
    border-radius: 4px;
    background-color: var(--border-color);
    cursor: pointer;
    transition: .3s;
}

.wish-compare .item:hover {
    background-color: var(--primary-hover-color);
    color: var(--white);
}


/*****  colors-area  *****/
.colors-area li {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    padding: 2px;
    border: 2px solid var(--border-color2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.colors-area li.active {
    border-color: var(--primary-hover-color);
}


.colors-area .color {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.colors-area li:nth-child(1) .color {
    background-color: red;
}

.colors-area li:nth-child(2) .color {
    background-color: navy;
}

.colors-area li:nth-child(3) .color {
    background-color: gray;
}

.colors-area li:nth-child(4) .color {
    background-color: black;
}


.size-area li {
    width: 48px;
    height: 38px;
    background-color: var(--white-off);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: .3s;
}

.size-area li:hover {
    background-color: var(--gray);
    color: var(--white);
}

.size-area li.active {
    background-color: var(--gray);
    color: var(--white);
}


.cart-buy-btn .cart {
    width: 200px !important;
}


/* share */


.share a:hover i {
    color: var(--white);
}

.share .copy {
    width: 100px;
    margin-left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 500;

}

.share .copy i {
    color: var(--white);
}

.product-area-top .left {
    padding: 0 6px;
}




/*****  Right Card  *****/
.product-page-area .right .my-card {
    box-shadow: unset;
    border-color: var(--border-color2);
}

.product-page-area .right i {
    color: var(--gray-color);
    font-size: var(--fs-sm);
}

.product-page-area .right .return {
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}



/******  "small-imgs  ******/
.small-img-area::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 12px;
}

.small-img-area::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background-color: var(--border-color2);
}

.small-img-area::-webkit-scrollbar-thumb:hover {
    background-color: var(--gray);
}

.small-img-area {
    overflow: auto;
    margin: 12px 0;
}

.small-imgs {
    padding-bottom: 12px;
}

.small-imgs img {
    padding: 2px;
    border: 2px solid var(--border-color);
    width: 110px;
    height: 100px;
    border-radius: 4px;
    cursor: pointer;
}

.small-imgs img:hover {
    border-color: var(--primary-hover-color);
}

.small-imgs img.active {
    border-color: var(--primary-hover-color);
}



/*________________________________*\
  ||        Popup   Here      ||
\*________________________________*/
.my-popup.my-card {
    position: fixed !important;
    right: -100%;
    top: 50px;
    z-index: 12;
    padding: 0;
    border: 1px solid var(--border-color);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: .2s linear;
}

.my-popup.active {
    right: 30px;
}

.my-popup .icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin: 0 auto;
    border: 2px solid var(--border-color);
    margin-top: 12px;
    background-color: var(--primary-color);
}

.my-popup .icon i {
    font-size: var(--fs-xl);
    color: var(--white);
}

.my-popup .content {
    padding: 16px;
}


.my-popup .head {
    margin-bottom: 12px;
    padding: 6px;
    text-align: center;
    color: var(--white);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.my-popup.error .icon {
    background-color: var(--red);
}

.my-popup.error p {
    color: var(--red);
}

.my-popup .close-btn {
    border-radius: 0;
    border-bottom-right-radius: 8px;
}

.my-popup .bottom {
    display: flex;
    align-items: center;
    justify-content: end;
}

.my-modal .close-btn {
    font-size: var(--fs-md);
}

.my-modal .close-btn i {
    font-size: var(--fs-lg) !important;
}


/*________________________________*\
  ||        List View      ||
\*________________________________*/
.list-view-area table th {
    background-color: var(--border-color);
}


.list-view-table {
    width: 800px;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 auto;
    height: fit-content;
}

/******   List View  wishlist ******/
.list-view-table.wishlist-area {
    width: 100%;
}


.list-view-table.wishlist-area tr input {
    max-width: 100px !important;
}

.list-view-table.wishlist-area td,
.list-view-table.wishlist-area th {
    text-align: left;
}


.list-view-table table {
    width: 100%;
    border-collapse: collapse;
}

.list-view-table table img {
    border: 1px dotted var(--border-color2);
    border-radius: 2px;
}

.list-view-area table tr:nth-child(even) {
    background-color: var(--white-off);
    border-bottom: 1px solid var(--border-color2);
}

.list-view-area table tr {
    position: relative;
    transition: .2s linear;
}

.list-view-area table tr::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transition: .2s linear;
    z-index: -1;
}

.list-view-area table tbody tr:hover::after {
    width: 12px;
    height: 12px;
    z-index: 2;
}

.list-view-area th,
.list-view-area td {
    padding: 8px 14px;
    text-align: center;
    min-width: 90px;
    text-wrap: nowrap;
}

.list-view-area th {
    padding: 20px 14px;
    border-bottom: 1px solid var(--border-color2);
    height: 60px;
}



.list-view-area .status {
    padding: 3px 6px;
    border-radius: 6px;
    font-size: 11px;
    text-transform: lowercase;
}

.list-view-area .status.delivered {
    background-color: var(--primary-color);
    color: var(--white);
}

.list-view-area .status.cancel {
    background-color: var(--red);
    color: var(--white);
}

.list-view-area .status.way {
    background-color: var(--orange);
}

.list-view-area .status.pending {
    background-color: var(--border-color2);
    color: var(--gray);
}

.list-view-area .stock {
    background-color: var(--secondary-hover);
    color: var(--white-off);
}

.list-view-area .out-stock {
    background-color: var(--red);
    color: var(--white-off);
}



/*________________________________*\
  ||       Left Sidebar  Here      ||
\*________________________________*/
.sticky {
    position: sticky;
    top: 40px;
    left: 0;
    width: 275px;
}

.sticky .my-card {
    background-color: var(--white-off);
    border-radius: 8px;
    padding: 0;
    padding-top: 8px;
    /* box-shadow: var(--shadow-1); */
    border-color: var(--border-color);
}

.sticky .my-card ul li {
    padding: 2px 0;
    border-bottom: 2px solid var(--white);
    cursor: pointer;
}

.sticky .my-card ul li a {
    width: 100%;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--secondary-color);
    font-weight: var(--fw-600);
    transform: unset;
}


.sticky .my-card ul li a i {
    font-size: var(--fs-xs);
    transition: .8s;
    font-weight: var(--fw-600);
}

.sticky .my-card ul li a span {
    transition: .6s;
}

.sticky .my-card ul li a span.active {
    transform: rotate(90deg);
}

.sticky .my-card ul li a:hover {
    color: var(--primary-color);
}

.sticky .my-card .nav-btn {
    position: relative;
    transition: .4s linear;
}

.sticky .my-card .nav-btn::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 12px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transition: .4s linear;
}

.sticky .my-card .nav-btn:hover::after {
    left: 5px;
}


/*________   dropdown   ________*/
.sticky .dropdown {
    background-color: var(--white-off);
    padding-bottom: 8px;
    visibility: hidden;
    overflow: hidden;
    transition: .6s ease-in-out;
    max-height: 0;
}

.sticky .dropdown.active {
    visibility: visible;
    opacity: 1;
    max-height: 1800px;


}

.sticky .dropdown li {
    border: none !important;
}

.sticky .dropdown li a {
    color: var(--gray) !important;
    font-weight: var(--fw-500) !important;
    font-size: var(--fs-sm) !important;
    border-bottom: 1px solid var(--border-color2);
    padding: 6px 34px !important;
}

.sticky .dropdown li a:hover {
    color: var(--primary-color) !important;
}



.sticky .tips li {
    cursor: unset !important;
    padding: 10px 18px !important;
}

.sticky .tips div {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-1);
}

.sticky .tips div i {
    color: var(--primary-color);
    font-size: var(--fs-lg);
}

.sticky .tips p {
    font-size: 13px;
    width: 75%;
    line-height: 18px;
}





/*________________________________*\
  ||        pagination   Here      ||
\*________________________________*/
.pagination {
    /* background-color: var(--white-off); */
    padding: 12px 0;
}


.pagination ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color2);
    gap: 4px;
    font-weight: var(--fw-600);
    cursor: pointer;
}

.pagination ul li:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.pagination ul li.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.pagination ul li a i {
    font-size: var(--fs-xs);
}

.pagination .page.disable {
    cursor: no-drop;
}


/* Profile Image */
.profile-img-xl,
.profile-img-lg,
.profile-img-md,
.profile-img-sm {
    border-radius: 50%;
    border: 1px solid var(--border-color);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-img-xl {
    width: 55px;
    height: 55px;
}

.profile-img-lg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    padding: 2px;
}

.profile-img-md {
    width: 28px;
    height: 28px;
}

.profile-img-sm {
    width: 24px;
    height: 24px;
}







/* Social */
.my-social li a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s linear;
}

.my-social li a:hover {
    background-color: var(--primary-color);
    border-color: transparent;
    color: var(--white);
}





/*____________________________________
____||  Common Form Start Here  ||____
______________________________________*/
.common-form {
    max-width: 740px;
    margin: 0 auto;
    margin-top: 0px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-2);
    background-color: var(--white);
    padding: 24px;
    border-top: 6px solid var(--primary-color);
    width: 100%;
}

.common-form .my-input-control {
    background-color: var(--white-off);
    padding: 16px;
    border-radius: 4px;
}

.common-form label {
    font-weight: 500;
    font-size: var(--fs-lg);
    cursor: pointer;
}

.common-form input,
.common-form textarea {
    max-width: 100%;
    border: 1px solid var(--border-color2);
    background-color: var(--white);
}

.common-form .my-btn {
    font-size: var(--fs-lg) !important;
    margin-top: 4px;
}

.common-form input[type="checkbox"] {
    background-color: var(--primary-color);
}



.common-form .checkbox-label {
    font-size: var(--fs-sm) !important;
}






/*__________________________________
||      Image animation Start      ||
___________________________________*/
.animation-image {
    -webkit-animation: imageScrollAnimation 10s linear infinite;
    animation: imageScrollAnimation 10s linear infinite;
    position: absolute;
    width: 100%;
    left: 0;
    height: 600px;
}

@keyframes imageScrollAnimation {
    0% {
        top: 0
    }

    100% {
        top: -550px
    }

    0% {
        top: 0
    }
}




/* search dropdown */
.search {
    position: relative;
}

.search .search-dropdown {
    position: absolute;
    top: 43px;
    left: -0px;
    width: 100%;
    max-height: 600px;
    background-color: var(--white);
    padding: 2px !important;
    border-radius: 6px;
    box-shadow: var(--shadow-2);
    border: 1px solid var(--border-color);
    border-top: none;
    z-index: 5;
    overflow-y: scroll;
    display: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.search-dropdown-mobile {
    display: none;
}

.search-dropdown h6 {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
}

.search-dropdown h5 {
    color: var(--red);
    letter-spacing: .2px;
}

.search-dropdown h5 i {
    margin-left: 1px;
}

.search .search-dropdown li a {
    padding: 8px;
    border-bottom: 1px solid var(--white-off);
}

.search .search-dropdown li a:hover {
    background-color: var(--border-color);
}

.search .search-dropdown.my-cart {
    padding: 12px 0 0 0 !important;
}

.search .search-dropdown .body {
    padding: 0 16px;
    max-height: 360px;
}

/* scrollbar */
.search .search-dropdown .body.my-has-scrollbar::-webkit-scrollbar {
    width: 10px;
}

.search .search-dropdown .body.my-has-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--border-color2);
}

.search-dropdown.my-cart {
    padding: 18px 0 !important;
}

.search .search-dropdown.active {
    display: block;
}

.search .search-dropdown .img {
    width: 50px;
}

.search .search-dropdown img {
    width: 50px;
}

.search .search-dropdown .tag {
    padding: 0px 6px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    color: var(--white-off);
    font-size: 12px;
    font-weight: 600;
}

.right-details .my-flex-column h3 {
    font-weight: 500;
    color: var(--secondary-color);
    font-size: var(--fs-xl);
    line-height: 28px;
}

.right-similar-products .my-card h5 {
    font-weight: 600;
    color: var(--red);
    line-height: 18px;
}

.right-similar-products .my-card a h5 {
    font-weight: 500;
    color: var(--secondary-color);
}


/* Timer */
.discount-offer-timer .title {
    margin-top: -20px;
    background-color: var(--white);
    color: var(--gray);
    font-weight: 600;
}

.discount-offer-timer {
    background-color: var(--white);
}

/* marquee css */
.marquee-css-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-css-text {
    display: inline-block;
    animation: scroll-left 18s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(80%);
    }

    100% {
        transform: translateX(-100%);
    }
}



/*________________________________*\
  ||     Down arrow animation     ||
\*________________________________*/
/*
        <div id="configurator"><div class="arrow-container"><i class="fas fa-chevron-down chevron"></i><i class="fas fa-chevron-down chevron"></i><i class="fas fa-chevron-down chevron"></i></div></div>
*/
#configurator .arrow-container {
    position: relative;
    width: 35px;
    height: 50px;
}

#configurator .chevron {
    position: absolute;
    font-size: 2.5rem;
    color: #5f6169;
    opacity: 0;
    transform: scale3d(.5, .5, .5);
    -webkit-animation: move 3s ease-out infinite;
    animation: move 3s ease-out infinite;
}

#configurator .chevron:first-child {
    -webkit-animation: move 3s ease-out 1s infinite;
    animation: move 3s ease-out 1s infinite;
}

#configurator .chevron:nth-child(2) {
    -webkit-animation: move 3s ease-out 2s infinite;
    animation: move 3s ease-out 2s infinite;
}

@-webkit-keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(.5, .5, .5);
    }
}

@keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(.5, .5, .5);
    }
}


/* background animation */
@keyframes built-btn-animation {
    0% {
        background-position: 0% 50%;
    }

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

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

/*________________________________*\
  ||     Responsive For 991px     ||
\*________________________________*/
@media (max-width:991px) {
    .brigtcamp {
        max-width: 680px;
        margin: 0 auto;
        margin-top: 6px;
    }

    .orders-page {
        max-width: 640px;
        width: 100%;
        margin: 0 auto;
    }

    .list-view-area {
        width: 100%;
        border: 1px solid var(--border-color);
        padding: 6px;
    }

    .list-view-table {
        width: 640px;
        margin: 0 auto;
    }

    .search-dropdown-mobile {
        width: 100%;
        background-color: var(--white);
        padding: 6px;
        border-radius: 6px;
        box-shadow: var(--shadow-2);
        border: 1px solid var(--border-color);
        z-index: 5;
        overflow-y: scroll;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        position: fixed;
        left: 0%;
        display: none;
        top: 108px;
        max-width: unset;
        height: 100dvh;
    }

    .search-dropdown-mobile.active {
        display: block;
    }

    .search-dropdown-mobile .details {
        width: calc(100% - 88px);
    }



    .search-related-products {
        max-height: 600px;
        overflow-y: auto;
    }

}



/*________________________________*\
  ||     Responsive For 769px     ||
\*________________________________*/
@media (max-width:769px) {
    .list-view-area {
        width: 100%;
    }

    .list-view-table {
        width: 640px;
    }


    .list-view-table table {
        width: 640px !important;
    }



    /****** Product Modal *****/
    .product-modal .modal-content {
        min-width: 95%;
        min-height: 90%;
        width: 90% !important;
        height: 80%;
    }

    .product-page-area {
        padding: 20px;
        overflow: auto;
    }

    .product-area-top {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .product-modal .modal-content {
        max-width: 1000px;
        max-height: 2000px;
        min-width: 75%;
        min-height: 90%;
        width: 75%;
        height: 85%;
    }

    .product-area-top .image {
        width: 100%;
        height: 250px;
    }

    .cart-buy-btn .cart {
        width: 240px !important;
    }
}


/*________________________________*\
  ||     Responsive For 769px     ||
\*________________________________*/
@media (max-width:768px) {
    .brigtcamp {
        background-color: var(--white);
    }

    .brigtcamp-area {
        background-color: var(--white);
        padding: 16px;
        border-radius: 6px;
        margin-top: -10px;
        border-radius: 0;
    }

    .product-cart-area {
        margin: 0 auto;
    }

    .product-cart .product-content {
        min-height: 200px;
    }

    /*****  images  *****/
    .product-cart .images img {
        width: 60%;
    }

    .product-content {
        margin-top: 20px;
    }

    .brigtcamp-area {
        flex-wrap: wrap;
        padding: 8px 0;
    }

    .my-modal .modal-content.lg {
        max-width: 95%;
        max-height: 94dvh;
    }


    /* message btn */
    .right-fixed {
        position: fixed;
        right: 4px;
        bottom: 100px;
    }

    .right-fixed.up-btn {
        bottom: 260px;
        right: 4px;
    }

    .right-fixed.up-btn.active {
        bottom: 214px;
        right: 4px;
    }

    .product-cart .base.save {
        width: 96%;
        font-size: 12px;
    }
}


/*________________________________*\
  ||     Responsive For 480px     ||
\*________________________________*/
@media (max-width:480px) {
    .list-view-table {
        width: 320px;
    }


    .list-view-table table {
        width: 640px !important;
    }
}


/*________________________________*\
  ||     Spinner     ||
\*________________________________*/
.full-page-spinner {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100%;
    background-color: #101010d0;
    z-index: 20;
}

.dots-spinner {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dots-spinner div {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: bounce 0.34s infinite alternate;
    box-shadow: 1px 1px 10px white;
    border: 1px solid rgb(190, 189, 188);
}

.dots-spinner div:nth-child(2) {
    animation-delay: 0.1s;
}

.dots-spinner div:nth-child(3) {
    animation-delay: 0.19s;
}

@keyframes bounce {
    to {
        transform: translateY(-10px);
        opacity: 1;
    }
}


/*_______________________________*\
  ||     Spinner  Start Here     ||
\*_______________________________*/
/*
        < !-- full page loader (when active class will add then work it) --><div class="full-page-loader active"><div class="loader"></div></div>
*/
/* .full-page-loader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100dvh;
     background: rgba(0, 0, 0, 0.6);
     display: none;
     z-index: 20;
 }

 .full-page-loader.active {
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .full-page-loader .loader {
     position: absolute;
     width: 50px;
     aspect-ratio: 1;
     display: grid;
     z-index: 22;
 }

 .full-page-loader .loader::before,
 .full-page-loader .loader::after {
     content: "";
     grid-area: 1/1;
     --c: no-repeat radial-gradient(farthest-side, #25b09b 92%, #0000);
     background:
         var(--c) 50% 0,
         var(--c) 50% 100%,
         var(--c) 100% 50%,
         var(--c) 0 50%;
     background-size: 12px 12px;
     animation: l12 0.8s infinite;
 }

 .full-page-loader .loader::before {
     margin: 4px;
     filter: hue-rotate(45deg);
     background-size: 8px 8px;
     animation-timing-function: linear;
 }

 @keyframes l12 {
     100% {
         transform: rotate(.5turn);
     }
 } */


/* Full-page loader wrapper */
.full-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.full-page-loader.active {
    display: flex;
}

.full-page-loader .frame {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -200px;
    margin-left: -200px;
}

.full-page-loader .center {
    position: absolute;
    width: 170px;
    height: 170px;
    top: 90px;
    left: 90px;
}

.full-page-loader .dot-1 {
    position: absolute;
    z-index: 3;
    width: 30px;
    height: 30px;
    top: 95px;
    left: 95px;
    background: #fff;
    border-radius: 50%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: jump-jump-1 1.5s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite;
    animation: jump-jump-1 1.5s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite;
}

.full-page-loader .dot-2 {
    position: absolute;
    z-index: 2;
    width: 60px;
    height: 60px;
    top: 80px;
    left: 80px;
    background: #F0BE00;
    border-radius: 50%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: jump-jump-2 1.5s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
    animation: jump-jump-2 1.5s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
}

.full-page-loader .dot-3 {
    position: absolute;
    z-index: 1;
    width: 90px;
    height: 90px;
    top: 65px;
    left: 65px;
    background: var(--primary-color);
    border-radius: 50%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: jump-jump-3 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite;
    animation: jump-jump-3 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite;
}

@keyframes jump-jump-1 {

    0%,
    70% {
        box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes jump-jump-2 {

    0%,
    40% {
        box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes jump-jump-3 {

    0%,
    10% {
        box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
        -webkit-transform: scale(.6);
        transform: scale(.6);
    }

    100% {
        box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Animation */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 20px 16px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 16;
    animation: fadeSlide 0.3s ease-out;
}

.popup.active {
    display: flex;
}

/* Popup types */
.popup.success {
    background-color: var(--primary-color);
}

.popup.warning {
    background-color: #ffc107;
    color: #222;
}

.popup.danger {
    background-color: red;
}

/* Close button */
.popup .close-btn {
    margin-left: auto;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    border: none;
    background: transparent;
    color: inherit;
}