/*======================================
1-  Profile
2-  FAQs
3-  Account Login
4-  Product Details
5-  Shop
6-  Single Product
7-  Cart
8-  Checkout
9-  Policy
10- Contact
11- About
12- Home

========================================*/

/*======================================
Google Fonts
========================================*/
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&display=swap&family=Manrope:wght@200;300;400;500;600;700;800&display=swap");

/*======================================
General
========================================*/
:root {
    --main-color1: #64ccc9;
    --main-color2: #8ad1cf;
    --main-color3: #bec6c4;
    --second-color1: #212129;
    --second-color2: #383838;
    --second-color3: #777;
    --second-color4: #ddd;
    --white-color1: #fff;
    --white-color2: #f9f9f9;
    --white-color3: #eee;
    --font1: "Manrope", sans-serif;
    --font2: "Quicksand", sans-serif;
}

/*======================================
1- Profile
========================================*/
#Profile-Page .profile-sidenav-wrap {
    background: var(--white-color1);
    border-radius: 4px;
    border: 1px solid var(--white-color3);
    width: 100%;
}

#Profile-Page .profile-sidenav-wrap .profile-panel {
    flex-grow: 1;
    padding-left: 30px;
}

#Profile-Page .profile-sidenav-wrap .profile-sidenav li {
    width: 100%;
}

#Profile-Page .profile-sidenav-wrap .profile-sidenav .profile-nav-list .profile-nav-link {
    color: var(--second-color3);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 15px;
    padding: 12px 20px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

#Profile-Page .profile-sidenav-wrap .profile-sidenav .profile-nav-list i {
    width: 28px;
    font-size: 16px;
    color: var(--second-color3);
}

#Profile-Page .profile-sidenav-wrap .profile-sidenav .profile-nav-link.active,
#Profile-Page .profile-sidenav-wrap .profile-sidenav .profile-nav-link:hover {
    background-color: var(--white-color3);
}

#Profile-Page .tab-content {
    padding: 30px;
    background-color: var(--white-color1);
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#Profile-Page .tab-content .section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--second-color3);
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--white-color3);
}

#Profile-Page .tab-content #dashboard .card {
    background-color: var(--white-color1);
    border-radius: 10px;
    border: none;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1),
        0 6px 6px rgba(0, 0, 0, 0.1),
        0 3px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease-in-out;
}

#Profile-Page .tab-content #dashboard .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 5px 10px rgba(0, 0, 0, 0.15);
}

#Profile-Page .tab-content #dashboard .my-bg {
    background: linear-gradient(135deg, var(--white-color1), var(--main-color1));
    border-radius: 10px;
}

#Profile-Page .tab-content #dashboard .card .card-statistic .card-icon-large i {
    font-size: 100px;
    opacity: 0.8;
    color: var(--white-color1);
}

#Profile-Page .tab-content #dashboard .card .card-statistic .card-icon {
    text-align: center;
    line-height: 50px;
    position: absolute;
    right: 15px;
    top: 15px;
    opacity: 0.7;
}

#Profile-Page .tab-content #dashboard .card .card-title {
    font-size: 1.2rem;
    color: var(--second-color2);
    font-weight: 500;
    max-width: 70%;
}

#Profile-Page .tab-content #dashboard .card .d-flex.align-items-center.mb-0 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    color: var(--second-color3);
}

@media (max-width: 768px) {
    #Profile-Page .tab-content #dashboard .card {
        margin-bottom: 20px;
    }

    #Profile-Page .tab-content #dashboard .card .card-statistic .card-icon-large i {
        font-size: 80px;
    }
}

#Profile-Page .order-modal .modal-header,
#Profile-Page .order-modal .modal-footer {
    background-color: var(--white-color1);
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

#Profile-Page .order-modal .modal-title {
    font-size: 20px;
    font-weight: 500;
}

#Profile-Page .order-modal .modal-body {
    padding: 25px;
    background-color: var(--white-color1);
    border-radius: 8px;
}

#Profile-Page .order-modal .order-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

#Profile-Page .order-modal .info-item {
    background-color: var(--white-color2);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: var(--second-color2);
    font-size: 14px;
}

#Profile-Page .order-modal .product-list-wrapper {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 20px;
    background-color: var(--white-color2);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

#Profile-Page .order-modal .product-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

#Profile-Page .order-modal .product-table th,
#Profile-Page .order-modal .product-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--white-color3);
    vertical-align: middle;
}

#Profile-Page .order-modal .product-table th {
    background-color: var(--white-color2);
    color: var(--second-color3);
    font-size: 14px;
    font-weight: 600;
}

#Profile-Page .order-modal .product-table td img {
    width: 50px;
    height: auto;
    border-radius: 8px;
}

#Profile-Page .order-modal .product-list-wrapper::-webkit-scrollbar {
    width: 6px;
}

#Profile-Page .order-modal .product-list-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--main-color1);
    border-radius: 4px;
}

#Profile-Page .order-modal .product-link {
    color: var(--second-color3);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    font-size: 14px;
    transition: color 0.2s;
}

#Profile-Page .order-modal .product-link:hover {
    color: var(--main-color1);
    text-decoration: underline;
}

#Profile-Page .order-modal .order-summary {
    background-color: var(--white-color2);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#Profile-Page .order-modal .order-summary td {
    padding: 6px;
    font-size: 14px;
    color: var(--second-color3);
    font-weight: 500;
}

#Profile-Page .order-modal .order-summary .text-end {
    text-align: right;
}

#Profile-Page .order-modal .btn {
    padding: 10px 20px;
}

#Profile-Page .tab-content #orders .table {
    width: 100%;
    margin-bottom: 1rem;
    color: var(--second-color1);
    text-align: center;
    vertical-align: middle;
}

#Profile-Page .tab-content #orders .table thead th {
    background-color: var(--main-color1) !important;
    color: var(--white-color1);
    font-weight: 600;
}

#Profile-Page .tab-content #orders .table th {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

#Profile-Page .tab-content #orders .table a {
    color: var(--main-color1);
    font-weight: bold;
}

#Profile-Page .tab-content #orders .badge {
    display: inline-block;
    font-size: 0.7rem;
    text-align: center;
}

#Profile-Page .tab-content #account .section-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0;
    color: var(--second-color3);
    letter-spacing: 0.5px;
}

#Profile-Page .tab-content #account .form-control {
    border-radius: 8px;
    border: 1px solid var(--second-color4);
    padding: 12px;
    font-size: 16px;
    background-color: var(--white-color2);
    color: var(--second-color2);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 10px;
}

#Profile-Page .tab-content #account .form-control:focus {
    border-color: var(--main-color1);
    box-shadow: 0 0 10px #64ccc9aa;
}

#Profile-Page .tab-content #account label {
    font-weight: 500;
    color: var(--second-color3);
    margin-bottom: 6px;
}

#Profile-Page .tab-content #account .btn {
    padding: 10px 20px;
}

#Profile-Page .tab-content #account .form-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    margin: 30px 0;
}

#Profile-Page .tab-content #account .toggle-password {
    position: absolute;
    right: 25px;
    top: 45px;
    cursor: pointer;
    color: var(--main-color3);
    transition: color 0.3s ease;
}

#Profile-Page .tab-content #account .toggle-password:hover {
    color: var(--main-color1);
}

@media (max-width: 768px) {
    #Profile-Page .tab-content #account .section-subtitle {
        font-size: 16px;
    }
}

#Profile-Page .tab-content #addresses .address-card {
    background-color: var(--white-color2);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#Profile-Page .tab-content #addresses .address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

#Profile-Page .tab-content #addresses .address-header {
    border-bottom: 1px solid var(--white-color3);
}

#Profile-Page .tab-content #addresses .address-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--main-color1);
}

#Profile-Page .tab-content #addresses .address-options .btn {
    border: none;
    background: none;
}

#Profile-Page .tab-content #addresses .address-options .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--white-color3);
    transition: background-color 0.3s ease;
}

#Profile-Page .tab-content #addresses .dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
}

#Profile-Page .tab-content #addresses .dropdown-menu .dropdown-item {
    padding: 10px 16px;
    font-size: 0.8rem;
    transition: background-color 0.2s ease;
}

#Profile-Page .tab-content #addresses .dropdown-menu .dropdown-item:hover {
    background-color: var(--white-color2);
}

#Profile-Page .tab-content #addresses .dropdown-menu .dropdown-item i {
    margin-right: 8px;
    color: var(--second-color3);
}

#Profile-Page .tab-content #addresses .address-body p {
    margin-bottom: 0.5rem;
    color: var(--second-color3);
}

#Profile-Page .tab-content #addresses .address-body p:first-of-type {
    font-weight: 600;
    color: var(--second-color2);
}

#Profile-Page .tab-content #addresses .badge {
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 20px;
    padding: 10px 12px;
    background-color: var(--main-color1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: var(--white-color1);
}

#Profile-Page .tab-content #addresses .badge.bg-primary {
    background-color: var(--main-color1);
}

@media (max-width: 768px) {
    #Profile-Page .tab-content #addresses .address-body p {
        font-size: 0.9rem;
    }

    #Profile-Page .tab-content #addresses .badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

.form-modal .modal-dialog {
    max-width: 600px;
}

.form-modal .modal-header {
    padding: 25px;
}

.form-modal .modal-header h5 {
    font-size: 20px;
    font-weight: 500;
}

.form-modal .modal-body {
    padding: 25px;
}

.form-modal .modal-body .form-group {
    margin-bottom: 15px;
}

.form-modal .modal-body .form-group label {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
}

.form-modal .modal-body .form-group input {
    height: 45px;
    width: 100%;
    border: 1px solid var(--white-color3);
    border-radius: 4px;
    padding: 0px 18px;
    font-size: 14px;
}

.form-modal .modal-body .form-group select {
    padding-right: 38px;
    padding-left: 15px;
    background-position: center right 17px;
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
    background-repeat: no-repeat;
    background-size: 10px 10px;
    font-size: 14px;
    font-weight: 500;
}

.form-modal .modal-body .form-group select:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-modal .modal-body .form-group select {
    height: 45px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--white-color3);
}

.form-modal .modal-body .form-group select:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-modal .modal-body .form-group textarea {
    padding: 18px;
    font-size: 14px;
}

.form-modal .modal-footer {
    padding: 25px;
}

.form-modal .custom-checkbox {
    display: none;
}

.form-modal .form-check {
    display: flex;
    align-items: center;
}

.form-modal .form-check-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid var(--main-color1);
    margin-right: 10px;
    transition: all 0.3s ease;
    margin-bottom: -4px;
    background-color: var(--white-color1);
}

.form-modal .custom-checkbox:checked+.form-check-label::before {
    background-color: var(--main-color1);
    border-color: var(--main-color1);
    background-image: url('data:image/svg+xml,%3Csvg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M5.5 10.5L3 8L2 9L5.5 12.5L13.5 4.5L12.5 3.5L5.5 10.5Z" fill="white"/%3E%3C/svg%3E');
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
}

.form-modal .form-check-label:hover::before {
    border-color: var(--main-color2);
}

.form-modal .form-check-label {
    font-weight: 600;
    color: var(--second-color3);
    cursor: pointer;
}

/*======================================
2- FAQs
========================================*/
#FAQ-Page .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding-right: 40px;
}

#FAQ-Page .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

#FAQ-Page .accordion-item .accordion-button {
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    width: 100%;
    display: block;
    overflow: hidden;
    border: none;
    padding: 15px 25px;
    padding-right: 40px;
    background-color: var(--white-color1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #FAQ-Page .accordion-item .accordion-button {
        padding: 18px 20px;
        padding-right: 40px;
    }
}

@media (max-width: 767px) {
    #FAQ-Page .accordion-item .accordion-button {
        padding: 15px 20px;
        padding-right: 40px;
    }
}

#FAQ-Page .accordion-item .accordion-button .title {
    font-size: 14px;
    position: relative;
    font-weight: 600;
    float: left;
    line-height: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #FAQ-Page .accordion-item .accordion-button .title {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    #FAQ-Page .accordion-item .accordion-button .title {
        font-size: 14px;
    }
}

#FAQ-Page .accordion-item .accordion-button i {
    font-size: 15px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
}

#FAQ-Page .accordion-button:not(.collapsed) {
    background-color: var(--main-color1);
    border-radius: 4px 4px 0 0;
    color: var(--second-color1);
    font-weight: bold;
}

#FAQ-Page .accordion-button:not(.collapsed) i::before {
    content: "\f068";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

#FAQ-Page .accordion-button::after {
    display: none;
}

#FAQ-Page .accordion-collapse {
    border: none;
}

#FAQ-Page .accordion-body {
    border-radius: 0 0 4px 4px;
    padding: 25px;
    background-color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #FAQ-Page .accordion-body {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    #FAQ-Page .accordion-body {
        padding: 20px;
    }
}

#FAQ-Page .accordion-body p {
    margin: 0;
    margin-bottom: 20px;
    color: #777;
}

#FAQ-Page .accordion-body p:last-child {
    margin: 0;
}

#FAQ-Page .accordion-item {
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 0px 20px #00000007;
    box-shadow: 0px 0px 20px #00000007;
    border-radius: 4px;
}

#FAQ-Page .accordion-item:last-child {
    margin: 0;
}

/*======================================
3- Account Login
========================================*/
#Login-Page .login-form {
    padding: 42px;
    border-radius: 4px;
    background-color: var(--white-color1);
    -webkit-box-shadow: 0px 5px 40px #00000008;
    box-shadow: 0px 5px 40px #00000008;
}

@media (max-width: 767px) {
    #Login-Page .login-form {
        padding: 30px;
    }
}

.pagination-list li .page-link {
    border: 1px solid var(--second-color4) !important;
    border-radius: 4px !important;
    font-size: 15px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
}

.pagination-list li.active .page-link {
    background-color: var(--main-color1) !important;
    color: white;
    border: 1px solid var(--main-color1);
    border-radius: 4px;
}

#Login-Page .login-form .card-body {
    padding: 0;
}

#Login-Page .login-form .icon-circle {
    display: inline-block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--white-color2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--main-color1);
    margin: auto;
    margin-bottom: 20px;
}

#Login-Page .login-form .icon-circle i {
    margin: 0;
}

#Login-Page .login-form .title {
    margin-bottom: 30px;
}

#Login-Page .login-form .title h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--second-color1);
    margin-bottom: 10px;
}

#Login-Page .login-form .social-login .btn {
    padding: 10px 12px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid #eee;
    display: block;
    font-weight: 600;
}

#Login-Page .login-form .social-login .btn i {
    display: inline-block;
    margin-right: 4px;
    font-size: 15px;
}

#Login-Page .account-login .bottom-content {
    margin-top: 25px;
}

#Login-Page .account-login .alt-option {
    margin: 30px 0;
    text-align: center;
    display: inline-block;
    position: relative;
    width: 100%;
    z-index: 1;
}

@media (max-width: 767px) {
    #Login-Page .account-login .alt-option {
        margin: 20px 0;
    }
}

#Login-Page .account-login .alt-option span {
    font-size: 14px;
    background: #fff;
    color: #888;
    padding: 5px 15px;
}

#Login-Page .account-login .alt-option:before {
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    width: 100%;
    background: #e6e6e6;
    content: "";
    z-index: -1;
}

#Login-Page .toggle-password {
    position: absolute;
    right: 25px;
    top: 45px;
    cursor: pointer;
    color: var(--main-color3);
    transition: color 0.3s ease;
}

#Login-Page .toggle-password:hover {
    color: var(--main-color1);
}

#Login-Page .form-group {
    margin-bottom: 15px;
}

#Login-Page .form-group label {
    display: block;
    margin-bottom: 7px;
    width: 100%;
}

#Login-Page .form-group .form-control {
    padding: 0 18px;
    -webkit-transition: color .25s, background-color .25s, border-color .25s;
    transition: color .25s, background-color .25s, border-color .25s;
    border: 1px solid var(--white-color3);
    background-color: var(--white-color2);
    color: var(--second-color2);
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 46px;
    border-radius: 4px !important;
    overflow: hidden;
}

#Login-Page .form-group .form-control:focus {
    border-color: var(--main-color1);
}

#Login-Page .lost-pass {
    color: var(--second-color3);
}

#Login-Page .lost-pass:hover {
    color: var(--main-color1);
}

#Login-Page .button {
    margin-top: 30px;
}

#Login-Page .button {
    margin-top: 10px;
}

@media (max-width: 767px) {
    #Login-Page .button {
        margin-top: 10px;
    }
}

#Login-Page .button .btn {
    width: 100%;
}

#Login-Page .button .btn {
    width: 100%;
}

#Login-Page .outer-link {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--second-color2);
    margin-top: 15px;
    text-align: center;
}

#Login-Page .outer-link a {
    color: var(--main-color1);
}

#Login-Page .outer-link a:hover {
    text-decoration: underline;
}

/*======================================
4- Product Details
========================================*/
#Product-Details-Page .item-details .top-area {
    background-color: var(--white-color1);
    padding: 30px;
    border: 1px solid var(--white-color3);
    border-radius: 4px;
}

#Product-Details-Page .item-details .top-area .product-images img {
    width: 100%;
    cursor: pointer;
    border: 1px solid var(--white-color3);
    border-radius: 4px;
    overflow: hidden;
    padding: 5px;
}

#Product-Details-Page .swiper-wrapper {
    margin-top: 10px;
}

#Product-Details-Page .item-details .top-area .product-images .images {
    display: -ms-grid;
    display: grid;
    Grid-template-columns: repeat(5, 1fr);
    Grid-gap: 1em 1em;
    Margin-top: 1em;
}

@media (max-width: 767px) {
    #Product-Details-Page .item-details .top-area .product-images .images {
        Grid-template-columns: repeat(3, 1fr);
    }
}

@-webkit-keyframes fadeIn {
    to {
        Opacity: 1;
    }
}

@keyframes fadeIn {
    to {
        Opacity: 1;
    }
}

#Product-Details-Page .item-details .top-area .product-images .fade-in {
    -webkit-animation: fadeIn 0.5s ease-in 1 forwards;
    animation: fadeIn 0.5s ease-in 1 forwards;
}

#Product-Details-Page .item-details .top-area .zoom-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: crosshair;
}

#Product-Details-Page .item-details .top-area .zoom-container img {
    transition: transform 0.3s ease;
    transform: scale(1);
}

@media (min-width: 1024px) {
    #Product-Details-Page .item-details .top-area .zoom-container img:hover {
        transform: scale(2);
    }
}

#Product-Details-Page .item-details .top-area .full-screen-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--main-color1);
    color: var(--white-color1);
    border: none;
    border-radius: 50%;
    padding: 3px;
    cursor: pointer;
    z-index: 1;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

#Product-Details-Page .item-details .top-area .full-screen-btn:hover {
    background-color: var(--main-color2);
}

#Product-Details-Page .item-details .top-area .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

#Product-Details-Page .item-details .top-area .overlay.active {
    display: flex;
}

#Product-Details-Page .item-details .top-area .overlay-img img {
    width: 100%;
    height: auto;
}

#Product-Details-Page .item-details .top-area .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white-color1);
    font-size: 30px;
    cursor: pointer;
}

#Product-Details-Page .item-details .top-area .product-info {
    padding-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    #Product-Details-Page .item-details .top-area .product-info {
        padding: 0;
        margin-top: 30px;
    }
}

#Product-Details-Page .item-details .top-area .swiper-container {
    overflow-x: hidden;
}

#Product-Details-Page .item-details .top-area .product-info .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    #Product-Details-Page .item-details .top-area .product-info .title {
        font-size: 18px;
    }
}

#Product-Details-Page .item-details .top-area .product-info .category {
    display: block;
    margin-bottom: 15px;
}

#Product-Details-Page .item-details .top-area .product-info .category i {
    display: inline-block;
    margin-right: 5px;
    color: var(--second-color4);
}

#Product-Details-Page .item-details .top-area .product-info .category a {
    color: var(--second-color3);
    font-weight: 400;
    display: inline-block;
    margin-left: 5px;
}

#Product-Details-Page .item-details .top-area .product-info .category a:hover {
    color: var(--main-color1);
}

#Product-Details-Page .item-details .top-area .product-info .price {
    color: var(--second-color2);
    display: block;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 1px solid var(--white-color3);
    padding-bottom: 15px;
}

@media (max-width: 767px) {
    #Product-Details-Page .item-details .top-area .product-info .price {
        font-size: 20px;
    }
}

#Product-Details-Page .item-details .top-area .product-info .price span {
    display: inline-block;
    margin-left: 15px;
    color: var(--second-color3);
    text-decoration: line-through;
    font-size: 23px;
    font-weight: 500;
}

@media (max-width: 767px) {
    #Product-Details-Page .item-details .top-area .product-info .price span {
        font-size: 20px;
    }
}

#Product-Details-Page .item-details .top-area .product-info .form-group {
    margin-top: 20px;
}

#Product-Details-Page .item-details .top-area .title-label {
    display: inline-block !important;
    margin-bottom: 3px;
}

#Product-Details-Page .item-details .top-area .color-option {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

#Product-Details-Page .item-details .top-area .single-radio {
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease;
}

#Product-Details-Page .item-details .top-area .single-radio input[type="radio"] {
    display: none;
}

#Product-Details-Page .item-details .top-area .single-radio label span {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.4s ease;
    background-clip: padding-box;
    border: 2px solid var(--second-color4);
}

#Product-Details-Page .item-details .top-area .single-radio:hover label span {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

#Product-Details-Page .item-details .top-area .single-radio.radio-style-1 label span {
    background: var(--main-color1);
}

#Product-Details-Page .item-details .top-area .single-radio.radio-style-2 label span {
    background: var(--main-color3);
}

#Product-Details-Page .item-details .top-area .single-radio.radio-style-3 label span {
    background: var(--second-color2);
}

#Product-Details-Page .item-details .top-area .single-radio.radio-style-4 label span {
    background: var(--second-color3);
}

#Product-Details-Page .item-details .top-area .single-radio input[type="radio"]:checked+label span {
    border: 2px solid var(--main-color1);
    transform: scale(1.2);
}

#Product-Details-Page .item-details .top-area .selected-color {
    font-size: 15px;
    color: var(--second-color3);
    font-weight: 400;
}

#Product-Details-Page .item-details .top-area .selected-color span#selected-color-text {
    font-weight: 700;
    color: var(--main-color1);
    text-transform: capitalize;
    transition: all 0.3s ease;
}

#Product-Details-Page .item-details .top-area .product-info .form-group input:focus,
#Product-Details-Page .item-details .top-area .product-info .form-group select:focus {
    border-color: var(--main-color1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

#Product-Details-Page .item-details .top-area .quantity-input-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: space-between;
    border: 1px solid var(--second-color4);
    border-radius: 4px;
}

#Product-Details-Page .item-details .top-area .quantity-btn {
    background-color: var(--main-color1);
    border: none;
    color: var(--white-color1);
    font-size: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    outline: none;
    height: 46px;
    width: 12%;
}

#Product-Details-Page .item-details .top-area .quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    outline: none;
    background-color: var(--white-color1);
}

#Product-Details-Page .item-details .top-area .quantity-btn:hover {
    background-color: var(--main-color2);
}

#Product-Details-Page .item-details .top-area .product-info .cart-button {
    width: 100%;
}

#Product-Details-Page .item-details .top-area .product-info .cart-button .btn {
    width: 100%;
    height: 46px;
    padding: 0;
}

#Product-Details-Page .item-details .top-area .product-info .wish-button {
    display: inline-block;
    width: 100%;
}

@media (max-width: 767px) {
    #Product-Details-Page .item-details .top-area .product-info .wish-button {
        margin-top: 12px;
    }
}

#Product-Details-Page .item-details .top-area .product-info .wish-button .btn {
    display: inline-block;
    margin-right: 7px;
    border: 1px solid var(--second-color4);
    border-radius: 4px;
    color: var(--second-color2);
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    height: 46px;
    width: 100%;
}

#Product-Details-Page .item-details .top-area .product-info .wish-button .btn:hover {
    color: var(--white-color1);
    background-color: var(--main-color1);
    border-color: transparent;
}

#Product-Details-Page .item-details .top-area .product-info .wish-button .btn:last-child {
    margin: 0;
}

#Product-Details-Page .item-details .top-area .product-info .wish-button .btn i {
    font-size: 16px;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: 2px;
}

#Product-Details-Page .item-details .top-area .quantity-input::-webkit-outer-spin-button,
#Product-Details-Page .item-details .top-area .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#Product-Details-Page .item-details .top-area .quantity-input[type="number"] {
    -moz-appearance: textfield;
}

#Product-Details-Page .product-details-info .nav-tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--white-color3);
    margin-bottom: 15px;
}

#Product-Details-Page .product-details-info .nav-item {
    margin: 0;
    flex-grow: 1;
    text-align: center;
}

#Product-Details-Page .product-details-info .nav-link {
    color: var(--second-color3);
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
    border: none;
    background-color: transparent;
    position: relative;
    transition: color 0.3s ease;
}

#Product-Details-Page .product-details-info .nav-link.active {
    color: var(--main-color1);
    border: none;
}

#Product-Details-Page .product-details-info .nav-link::before {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background-color: var(--main-color1);
    transition: width 0.3s ease;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

#Product-Details-Page .product-details-info .nav-link.active::before {
    width: 50%;
}

#Product-Details-Page .product-details-info .nav-link:hover {
    border: none;
    color: var(--main-color1);
}

#Product-Details-Page .product-details-info .nav-link:hover::before {
    width: 50%;
}

@media (max-width: 768px) {
    #Product-Details-Page .product-details-info .nav-tabs {
        flex-direction: column;
        margin-bottom: 15px;
    }

    #Product-Details-Page .product-details-info .nav-link {
        padding: 10px 0;
    }

    #Product-Details-Page .product-details-info .tab-content {
        padding: 20px;
    }
}

#Product-Details-Page .product-details-info .custom-tabs {
    background-color: transparent;
    padding: 0px;
    margin-top: 30px;
}

#Product-Details-Page .product-details-info .single-block {
    background-color: var(--white-color1);
    padding: 30px;
    border: 1px solid var(--white-color3);
    border-radius: 4px;
    margin-top: 30px;
}

.product-details .table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    margin: 0 auto;
}

.product-details .table td {
    padding: 20px;
    vertical-align: middle;
    font-size: 15px;
    color: var(--second-color2);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.product-details .details-label {
    font-weight: 600;
    font-size: 17px;
    color: var(--second-color2);
    text-transform: capitalize;
    padding-right: 10px;
}

.product-details .details-value {
    font-size: 16px;
    color: var(--main-color1);
}

.product-details .details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-details .details-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.product-details .details-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--main-color1);
    font-size: 18px;
}

.product-details .table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--white-color2);
}

@media (max-width: 768px) {
    .product-details .table td {
        padding: 15px;
        font-size: 15px;
    }

    .product-details .details-label,
    .product-details .details-value {
        font-size: 15px;
    }
}

#Product-Details-Page .product-details-info #reviews .no-reviews {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--white-color3);
    border-radius: 12px;
    margin-top: 30px;
}

#Product-Details-Page .product-details-info #reviews .no-reviews-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--second-color3);
}

#Product-Details-Page .product-details-info #reviews .no-reviews-icon {
    font-size: 50px;
    color: var(--main-color1);
    margin-bottom: 20px;
}

#Product-Details-Page .product-details-info #reviews .no-reviews-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--second-color2);
    margin: 0;
}

#Product-Details-Page .product-details-info #reviews .no-reviews-info p {
    font-size: 16px;
    color: var(--second-color3);
    margin-top: 8px;
    max-width: 600px;
}

#Product-Details-Page .product-details-info #reviews .give-review h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

#Product-Details-Page .product-details-info #reviews .give-review ul li {
    display: block;
    margin-bottom: 12px;
}

#Product-Details-Page .product-details-info #reviews .give-review ul li span {
    color: var(--second-color3);
    display: inline-block;
    margin-right: 8px;
    min-width: 80px;
}

#Product-Details-Page .product-details-info #reviews .give-review ul li i {
    display: inline-block;
    color: #fecb00;
    font-size: 14px;
}

#Product-Details-Page .product-details-info #reviews .give-review .review-btn {
    margin-top: 30px;
    padding: 12px 30px;
    width: 100%;
    background-color: var(--main-color1);
    color: var(--white-color1);
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#Product-Details-Page .product-details-info #reviews .give-review .review-btn:hover {
    color: var(--white-color1);
    background-color: var(--main-color2);
}

#Product-Details-Page .product-details-info .title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

#Product-Details-Page .product-details-info #reviews .reviews .single-review {
    position: relative;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    #Product-Details-Page .product-details-info #reviews .reviews .single-review {
        padding-left: 0px;
    }
}

#Product-Details-Page .product-details-info #reviews .reviews .single-review:last-child {
    margin-bottom: 0;
}


#Product-Details-Page .product-details-info #reviews .reviews .single-review .review-info {
    position: relative;
    border: 1px solid var(--white-color3);
    border-radius: 4px;
    padding: 25px;
}

@media (max-width: 767px) {
    #Product-Details-Page .product-details-info #reviews .reviews .single-review .review-info {
        padding: 20px;
    }
}

#Product-Details-Page .product-details-info #reviews .reviews .single-review .review-info::before {
    position: absolute;
    top: 12px;
    right: 100%;
    width: 0;
    height: 0;
    border: solid transparent;
    content: '';
    pointer-events: none;
    margin-top: 9px;
    border-width: 10px;
    border-color: transparent;
    border-right-color: var(--white-color3);
}

@media (max-width: 767px) {
    #Product-Details-Page .product-details-info #reviews .reviews .single-review .review-info::before {
        top: 5px;
    }
}

#Product-Details-Page .product-details-info #reviews .reviews .single-review .review-info::after {
    position: absolute;
    top: 12px;
    right: 100%;
    width: 0;
    height: 0;
    border: solid transparent;
    content: '';
    pointer-events: none;
    margin-top: 10px;
    border-width: 9px;
    border-color: transparent;
    border-right-color: var(--white-color1);
}

@media (max-width: 767px) {
    #Product-Details-Page .product-details-info #reviews .reviews .single-review .review-info::after {
        top: 5px;
    }
}

#Product-Details-Page .product-details-info #reviews .reviews .single-review .review-info h4 {
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 767px) {
    #Product-Details-Page .product-details-info #reviews .reviews .single-review .review-info h4 {
        font-size: 14px;
    }
}

#Product-Details-Page .product-details-info #reviews .reviews .single-review .review-info h4 span {
    font-size: 14px;
    display: block;
    color: var(--second-color3);
    margin-top: 7px;
}

#Product-Details-Page .product-details-info #reviews .reviews .single-review .review-info .stars {
    margin-top: 8px;
}

#Product-Details-Page .product-details-info #reviews .reviews .single-review .review-info .stars li {
    display: inline-block;
    color: #fecb00;
    font-size: 14px;
}

#Product-Details-Page .product-details-info #reviews .reviews .single-review .review-info p {
    margin-top: 15px;
}

#Product-Details-Page .review-modal .modal-dialog {
    max-width: 600px;
}

#Product-Details-Page .review-modal .modal-header {
    padding: 25px;
}

#Product-Details-Page .review-modal .modal-header h5 {
    font-size: 20px;
    font-weight: 500;
}

#Product-Details-Page .review-modal .modal-body {
    padding: 25px;
}

#Product-Details-Page .review-modal .modal-body .form-group {
    margin-bottom: 15px;
}

#Product-Details-Page .review-modal .modal-body .form-group label {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
}

#Product-Details-Page .review-modal .modal-body .form-group input {
    height: 45px;
    width: 100%;
    border: 1px solid var(--white-color3);
    border-radius: 4px;
    padding: 0px 18px;
    font-size: 14px;
}

#Product-Details-Page .review-modal .modal-body .form-group select {
    padding-right: 38px;
    padding-left: 15px;
    background-position: center right 17px;
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
    background-repeat: no-repeat;
    background-size: 10px 10px;
    font-size: 14px;
    font-weight: 500;
}

#Product-Details-Page .review-modal .modal-body .form-group select:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#Product-Details-Page .review-modal .modal-body .form-group select {
    height: 45px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--second-color4);
}

#Product-Details-Page .review-modal .modal-body .form-group select:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#Product-Details-Page .review-modal .modal-body .form-group textarea {
    padding: 18px;
    font-size: 14px;
}

#Product-Details-Page .review-modal .modal-footer {
    padding: 25px;
}

/*======================================
5- Shop
========================================*/
#Shop-Page .product-grids .product-grid-topbar {
    padding: 15px 20px;
    background-color: var(--white-color1);
    border-radius: 4px;
    border: 1px solid var(--white-color3);
    padding-right: 15px;
}

#Shop-Page .product-grids .product-grid-topbar .product-sorting label {
    display: inline-block;
    margin: 0;
    padding: 8px 5px 8px 0;
    color: var(--second-color2);
    font-size: 14px;
    font-weight: normal;
}

#Shop-Page .product-grids .product-grid-topbar .product-sorting .form-control {
    width: 100%;
    max-width: 186px;
    margin-right: 10px;
    display: inline-block;
}

#Shop-Page .product-grids .product-grid-topbar .product-sorting select.form-control:not([size]):not([multiple]) {
    height: 42px;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid var(--white-color3);
    padding-right: 38px;
    background-position: center right 17px;
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
    background-repeat: no-repeat;
    background-size: 10px 10px;
}

#Shop-Page .product-grids .product-grid-topbar .product-sorting select.form-control:not([size]):not([multiple]):focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#Shop-Page .product-grids .product-grid-topbar .product-sorting .total-show-product {
    display: inline-block;
    color: var(--second-color3);
    font-weight: 400;
    font-size: 14px;
}

@media (max-width: 767px) {
    #Shop-Page .product-grids .product-grid-topbar .product-sorting .total-show-product {
        display: block;
        margin-top: 15px;
    }
}

#Shop-Page .product-grids .product-sidebar .accordion {
    margin-bottom: 20px;
}

#Shop-Page .product-grids .product-sidebar .accordion-button {
    color: var(--second-color1) !important;
}

#Shop-Page .product-grids .product-sidebar .accordion-button:not(.collapsed) {
    background: var(--main-color1);
}

#Shop-Page .product-grids .product-sidebar .single-widget {
    background-color: var(--white-color1);
    padding: 30px;
    border: 1px solid var(--white-color3);
    border-radius: 4px;
    margin-bottom: 30px;
}

#Shop-Page .product-grids .product-sidebar .single-widget input[type="range"]::-webkit-slider-thumb {
    background: var(--main-color1);
}

#Shop-Page .product-grids .product-sidebar .single-widget input[type="range"]::-moz-range-thumb {
    background: var(--main-color1); /* Change this to your desired color */
}


#Shop-Page .product-grids .product-sidebar .single-widget:last-child {
    margin-bottom: 0;
}

#Shop-Page .product-grids .product-sidebar .single-widget h3 {
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--white-color3);
    color: var(--second-color1);
    font-size: 15px;
    font-weight: 500;
}

#Shop-Page .product-grids .product-sidebar .single-widget.search form {
    position: relative;
}

#Shop-Page .product-grids .product-sidebar .single-widget.search form input {
    height: 50px;
    width: 100%;
    border: 1px solid var(--white-color3);
    border-radius: 6px;
    color: var(--second-color1);
    padding: 0px 15px;
    padding-right: 50px;
}

#Shop-Page .product-grids .product-sidebar .single-widget.search form button {
    height: 40px;
    width: 40px;
    text-align: center;
    display: block;
    border-radius: 6px;
    border: none;
    background-color: transparent;
    color: var(--second-color1);
    position: absolute;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-size: 16px;
}

#Shop-Page .product-grids .product-sidebar .single-widget.search form button:hover {
    color: var(--main-color1);
}

#Shop-Page .product-grids .product-sidebar .single-widget.range input {
    color: var(--second-color1);
    cursor: pointer;
}

#Shop-Page .product-grids .product-sidebar .single-widget.range ::-webkit-input-placeholder {
    color: var(--second-color1);
    opacity: 1;
}

#Shop-Page .product-grids .product-sidebar .single-widget.range :-ms-input-placeholder {
    color: var(--second-color1);
    opacity: 1;
}

#Shop-Page .product-grids .product-sidebar .single-widget.range ::-ms-input-placeholder {
    color: var(--second-color1);
    opacity: 1;
}

#Shop-Page .product-grids .product-sidebar .single-widget.range ::placeholder {
    color: var(--second-color1);
    opacity: 1;
}

#Shop-Page .product-grids .product-sidebar .single-widget.range :-ms-input-placeholder {
    color: var(--second-color1);
}

#Shop-Page .product-grids .product-sidebar .single-widget.range ::-ms-input-placeholder {
    color: var(--second-color1);
}

#Shop-Page .product-grids .product-sidebar .single-widget.range .range-inner {
    position: relative;
    padding-left: 15px;
}

#Shop-Page .product-grids .product-sidebar .single-widget.range label {
    color: var(--second-color1);
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 15px;
}

#Shop-Page .product-grids .product-sidebar .single-widget.range #rangePrimary {
    display: inline-block;
    border: none;
    margin-left: 10px;
}

#Shop-Page .product-grids .product-sidebar .single-widget.range input[type="range"]::-webkit-slider-thumb {
    background: var(--main-color1) !important;
}

#Shop-Page .product-grids .product-sidebar .single-widget.range input[type="range"]::-moz-range-thumb {
    background: var(--main-color1) !important;
}

#Shop-Page .product-grids .product-sidebar .single-widget.range input[type="range"]::-ms-thumb {
    background: var(--main-color1) !important;
}

#Shop-Page .product-grids .product-sidebar .single-widget.condition .form-check {
    display: block;
    margin-bottom: 10px;
}

#Shop-Page .product-grids .product-sidebar .single-widget.condition .form-check:last-child {
    margin: 0;
}

#Shop-Page .product-grids .product-sidebar .single-widget.condition .form-check-label {
    cursor: pointer;
}

#Shop-Page .product-grids .product-sidebar .single-widget.condition .form-check-input {
    cursor: pointer;
    margin-top: 4px;
}

#Shop-Page .product-grids .product-sidebar .single-widget.condition .form-check-input:checked {
    background-color: var(--main-color1);
    border-color: var(--main-color1);
}

#Shop-Page .product-grids .product-sidebar .single-widget .list li {
    margin-bottom: 12px;
}

#Shop-Page .product-grids .product-sidebar .single-widget .list li:last-child {
    margin: 0;
}

#Shop-Page .product-grids .product-sidebar .single-widget .list li a {
    color: var(--second-color2);
    position: relative;
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    margin-right: 3px;
}

#Shop-Page .product-grids .product-sidebar .single-widget .list li a:hover {
    color: var(--main-color1);
}

#Shop-Page .product-grids .product-sidebar .single-widget .list li span {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
}

#Shop-Page .product-grids .product-sidebar .single-widget.banner a img {
    width: 100%;
}

/*======================================
6- Single Product - Modern Hover Effects
========================================*/
.single-product {
    border: 1px solid var(--white-color3);
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
    margin-top: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    background: var(--white-color1);
    overflow: hidden;
    position: relative;
}

.single-product:hover {
    transform: translateY(-5px);
    border: 2px solid var(--main-color1);
    background: linear-gradient(135deg, var(--main-color1) 30%, var(--main-color2) 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.single-product:hover .product-info .title {
    color: var(--white-color1);
}

.single-product .product-image {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    transition: all 0.5s ease-in-out;
}

.single-product .product-image .overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 1;
}

.single-product:hover .product-image .overlay {
    opacity: 1;
}

.single-product .product-image .cat-tag {
    background: var(--main-color1);
    border-radius: 2px;
    font-size: 12px;
    color: var(--white-color1);
    font-weight: 600;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    z-index: 2;
}

.single-product .product-image img {
    width: 100%;
    transition: transform 0.5s ease-in-out;
    border-radius: 8px;
}

@media (min-width: 768px) {
    #Home-Page .single-product .product-image img {
        max-height: 190px;
    }
}

@media (min-width: 1025px) {
    #Home-Page .single-product .product-image img {
        max-height: 210px;
    }
}

.single-product:hover .product-image img {
    transform: scale(1.1) rotate(-5deg);
}

.single-product .product-image .button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.single-product:hover .product-image .button {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}

.single-product .product-image .button .btn {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    width: 140px;
    background-color: var(--main-color1);
    color: var(--white-color1);
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.4s ease;
}

.single-product .product-image .button .btn:hover {
    background-color: var(--main-color2);
    transform: scale(1.1);
}

.single-product .product-info {
    padding: 15px 0;
    text-align: center;
}

.single-product .product-info .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--second-color1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 35px;
    transition: color 0.3s ease;
}

.single-product .product-info .review {
    margin-top: 10px;
}

.single-product .product-info .review li {
    display: inline-block;
}

.single-product .product-info .review li i {
    color: #fecb00;
    font-size: 14px;
}

.single-product .product-info .review li span {
    margin-left: 4px;
    color: var(--second-color3);
    font-size: 13px;
}

.single-product .product-info .price {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color1);
}

.single-product:hover .price {
    color: var(--white-color1);
}

.single-product .action-icons {
    position: absolute;
    top: 0px;
    right: 15px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    z-index: 2;
}

.single-product:hover .action-icons {
    opacity: 1;
    transform: translateY(-5px);
}

.single-product .action-icons button {
    background-color: var(--main-color1);
    border: none;
    border-radius: 50%;
    margin-left: 5px;
    cursor: pointer;
    color: var(--white-color1);
    transition: background-color 0.3s ease, transform 0.4s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.single-product .action-icons button:hover {
    background-color: var(--main-color2);
    transform: scale(1.1);
}


/*======================================
7- Cart
========================================*/
#Cart-Page .cart-list-head {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--second-color1) !important;
}

#Cart-Page .cart-list-title th {
    background-color: var(--white-color1);
    padding: 18px 20px;
    border: 1px solid var(--white-color3);
    color: var(--second-color1);
    font-weight: bold;
    font-size: 14px;
}

#Cart-Page .cart-single-list td {
    vertical-align: middle;
    text-align: center;
    padding: 10px 15px;
    background-color: var(--white-color1);
    border: 1px solid var(--white-color3);
    color: var(--second-color3);
}

#Cart-Page .cart-single-list td img {
    width: 100%;
}

#Cart-Page .cart-single-list td.images {
    min-width: 100px;
}

#Cart-Page .cart-single-list td .remove-item {
    color: var(--white-color1);
    background-color: var(--main-color1);
    font-size: 12px;
    height: 25px;
    width: 25px;
    line-height: 25px;
    border-radius: 50%;
    font-weight: bold;
}

#Cart-Page .cart-single-list td .remove-item:hover {
    color: var(--white-color1);
    background-color: var(--main-color2);
}

#Cart-Page .cart-single-list td.product {
    text-align: left;
    min-width: 250px;
}

#Cart-Page .cart-single-list td .product-name {
    line-height: 18px;
}

#Cart-Page .cart-single-list td .product-name a {
    font-size: 14px;
    color: var(--second-color2);
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

#Cart-Page .cart-single-list td .product-name a:hover {
    color: var(--main-color1);
}


#Cart-Page .cart-single-list td .product-des span {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
}

#Cart-Page .cart-single-list td .product-des span em {
    font-style: normal;
    color: var(--second-color2);
}

@media (max-width: 576px) {
    #Cart-Page .cart-list-title th {
        font-size: 12px;
        padding: 12px 10px;
    }

    #Cart-Page .cart-single-list td {
        padding: 8px 6px;
        font-size: 12px;
    }

    #Cart-Page .cart-single-list td img {
        width: 80px;
    }

    #Cart-Page .cart-single-list td .product-name a {
        font-size: 12px;
    }

    #Cart-Page .cart-single-list td .product-des span {
        font-size: 10px;
    }

    #Cart-Page .cart-single-list td .remove-item {
        font-size: 10px;
        height: 20px;
        width: 20px;
        line-height: 20px;
    }
}

#Cart-Page .shopping-cart .total-amount .right ul li {
    font-size: 14px;
    font-weight: 500;
    color: var(--second-color2);
    margin-bottom: 12px;
}

#Cart-Page .shopping-cart .total-amount .right ul li span {
    display: inline-block;
    float: right;
}

#Cart-Page .shopping-cart .total-amount .right {
    padding: 40px;
    border: 1px solid var(--white-color3);
    background-color: var(--white-color1);
    border-radius: 4px;
}

@media (max-width: 767px) {
    #Cart-Page .shopping-cart .total-amount .right {
        padding: 30px;
        margin-top: 30px;
    }
}

#Cart-Page .shopping-cart .total-amount .right .button {
    margin-top: 30px;
}

#Cart-Page .shopping-cart .total-amount .right .btn {
    width: 100%;
    margin-bottom: 8px;
    text-align: center;
    padding: 12px 20px;
}

#Cart-Page .shopping-cart .total-amount .right .btn:last-child {
    margin: 0;
}

@media (max-width: 767px) {
    #Cart-Page .shopping-cart p {
        padding: 3px 0;
    }
}

#Cart-Page .shopping-cart .count-input {
    position: relative;
}

#Cart-Page .shopping-cart .count-input input[type="number"] {
    width: 80px;
    padding: 10px;
    border: 2px solid var(--second-color4);
    border-radius: 5px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 1rem;
}

#Cart-Page .shopping-cart .count-input input[type="number"]::-webkit-inner-spin-button,
#Cart-Page .shopping-cart .count-input input[type="number"]::-webkit-outer-spin-button {
    margin: 0;
}

#Cart-Page .shopping-cart .count-input input[type="number"]:hover,
#Cart-Page .shopping-cart .count-input input[type="number"]:focus {
    border-color: var(--main-color1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    outline: none;
}

#Cart-Page .shopping-cart .count-input input[type="number"]:focus {
    background-color: var(--white-color2);
}

/*======================================
8- Checkout
========================================*/
#Checkout-Page .checkout-section {
    background-color: var(--white-color1);
    padding: 25px;
    border: 1px solid var(--white-color3);
    border-radius: 4px;
}

#Checkout-Page .checkout-section .title {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--white-color3);
}

#Checkout-Page .checkout-section .title h5 {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--second-color1);
    padding-bottom: 12px;
}

#Checkout-Page .checkout-section .title .btn {
    margin-bottom: 10px;
    padding: 12px;
}

#Checkout-Page .checkout-section .title .btn i {
    margin-right: 5px;
}

#Checkout-Page .checkout-section .saved-addresses {
    margin-top: 20px;
}

#Checkout-Page .checkout-section .address-item {
    background-color: var(--white-color2);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#Checkout-Page .checkout-section .address-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#Checkout-Page .checkout-section .no-address {
    text-align: center;
    padding: 2rem;
    background-color: var(--white-color2);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#Checkout-Page .checkout-section .empty-state-icon {
    font-size: 2.5rem;
    color: var(--second-color3);
}

#Checkout-Page .checkout-section .empty-state-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--second-color3);
}

#Checkout-Page .checkout-section .empty-state-text {
    color: var(--second-color3);
    font-size: 0.9rem;
}

#Checkout-Page .checkout-section .custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#Checkout-Page .checkout-section .custom-radio input[type="radio"] {
    display: none;
}

#Checkout-Page .checkout-section .custom-radio-label {
    position: relative;
    padding-left: 30px;
    color: var(--second-color3);
}

#Checkout-Page .checkout-section .custom-radio-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    border: 2px solid var(--main-color1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

#Checkout-Page .checkout-section .custom-radio input[type="radio"]:checked+.custom-radio-label::before {
    background-color: var(--main-color1);
    border-color: var(--main-color2);
}

#Checkout-Page .checkout-section .dropdown .dropdown-menu {
    min-width: 120px;
    z-index: 1;
}

#Checkout-Page .checkout-section .dropdown .btn {
    color: var(--main-color1);
    z-index: 0;
}

#Checkout-Page .checkout-section .dropdown-item {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    color: var(--second-color2);
}

#Checkout-Page .checkout-section .dropdown-item.text-danger {
    color: #dc3545;
}

#Checkout-Page .checkout-section .form-check {
    padding: 0 25px;
}

#Checkout-Page .checkout-section .form-check-input {
    mai--main-color1: var(--main-color1);
}

#Checkout-Page .checkout-section .billing-address.d-none {
    display: none;
}

#Checkout-Page .checkout-section .billing-address.d-block {
    display: block;
}

#Checkout-Page .checkout-sidebar-coupon {
    background-color: var(--white-color1);
    padding: 25px;
    border: 1px solid var(--white-color3);
    border-radius: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    #Checkout-Page .checkout-sidebar-coupon {
        margin-top: 30px;
    }
}

#Checkout-Page .checkout-sidebar-coupon .single-form {
    position: relative;
}

#Checkout-Page .checkout-sidebar-coupon .single-form .button {
    position: absolute;
    right: 0;
    top: 0;
}

#Checkout-Page .checkout-sidebar-coupon .single-form .button .btn {
    height: 50px;
}

#Checkout-Page .checkout-sidebar-coupon p {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--second-color1);
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--white-color3);
}

#Checkout-Page .checkout-sidebar-coupon input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border-radius: 4px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border: 1px solid var(--white-color3);
    border-radius: 4px;
    padding-right: 120px;
}

#Checkout-Page .checkout-sidebar-price-table {
    background-color: var(--white-color1);
    padding: 25px;
    border: 1px solid var(--white-color3);
    border-radius: 4px;
}

#Checkout-Page .checkout-sidebar-price-table .sub-total-price .total-price {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 4px 0;
}

#Checkout-Page .checkout-sidebar-price-table .price-table-btn {
    margin-top: 20px;
}

#Checkout-Page .checkout-sidebar-price-table .title {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--second-color1);
    padding-bottom: 12px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--white-color3);
}

#Checkout-Page .checkout-sidebar-price-table .total-payable {
    padding: 8px 0;
    padding: 10px 0;
    border-top: 1px solid var(--white-color3);
    margin-top: 10px;
}

#Checkout-Page .checkout-sidebar-price-table .total-payable .payable-price {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#Checkout-Page .payment-options .custom-radio-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--second-color3);
    margin-left: 0.5rem;
}

#Checkout-Page .payment-item {
    padding: 1rem;
    background-color: var(--white-color2);
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#Checkout-Page .payment-item:hover {
    background-color: var(--white-color3);
}

#Checkout-Page .payment-description {
    padding-left: 2rem;
    color: var(--secondary-color);
}

#Checkout-Page .payment-form .form-label {
    font-size: 0.9rem;
    color: var(--second-color3);
}

#Checkout-Page .payment-form .form-control {
    border-radius: 5px;
    border: 1px solid var(--white-color3);
    padding: 0.75rem;
}

#Checkout-Page .payment-form input::placeholder {
    color: var(--second-color4);
}

#Checkout-Page .payment-form .row .col-md-6 {
    margin-bottom: 1rem;
}

/*======================================
9- Policy
========================================*/
@media (min-width: 1200px) {

    #Policy-Page main .container,
    #Policy-Page main .container-lg,
    #Policy-Page main .container-md,
    #Policy-Page main .container-sm,
    #Policy-Page main .container-xl {
        max-width: 1170px;
    }
}

#Policy-Page .bullet-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    margin-left: 10px;
}

#Policy-Page .bullet-list li:last-child {
    margin-bottom: 0;
}

#Policy-Page .bullet-list li::after {
    position: absolute;
    content: "";
    height: 7px;
    width: 7px;
    background-color: var(--main-color1);
    border-radius: 50px;
    left: 0;
    top: 8px;
}

#Policy-Page .bullet-list.bullet-list-dark li::after {
    background-color: var(--main-color1);
}

#Policy-Page .nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--second-color2);
}

#Policy-Page .tabs-navbar .nav-link.active,
#Policy-Page .tabs-navbar .nav-link:hover {
    color: var(--main-color1);
    font-weight: bold;
}

#Policy-Page .tabs-navbar.nav-tabs .nav-item {
    margin-bottom: -1px;
    z-index: 2;
}

#Policy-Page .tabs-navbar.nav-tabs .nav-link:hover,
#Policy-Page .tabs-navbar.nav-tabs .active {
    border-bottom: 1px solid var(--main-color1) !important;
}

@media (max-width: 575px) {

    #Policy-Page .tabs-navbar.nav-tabs .nav-link:hover,
    #Policy-Page .tabs-navbar.nav-tabs .active {
        border-bottom: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 575px) {
    #Policy-Page .tabs-navbar.nav-tabs .nav-link {
        padding: 0px !important;
        margin-bottom: 15px;
    }
}

#Policy-Page .tabs-navbar.position-sticky {
    top: 0;
}

#Policy-Page .term-content {
    margin-left: 15px;
}

#Policy-Page .term-content h3 {
    font-size: 22px;
    color: var(--second-color2);
}

#Policy-Page .term-content .text-primary,
#Policy-Page .term-content a {
    color: var(--main-color1) !important;
}

/*======================================
10- Contact
========================================*/
#Contact-Page .contact-form {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#Contact-Page .contact-form form {
    padding: 30px 35px;
    background-color: var(--white-color1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    width: 80%;
}

#Contact-Page .contact-form .form-control {
    border: none;
    border-bottom: 2px solid var(--second-color4);
    border-radius: 0;
    box-shadow: none;
    padding-left: 0;
    margin-top: 35px;
    padding: 10px 0;
    font-weight: 500;
    transition: border-bottom 0.3s ease;
}

#Contact-Page .contact-form .form-control:focus {
    border-bottom: 2px solid var(--main-color1);
    outline: none;
    box-shadow: none;
}

#Contact-Page .contact-form .button {
    display: flex;
    justify-content: center;
}

#Contact-Page .contact-form .btn-submit {
    border: none;
    padding: 10px 25px;
    font-weight: bold;
    margin-top: 35px;
    background: linear-gradient(to right, var(--main-color1), var(--main-color2));
    color: var(--white-color1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#Contact-Page .contact-form .btn-submit:hover {
    background: var(--main-color2);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1023px) {
    #Contact-Page .contact-form form {
        width: 90%;
        margin-top: 10px;
    }
}

#Contact-Page .contact-info {
    padding: 0 35px;
}

#Contact-Page .contact-info h3 {
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--second-color2);
}

#Contact-Page .contact-info p {
    color: var(--second-color3);
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
}

#Contact-Page .contact-info .info-container {
    margin-top: 20px;
}

#Contact-Page .contact-info .info-container .info-item {
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
    color: var(--main-color1);
}

#Contact-Page .contact-info .info-container .info-item:last-child {
    margin-bottom: 0;
}

#Contact-Page .contact-info .info-container .info-item i {
    font-size: 20px;
    color: var(--white-color1);
    background-color: var(--main-color1);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#Contact-Page .contact-info .info-container .info-item:hover i {
    background-color: var(--main-color2);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

#Contact-Page .contact-info h6 {
    color: var(--second-color1);
    padding: 0;
    font-weight: 700;
}

#Contact-Page .contact-info .info-container .info-item p a {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--second-color3);
}

#Contact-Page .contact-info h5 {
    color: var(--second-color2);
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

#Contact-Page .contact-info .social-icons a {
    font-size: 18px;
    color: var(--white-color1);
    background-color: var(--main-color1);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#Contact-Page .contact-info .social-icons a:hover {
    background-color: var(--main-color2);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

#Contact-Page .map-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

#Contact-Page .map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--main-color1);
}

#Contact-Page .map-iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/*======================================
11- About
========================================*/
#About-Page .about .inner-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 30px 0;
}

@media (min-width: 991px) {
    #About-Page .about .inner-title {
        max-width: 70%;
        margin: 0 0 50px 0;
    }
}

#About-Page .about .our-story {
    padding: 50px;
    background: var(--white-color2);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

#About-Page .about .our-story:hover {
    background-color: var(--white-color1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#About-Page .about .our-story h4 {
    text-transform: uppercase;
    font-size: 1rem;
    color: var(--second-color3);
    letter-spacing: 0.1rem;
    margin-bottom: 12px;
}

#About-Page .about .our-story h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--second-color2);
    margin-bottom: 25px;
}

#About-Page .about .our-story p {
    font-size: 1rem;
    color: var(--second-color3);
    line-height: 1.75;
    margin-bottom: 20px;
}

#About-Page .about ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

#About-Page .about ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--second-color3);
    transition: color 0.3s ease;
}

#About-Page .about ul li:hover {
    color: var(--main-color1);
}

#About-Page .about ul i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: var(--main-color1);
    transition: transform 0.3s ease;
}

#About-Page .about ul li:hover i {
    transform: scale(1.15);
}

#About-Page .about .about-img {
    min-height: 500px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

#About-Page .about .about-img:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
    #About-Page .about .about-img {
        position: absolute;
        top: 0;
        right: 0;
        min-height: 650px;
    }
}

#About-Page .about .about-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: grayscale(15%);
}

#About-Page .about .about-img img:hover {
    transform: scale(1.03);
    filter: grayscale(0%);
}

#About-Page .stats {
    padding: 60px 0;
}

#About-Page .stats .stats-item {
    background-color: var(--white-color1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

#About-Page .stats .stats-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background-color: var(--white-color2);
}

#About-Page .stats .stats-item i {
    font-size: 40px;
    color: var(--main-color1);
    transition: color 0.3s ease;
    margin-right: 15px;
}

#About-Page .stats .stats-item:hover i {
    color: var(--main-color2)
}

#About-Page .stats .stats-item {
    text-align: left;
}

#About-Page .stats .stats-item span {
    color: var(--second-color2);
    font-size: 24px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
    margin-bottom: 5px;
}

#About-Page .stats .stats-item p {
    margin: 0;
    font-size: 18px;
    color: var(--second-color3);
}

@media (max-width: 768px) {
    #About-Page .stats .stats-item {
        flex-direction: column;
        text-align: center;
    }

    #About-Page .stats .stats-item i {
        margin-bottom: 15px;
    }
}

#About-Page .features .service-item {
    background-color: var(--white-color1);
    box-shadow: 0px 0 30px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

#About-Page .features .service-item:before {
    content: "";
    position: absolute;
    background: color-mix(in srgb, var(--main-color1), transparent 96%);
    right: -80px;
    top: -80px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: -1;
}

#About-Page .features .service-item:after {
    content: "";
    position: absolute;
    background: color-mix(in srgb, var(--main-color1), transparent 97%);
    right: -140px;
    top: -140px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: -1;
}

#About-Page .features .service-item i {
    background: var(--main-color1);
    color: var(--white-color1);
    font-size: 24px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

#About-Page .features .service-item h4 {
    font-weight: 600;
    margin: 15px 0 0 0;
    transition: 0.3s;
    font-size: 20px;
}

#About-Page .features .service-item h4 a {
    color: var(--second-color2);
}

#About-Page .features .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin: 10px 0 0 0;
}

#About-Page .features .service-item:hover:before,
#About-Page .features .service-item:hover:after {
    background: var(--main-color1);
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0px;
}

#About-Page .features .service-item:hover h4,
#About-Page .features .service-item:hover p {
    color: var(--white-color1);
}

#About-Page .features .service-item:hover i {
    background: var(--white-color1);
    color: var(--main-color1);
}

/*======================================
12- Home
========================================*/
#Home-Page .hero-area {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #Home-Page .hero-area .md-custom-padding {
        padding-right: 0 !important;
    }
}

#Home-Page .hero-area .custom-padding-right {
    padding-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #Home-Page .hero-area .custom-padding-right {
        padding-right: calc(1.5rem/2);
    }
}

@media (max-width: 767px) {
    #Home-Page .hero-area .custom-padding-right {
        padding-right: calc(1.5rem/2);
    }
}

#Home-Page .hero-area .slider-head {
    position: relative;
    overflow: hidden;
}

#Home-Page .hero-area .slider-head:hover .tns-controls button:first-child {
    left: 0;
}

#Home-Page .hero-area .slider-head:hover .tns-controls button:last-child {
    right: 0;
}

#Home-Page .hero-area .hero-slider .single-slider .content h2 {
    overflow: hidden !important;
    display: -webkit-box; /* Required for webkit browsers */
    -webkit-box-orient: vertical; /* Specifies the box orientation */
    -webkit-line-clamp: 3; /* Limits the text to 3 lines */
    line-clamp: 3; /* Standard property for limiting text to lines */
    max-width: 90%;
}

#Home-Page .hero-area .tns-controls button {
    width: 35px;
    height: 60px;
    cursor: pointer;
    z-index: 2;
    color: var(--white-color1);
    font-size: 17px;
    background: var(--main-color1);
    border: none;
    padding: 2px 5px;
    border-radius: 4px;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    position: absolute;
    z-index: 99;
    top: 50%;
    margin-top: -30px;
    border-radius: 0;
}

#Home-Page .hero-area .tns-controls button:hover {
    background-color: var(--main-color2);
}

#Home-Page .hero-area .tns-controls button:first-child {
    left: -40px;
    border-radius: 0 4px 4px 0;
}

#Home-Page .hero-area .tns-controls button:last-child {
    right: -40px;
    border-radius: 4px 0px 0px 4px;
}

#Home-Page .hero-area .hero-slider .single-slider {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    position: relative;
}

@media (max-width: 767px) {
    #Home-Page .hero-area .hero-slider .single-slider {
        position: relative;
    }

    #Home-Page .hero-area .hero-slider .single-slider::before {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        height: 100%;
        width: 100%;
        background-color: var(--white-color1);
        opacity: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #Home-Page .hero-area .hero-slider .single-slider {
        height: 400px;
        margin-bottom: 12px;
    }
}

@media (max-width: 767px) {
    #Home-Page .hero-area .hero-slider .single-slider {
        height: 250px;
        margin-bottom: 12px;
        background-size: cover;
    }
}

#Home-Page .hero-area .hero-slider .single-slider .content {
    padding: 20px 365px 20px 50px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #Home-Page .hero-area .hero-slider .single-slider .content {
        padding-right: 300px;
    }
}

@media (max-width: 767px) {
    #Home-Page .hero-area .hero-slider .single-slider .content {
        padding-right: 30px;
        padding-left: 20px;
    }
}

#Home-Page .hero-area .hero-slider .single-slider .content h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--second-color1);
}

#Home-Page .hero-area .hero-slider .single-slider .content h2 span {
    font-size: 17px;
    font-weight: 600;
    display: block;
    color: var(--second-color3);
    margin-bottom: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #Home-Page .hero-area .hero-slider .single-slider .content h2 span {
        font-size: 14px;
        font-weight: 500;
    }
}

@media (max-width: 767px) {
    #Home-Page .hero-area .hero-slider .single-slider .content h2 span {
        font-size: 14px;
        font-weight: 500;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #Home-Page .hero-area .hero-slider .single-slider .content h2 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    #Home-Page .hero-area .hero-slider .single-slider .content h2 {
        font-size: 20px;
    }
}

#Home-Page .hero-area .hero-slider .single-slider .content p {
    margin-top: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #Home-Page .hero-area .hero-slider .single-slider .content p {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    #Home-Page .hero-area .hero-slider .single-slider .content p {
        margin-top: 10px;
        width: 65%;
    }
}

#Home-Page .hero-area .hero-slider .single-slider .content h3 {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 800;
    color: var(--second-color1);
}

#Home-Page .hero-area .hero-slider .single-slider .content h3 span {
    display: inline-block;
    margin-right: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--second-color3);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #Home-Page .hero-area .hero-slider .single-slider .content h3 span {
        margin-right: 10px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    #Home-Page .hero-area .hero-slider .single-slider .content h3 span {
        margin-right: 8px;
        font-size: 14px;
    }

    #Home-Page .hero-area .hero-slider .single-slider .content p {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #Home-Page .hero-area .hero-slider .single-slider .content h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    #Home-Page .hero-area .hero-slider .single-slider .content h3 {
        font-size: 20px;
    }
}

#Home-Page .hero-area .hero-slider .single-slider .content .button {
    margin-top: 30px;
}

#Home-Page .hero-area .hero-slider .single-slider .content .button .btn {
    background-color: var(--main-color1);
}

#Home-Page .hero-area .hero-slider .single-slider .content .button .btn:hover {
    background-color: var(--main-color2);
    color: var(--white-color1);
}

#Home-Page .hero-area .hero-small-banner {
    height: 244px;
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: cover;
}

#Home-Page .hero-area .hero-small-banner.style2 {
    height: 244px;
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: cover;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
    #Home-Page .hero-area .hero-small-banner {
        height: 220px;
        object-fit: cover;
    }

    #Home-Page .hero-area .hero-small-banner.style2 {
        height: 220px;
    }
}

@media (max-width: 767px) {
    #Home-Page .hero-area .hero-small-banner {
        height: 220px;
        object-fit: cover;
    }

    #Home-Page .hero-area .hero-small-banner.style2 {
        height: 220px;
        margin-bottom: 10px;
    }
}

#Home-Page .hero-area .hero-small-banner .content {
    padding: 30px;
    position: absolute;
    max-width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#Home-Page .hero-area .hero-small-banner .content h2 {
    font-size: 18px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    max-height: 2.6em;
    line-height: 1.2;
    max-width: 70%;
}

#Home-Page .hero-area .hero-small-banner.style2 .content h2{
    max-width: 100%;
}

#Home-Page .hero-area .hero-small-banner .content h2 span {
    font-size: 15px;
    font-weight: 500;
    color: var(--second-color3);
    display: block;
    margin-bottom: 4px;
}

#Home-Page .hero-area .hero-small-banner .content h3 {
    color: var(--main-color1);
    font-size: 20px;
    font-weight: 800;
    display: block;
    margin-top: 30px;
    max-width: 70%;
}

#Home-Page .hero-area .hero-small-banner .content i {
    color: var(--second-color1);
    background-color: var(--second-color4);
}

#Home-Page .hero-area .hero-small-banner.style2 {
    margin-top: 12px;
    background-image: url("../images/home/small-banner-bg.png");
    background-color: var(--second-color1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #Home-Page .hero-area .hero-small-banner.style2 {
        margin-top: 0;
    }
}

#Home-Page .hero-area .hero-small-banner.style2 .content h2 {
    color: var(--white-color1);
}

#Home-Page .hero-area .hero-small-banner.style2 .content img {
    width: 50%;
    margin-bottom: 25px;
}

#Home-Page .hero-area .hero-small-banner.style2 .content .button {
    margin-top: 20px;
}

#Home-Page .hero-area .hero-small-banner.style2 .content .button .btn {
    background-color: var(--white-color1);
    color: var(--main-color1);
    padding: 10px 25px;
}

#Home-Page .hero-area .hero-small-banner.style2 .content .button .btn:hover {
    background-color: var(--main-color1);
    color: var(--white-color1);
}

/*======================================
    Category
========================================*/
#Home-Page .categories-swiper .category-box {
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    background-color: var(--white-color3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

#Home-Page .categories-swiper .category-box:hover {
    transform: translateY(-2px);
}

#Home-Page .categories-swiper a {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    background-color: var(--white-color2);
    padding: 10px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

#Home-Page .categories-swiper .swiper-slide h5 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--second-color2);
    margin: 8px 0 2px;
    letter-spacing: 0.3px;
}

#Home-Page .categories-swiper .swiper-slide .product-count {
    font-size: 0.85rem;
    color: var(--second-color3);
    font-weight: 400;
}

#Home-Page .categories-swiper .category-box:hover h5,
#Home-Page .categories-swiper .category-box:hover .product-count {
    color: var(--main-color1);
}

#Home-Page .categories-swiper .category-box:hover a {
    background-color: var(--main-color1);
}

#Home-Page .categories-swiper .swiper-button-next,
#Home-Page .categories-swiper .swiper-button-prev {
    background-color: var(--white-color2);
    border-radius: 50%;
    padding: 6px;
    width: 35px;
    height: 35px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

#Home-Page .categories-swiper .swiper-button-next:hover,
#Home-Page .categories-swiper .swiper-button-prev:hover {
    background-color: var(--main-color1);
    box-shadow: 0 3px 8px rgba(0, 123, 255, 0.2);
}

#Home-Page .categories-swiper .swiper-button-next::after,
#Home-Page .categories-swiper .swiper-button-prev::after {
    font-size: 16px;
    color: var(--main-color1);
}

#Home-Page .categories-swiper .swiper-button-next:hover::after,
#Home-Page .categories-swiper .swiper-button-prev:hover::after {
    color: var(--white-color1);
}

#Home-Page .categories-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.1);
}

/*======================================
    Banner CSS
========================================*/
#Home-Page .single-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    height: 280px;
    position: relative;
    overflow: hidden;
}

#Home-Page .single-banner .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0 0 4px 4px;
}

@media (max-width: 767px) {
    #Home-Page .single-banner.custom-responsive-margin {
        margin-top: 30px;
    }
}

#Home-Page .single-banner .content h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    min-height: calc(1.4em * 1);
    max-height: calc(1.4em * 1);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    text-align: center;
    color: var(--white-color2);
    margin-bottom: 15px;
}

#Home-Page .single-banner .content .button-shop {
    text-align: center;
}

#Home-Page .single-banner .content .button-shop .save-btn{
    margin-top: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #Home-Page .single-banner .content h2 {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    #Home-Page .single-banner .content h2 {
        font-size: 15px;
    }
}

#Home-Page .single-banner .content .price span {
    color: var(--main-color1);
    display: block;
    margin-top: 10px;
    font-size: 22px;
    font-weight: 700;
}

#Home-Page .single-banner .content p {
    font-size: 14px;
    margin-top: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #Home-Page .single-banner .content p {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    #Home-Page .single-banner .content p {
        margin-top: 8px;
        width: 70%;
    }
}

#Home-Page .single-banner .content .button {
    margin-top: 25px;
}

#Home-Page .single-banner .content .button .btn {
    color: var(--white-color1);
    background-color: var(--main-color1);
}

#Home-Page .single-banner .content .button .btn:hover {
    background-color: var(--main-color2);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #Home-Page .single-banner .content .button {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    #Home-Page .single-banner .content .button {
        margin-top: 15px;
    }
}

/*======================================
    Products CSS
========================================*/
#Home-Page .products .my-slider {
    padding: 20px;
}

#Home-Page .products .page-heading {
    color: var(--second-color1);
    float: left;
    font: 700 22px/34px var(--font2);
    margin: 0;
    position: relative;
    text-transform: capitalize;
    width: 100%;
    letter-spacing: .8px;
    text-align: left;
    z-index: 1;
    padding: 6px 0;
    margin-bottom: 5px;
}

@media (max-width: 544px) {
    #Home-Page .products .page-heading {
        line-height: 28px;
        font-size: 18px
    }
}

#Home-Page .products .page-heading span {
    position: relative;
    background-color: var(--white-color2);
    z-index: 2;
    padding: 0 25px 0 0
}

#Home-Page .products .page-heading:after {
    background: var(--white-color3);
    content: "";
    bottom: 0;
    top: 3px;
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    right: auto;
    margin: auto;
    transition: all .4s ease-in-out
}

#Home-Page .products .my-slider {
    display: flex;
    gap: 20px;
}

#Home-Page .products .tns-outer [aria-controls],
.tns-outer [data-action] {
    display: none;
}

#Home-Page .products .tns-outer .single-product {
    margin: 0;
}

#Home-Page .products .tiny-slider-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

#Home-Page .products .tns-prev,
#Home-Page .products .tns-next {
    color: var(--main-color1);
    background-color: var(--white-color2);
    border: 2px solid var(--main-color1);
    margin: 0 5px;
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 24px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Home-Page .products .tns-prev:hover,
#Home-Page .products .tns-next:hover {
    background-color: var(--main-color1);
    transform: scale(1.1);
    color: var(--white-color1);
}

/*======================================
    Contact CSS
========================================*/
#Home-Page .shop-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: var(--second-color1);
}

#Home-Page .shop-area h2 {
    color: var(--second-color2);
    font-weight: bold;
    margin-bottom: 10px;
}

#Home-Page .shop-inner-area {
    position: relative;
    z-index: 1;
    padding: 60px 30px;
    background-color: var(--main-color1);
    background-image: url('../images/home/banner.jpg');
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat
}

#Home-Page .shop-inner-area:after {
    width: 100%;
    background-color: var(--main-color1);
    opacity: .75
}

#Home-Page .shop-inner-area:after,
#Home-Page .shop-inner-area:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%
}

#Home-Page .shop-inner-area .btn-primary {
    background-color: var(--second-color1) !important;
    color: var(--main-color1);
    font-weight: bold;
}

#Home-Page .shop-inner-area .btn.has-icon .icon {
    background-color: var(--second-color1) !important;
    color: var(--main-color1);
}

#Home-Page .shop-inner-area .btn.btn-primary:hover,
#Home-Page .shop-inner-area .btn.btn-primary:active,
#Home-Page .shop-inner-area .btn.btn-primary:focus {
    color: var(--main-color1);
    background: color-mix(in srgb, var(--second-color1), transparent 9%);
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.1);
}

/*======================================
    Brands CSS
========================================*/
#Home-Page .brands .my-slider {
    padding: 20px;
}

#Home-Page .brands .page-heading {
    color: var(--second-color2);
    float: left;
    font: 700 22px/34px var(--font2);
    margin: 0;
    position: relative;
    text-transform: capitalize;
    width: 100%;
    letter-spacing: .8px;
    text-align: left;
    z-index: 1;
    padding: 6px 0
}

@media (max-width: 544px) {
    #Home-Page .brands .page-heading {
        line-height: 28px;
        font-size: 18px
    }
}

#Home-Page .brands .page-heading span {
    position: relative;
    background-color: var(--white-color2);
    z-index: 2;
    padding: 0 25px 0 0
}

#Home-Page .brands .page-heading:after {
    background: var(--white-color3);
    content: "";
    bottom: 0;
    top: 3px;
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    right: auto;
    margin: auto;
    transition: all .4s ease-in-out
}

#Home-Page .brands .my-slider {
    display: flex;
    gap: 20px;
}

#Home-Page .brands .tns-outer [aria-controls],
.tns-outer [data-action] {
    display: none;
}

#Home-Page .brands .tiny-slider-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

#Home-Page .brands .tns-prev,
#Home-Page .brands .tns-next {
    color: var(--main-color1);
    background-color: var(--white-color1);
    border: 2px solid var(--main-color1);
    margin: 0 5px;
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 22px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Home-Page .brands .tns-prev:hover,
#Home-Page .brands .tns-next:hover {
    background-color: var(--main-color1);
    transform: scale(1.1);
    color: var(--white-color1);
}

#Home-Page .brands .brand-card {
    background: var(--white-color1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

#Home-Page .brands .brand-card a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#Home-Page .brands .brand-card img {
    width: 90%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease-in-out;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

#Home-Page .brands .brand-card:before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transition: opacity 0.5s ease;
    opacity: 0;
    z-index: -1;
}

#Home-Page .brands .brand-card:hover {
    transform: translateY(-1px);
}

#Home-Page .brands .brand-card:hover img {
    transform: scale(1.15);
}

#Home-Page .brands .brand-card:hover:before {
    opacity: 1;
}

@media (hover: none) {
    #Home-Page .brands .brand-card:hover {
        transform: none;
    }

    #Home-Page .brands .brand-card:hover img {
        transform: none;
    }

    #Home-Page .brands .brand-card:hover:before {
        opacity: 0;
    }
}

#Home-Page #hot-deal.section {
    padding: 80px 0;
    margin: 40px 0;
    background-color: var(--second-color4);
    background-image: url('../images/home/hotdeal.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

#Home-Page .hot-deal {
    text-align: center;
}

#Home-Page .hot-deal .hot-deal-countdown {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

#Home-Page .hot-deal .hot-deal-countdown>li {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, var(--main-color1), var(--main-color2));
    text-align: center;
    border-radius: 20%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}

#Home-Page .hot-deal .hot-deal-countdown>li:hover {
    transform: translateY(-10px);
}

#Home-Page .hot-deal .hot-deal-countdown>li>div {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

#Home-Page .hot-deal .hot-deal-countdown>li>div h3 {
    color: var(--white-color1);
    font-size: 28px;
    margin-bottom: 5px;
}

#Home-Page .hot-deal .hot-deal-countdown>li>div span {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white-color1);
}

#Home-Page .hot-deal h2 {
    text-transform: uppercase;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

#Home-Page .hot-deal p {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
