:root {
    --primary-color: #DA5726;
    --secondary-color: #f7a928;
    --text-color: #333;
    --text-color-secondery: #5F6C72;
    --light-gray: #f5f5f5;
    --icon-color: #303639;
    --hover-color:#d14614;
}

body {
    font-family: "Public Sans", serif;
}

a{
    text-decoration: none;
}
ul,li{
    list-style-type: none;
}

/* a:hover{
    color: var(--primary-color);
} */

/* .container {
    max-width: 1243px;
    margin: 0 auto;
    padding: 0 15px;
} */

/* gradient color */
.gradient-1 {
    background-color: #EAF6FE;
}

.gradient-2 {
    background-color: #FFF3EB;
}

.gradient-3 {
    background-color: #EAF7E9;
}

.toast-success {
    background-color: var(--primary-color);
}


/*---------------========================== top header nav part css start =======================----------------------------*/
/* Black Friday Banner */
.black-friday-main {
    background-color: #1c1c1c;

}

.black-friday-banner {
    padding: 5px 30px 5px 5px;
    color: white;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    position: relative;
}

.banner-content {
    display: flex;
    align-items: baseline;
    gap: 10px;
    justify-content: space-between;
    padding-left: 10px;
}

.banner-content .offer {
    font-size: 14px;
}

.header-close-btn {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 20px;
    top: 1px;
}

.black-tag1 {
    background-color: #F3DE6D;
    padding: 2px 8px;
    border-radius: 4px;
    color: #000;
    font-size: 16px;
}

.percentag1e {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: bold;
}

.shop-now-btn {
    background-color: #EBC80C;
    ;
    font-size: 11px;
    color: #000;
    border: none;
    padding: 3px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
}

.shop-now-btn i {
    color: #000;
    font-weight: 600;
}

.close-btn {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 20px;
    top: 11px;
}

/* Header Styles */
.top-header {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 0;
}

.header-message {
    font-size: 14px;
    font-weight: 400;

}

.top-header-left {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}

.top-header-left span {
    font-size: 14px;
}

.top-header .top-header-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-actions .become-seller {
    color: #fff;
    font-size: 14px;
}

.header-actions .border-vr {
    width: 1.5px;
    height: 20px;
    background-color: #ffffff59;
}

.header-actions select {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
    padding: 10px 10px 10px 0px;
}

.header-actions select option {
    color: #000;
}

/* Main Navigation */
/* .sticky-nav-main {
    position:relative;
    transition: all linear 0.4s;
} */

.main-nav {
    padding: 10px 0;
}

.main-nav .main-nav-part {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.sticky-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--body-bg);
}


.search-bar {
    flex: 1;
    max-width: 600px;
    margin: 0 40px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    box-shadow: 0px 0px 5px -3px #2e2a2a;
}

.search-bar button {
    position: absolute;
    right: 10px;
    top: 11px;
    background: none;
    border: none;
    cursor: pointer;
}
.search-bar .main-form{
    margin-bottom: 0px;
}


/* {{-- mobile view search bar --}} */
.search-button2 {
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-button2:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.search-button2:focus {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}

.search-icon2 {
    color: #333;
}

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: start;
    justify-content: center;
    z-index: 50;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.2s, opacity 0.2s;
}

.search-modal.is-open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.search-modal-container {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.5rem;
    transform: translateY(10px);
    transition: transform 0.2s;
}

.search-modal.is-open .search-modal-container {
    transform: translateY(0);
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.search-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.search-close-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 0.25rem;
}

.search-close-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.search-form {
    display: flex;
    gap: 0.5rem;
    border: none;
}

.search-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    font-size: 1rem;
    height: 40px;
}

.search-input:focus {
    outline: 2px solid var(--primary-color);
    border-color: transparent;
}

.search-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-submit:hover {
    background-color: var(--primary-color);
}

.search-submit:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}



.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}


.cart,
.wishlist,
.account {
    position: relative;
    cursor: pointer;
}

.account a img {
    width: 24px;
    height: 24px;
    border-radius: 100%;
}

.wishlist svg {
    color: var(--icon-color);
}

.account {
    position: relative;
}

.account:hover .account-dropdown {
    display: block;
}

.account-dropdown {
    width: 120px;
    background-color: #fff;
    position: absolute;
    top: 24px;
    right: 0;
    display: none;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0px 0px 10px -6px #000;
}

.account-dropdown a h5 {
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f8f8f8;
    padding-bottom: 8px;
}

.account-dropdown a h5:hover {
    color: var(--primary-color);

}

.account-dropdown a h5:hover .user-icon {
    filter: invert(44%) sepia(81%) saturate(495%) hue-rotate(348deg);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* cart design */
.cart-header h2 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-left: 15px;
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;
}

.cart-part {
    position: relative;
    z-index: 9999;
    background: white;
    padding: 20px;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cart-content {
    padding-left: 1rem;
    padding-right: 1rem;
    height: 315px;
    overflow: scroll;
    scrollbar-width: none;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.item-image {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.375rem;
}

.item-details {
    text-align: left;
    flex: 1;
    min-width: 0;
}

.item-details .item-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 184px;
    height: 45px;
    white-space: normal;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.5s;
}

.item-name:hover {
    color: #666;
}

.item-price {
    font-size: 0.875rem;
    color: #666;
}

.item-price span {
    font-size: 0.875rem;
    color: var(--primary-color);
}

.remove-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #666;
}

.remove-btn:hover {
    color: #444;
}

.subtotal-section {
    padding: 1rem;
    /* border-top: 1px solid #eee; */
}

.subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #444
}
.radio-group{
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}
.button-group {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.check-btn {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    background-color: var(--primary-color);
    color: white;
}

.check-btn:hover {
    background-color: #f77016;
    color: #fff;
}

.check-btn2 {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    background-color: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.check-btn2:hover {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}


/* Hover Card Styles */
.hover-card {
    display: none;
    position: relative;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    width: 15rem;
    z-index: 1000;
    top: -216px;
    left: -244px;
}

.hover-card.active {
    display: block;
}

.hover-card h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 184px;
    height: 33px;
    white-space: normal;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.5s;
}

.hover-card p {
    font-size: 0.875rem;
    color: #666;
    margin: 0.25rem 0;
}

.nav-actions .cart:hover .card-hover-part {
    display: block;
}

.card-hover-part {
    position: absolute;
    top: 24px;
    right: -73px;
    width: 400px;
    display: none;
}


/* sticky shopping cart icon 2 */

.cart-icon2 {
    position: fixed;
    right: 25px;
    bottom: 20px;
    font-size: 22px;
    color: #333;
    background-color: #fff;
    padding: 10px 14px;
    border-radius: 10%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;

}

.cart-icon2 img {
    width: 24px;
}

.cart-icon2:hover img {
    filter: invert(55%) sepia(81%) saturate(495%) hue-rotate(348deg);
}

.cart-icon2:hover {
    color: var(--primary-color);
    background-color: var(--primary);
    transform: scale(1.1);
}

.cart-icon2 span {
    background-color: orangered;
    color: #fff;
    padding: 0px 6px;
    border-radius: 50px;
    position: absolute;
    bottom: 35px;
    right: -2px;
    font-size: 14px;
}

.cart-container2 {
    position: absolute;
    right: 20px;
    top: 50%;
    opacity: 0;
}

.mini-cart2 {
    background-color: #ffffff;
    box-shadow: -2px 0px 5px 1px rgba(0, 0, 0, 0.06);
    width: 478px;
    padding: 14px;
    position: fixed;
    transition: all 0.3s ease;
    z-index: 998;
    bottom: 30px;
    opacity: 0;
    right: 92px;
    visibility: hidden;
}

.cartHover2:hover .mini-cart2 {
    background-color: #ffffff;
    box-shadow: -2px 0px 5px 1px rgba(0, 0, 0, 0.06);
    width: 400px;
    padding: 14px;
    position: fixed;
    transition: all 0.3s ease;
    z-index: 999999;
    opacity: 1;
    right: 82px;
    bottom: 20px;
    visibility: visible;
    cursor: pointer;
}



/*-----------======== Login page css start ==========------*/
.nav-actions .account:hover .login-part {
    display: block;
}

.login-part {
    position: absolute;
    top: 25px;
    right: -5px;
    padding: 35px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 400px;
    background: #fff;
    display: none;
    z-index: 9999;
}

.nav-actions .account svg:hover .login-part {
    display: block;
}

.login-text1 {
    text-align: left;
}

.login-text1 h1 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-align: center;
}

.login-text1 p {
    font-size: 18px;
    color: #7a7a7a;
    margin-top: 15px;
    margin-bottom: 20px;
}

.google-btn {
    margin-bottom: 20px;
}

.google-text {
    border: 2px solid #ddd;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: center;
}

.google-btn i {
    color: #dc0000;
}

.google-btn span {
    font-size: 16px;
    color: #333333;
    font-weight: 600;
}

.google-btn .google-text img {
    width: 30px;
    height: 30px;
}

.divider {
    font-size: 14px;
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-top: 30px;
    color: #000;
}

.divider::before,
.divider::after {
    flex: 1;
    content: '';
    padding: 1px;
    background-color: #ddd;
    margin: 5px;
}

.login-input-part .login-input {
    width: 100%;
    border: 2px solid #ddd;
    padding: 15px;
    border-radius: 5px;
}

.login-input-part label {
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

.login-input-part .login-input::placeholder {
    font-weight: 600;
}

.input-box {
    margin-top: 15px;
}

.login-input-part .login-text {
    margin-top: 20px;
    margin-bottom: 7px;
}

.log-btn-main {
    margin-top: 25px;
}

.log-btn-main .log-btn {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.log-btn-main .log-btn:hover {
    background: #f77016;
}

.log-btn-main .log-btn img {
    width: 24px;
    filter: brightness(0) invert(1);
}

.create-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
}

.create-part .create-btn {
    margin-top: 20px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.forgot-part .forgot-btn {
    margin-top: 20px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}


/* Secondary Navigation */
.secondary-nav {
    padding: 10px 0;
    border-bottom: 1px solid #eaedf0;
    background-color: #FAFAFA;
}

.secondary-nav .nav-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.category-button {
    display: flex;
    position: relative;
    align-items: center;
    gap: 15px;
}

.click-button {
    padding: 10px 20px;
    font-size: 16px;
    color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #FFE7D6;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.click-button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.category-button .click-button i {
    font-size: 13px;
}


.category-div {
    position: absolute;
    top: 44px;
    left: 0;
    display: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
    z-index: 1000;
    width: 600px;
    height: 380px;
    scrollbar-width: none;
}

.category-div a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.category-div a:hover {
    background-color: #f8f8f8;
}

.category-div img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    border-radius: 5px;
}

.subcategory-menu2 img {
    width: 20px;
    height: 20px;

}

.subcategory-menu2 {
    position: absolute;
    background: #fff;
    padding: 5px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    left: 290px;
    top: 0px;
    border-radius: 4px;
}


.subcategory-menu2 a {
    white-space: noWrap;
}


.service-links {
    display: flex;
    gap: 30px;
}

.service-links a {
    color: var(--text-color-secondery);
}
.service-links a:hover {
    color: var(--primary-color);
}
.service-links img {
    width: 16px;
    margin-bottom: 5px;
    filter: invert(43%) sepia(9%) saturate(216%) hue-rotate(157deg) brightness(92%) contrast(87%);
}

.contact-text img {
    width: 18px;
}




/* Hero Section */
.hero {
    padding: 40px 0;
    background-color: var(--light-gray);
}

.product-showcase {
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* .product-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.product-image {
    height: 150px;
}

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

.product-image1 {
    height: 240px;
}

.product-image1 img {
    max-width: 100%;
    height: 100%;
}

.price-tag1 {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.5em;
    font-weight: bold;
}

/* Service Features */


.service-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* justify-items: center; */
    gap: 30px;
    padding: 20px;
    background-color: white;
    border: 1px solid #ddd;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    padding-bottom: 10px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-right: 1px solid #ddd;

}

.service-features .feature:last-child {
    border-right: none;
}

.feature i {
    font-size: 40px;
    color: #cccccc;
}

.feature-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.feature-info p {
    font-size: 14px;
    color: #666;
}


/* Animations */
.bounce {
    animation: bounce 0.3s ease-in-out;
}

@keyframes bounce {

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

    50% {
        transform: scale(1.2);
    }
}




/*---------------========================== breadcrumb part css start =======================----------------------------*/
.breadcrumb-section {
    background: #f1f1f1;
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 0px !important;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 10px;
    color: #666;
}

.breadcrumb a {
    text-decoration: none;
    color: #5F6C72;
    font-size: 14px;
}

.breadcrumb li:first-child a::before {
    margin-right: 5px;
}

.breadcrumb li:last-child a {
    color: var(--primary-color);
}

/*---------------========================== silder hero banner part css start =======================----------------------------*/
.hero-section {
    display: grid;
    grid-template-columns: 3.5fr 1.5fr;
    gap: 20px;
    margin-top: 30px;
    height: 380px;
}


.slider-part {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    background-color: #F2F4F5;
    border-radius: 5px;
}



.shop-btn {
    background-color: var(--primary-color);
    font-size: 14px;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
}

.shop-btn i {
    color: #ffffff;
    font-weight: 600;
}

.shop-btn:hover {
    color: #ffffff;
}

.slider-part .slider-img img {
    width: 100%;
    height: 380px;
}

.small-banner {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;

}



.small-banner .small-banner-up .small-banner-up-img img {
    width: 100%;
    height: 180px;
    border-radius: 5px;
}


.small-banner .small-banner-down .small-banner-down-img img {
    width: 100%;
    height: 180px;
    border-radius: 5px;
}

.slider-text {
    flex: 1;
    padding: 40px;
    align-content: center;
    position: absolute;
    top: 80px;
    width: 480px;
}

.slider-text .tag1-text {
    display: flex;
    flex-direction: row;

}

.tag1-text .hr-border {
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 11px;
    margin-right: 5px;
}

.slider-text .tag1 {
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.slider-text h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* hero slider part */
.hero-slider-main {
    position: relative;
    height: 380px;
}

.slider {
    /* position: relative; */
    width: 100%;
    overflow: hidden;
    margin: auto;
    height: 380px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    transition: opacity 0.5s;
    height: 380px;
}

.slide img {
    width: 100%;
}

.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.prev,
.next {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.dots {
    position: absolute;
    text-align: center;
    margin-top: 10px;
    bottom: 8px;
    left: 60px;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 5px;
    margin: 5px;
    background: rgb(202, 202, 202);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--primary-color);
}


.small-banner-down-img img {
    width: 100%;
}

/* .small-banner-down-text {
    flex: 1;
    padding: 20px;
    align-content: center;
}

.small-banner-down-text .tag1 {
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 15px;
    color: #EBC80C;
}

.small-banner-down-text h1 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #000;
} */

.small-banner-down-text .small-down-price {
    color: var(--primary-color);
    font-size: 16px;
}


/* ---------------======================= best deals part start ======================---------------*/

.countdown-container {
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    margin-top: 5px;
}

.deal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.deal-subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 30px;
    font-weight: 400;
}

.timer-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3px;
    margin-bottom: 0px;
}

.time-unit {
    background: var(--primary-color, #ee5a52);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    color: white;
    padding: 5px;
    border-radius: 15px;
    min-width: 60px;
    box-shadow: 0 8px 20px rgba(238, 90, 82, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.time-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.time-unit:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(238, 90, 82, 0.4);
}

.time-unit:hover::before {
    left: 100%;
}

.time-number {
    font-size: 28px;
    font-weight: 800;
    display: block;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.time-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.urgency-message {
    background: linear-gradient(45deg, #ffc568, #19547b);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
    font-weight: 600;
    animation: pulse 2s infinite;
    margin-top: 10px;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes flipIn {
    from {
        transform: rotateX(90deg);
        opacity: 0;
    }

    to {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

.flip-animation {
    animation: flipIn 0.6s ease-in-out;
}

.expired {
    background: linear-gradient(145deg, #718096, #4a5568);
}

.expired .time-number {
    color: #e2e8f0;
}



.deals-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.deals-header h1 {
    font-size: 24px;
}

.deals-header-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.best-deal-main {
    margin-top: 20px;
}

.deals-header .timer {
    font-size: 14px;
    background-color: #ffcc00;
    padding: 2px 8px;
    border-radius: 5px;
}

.all-product-btn a {
    font-size: 14px;
    color: var(--primary-color);
}

.all-product-btn a img {
    width: 20px;
    filter: invert(44%) sepia(81%) saturate(495%) hue-rotate(348deg);
}

.products-part {
    display: grid;
    grid-template-columns: 1fr 3fr;
}

.product-item2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid #eeeeee;
}

.product-card {
    background: #fff;

    transition: transform 0.3s;
    cursor: pointer;
}

.product-card-item {
    height: 300px;
    padding: 15px;
    border: 1px solid #eeeeee;

}

.product-card-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card-first {
    background: #fff;
    border: 2px solid #eeeeee;
    border-right: none;
    transition: transform 0.3s;
    padding: 15px;
    height: 542px;
}
.product-card-item2{
   height: 270px;
    padding: 15px;
    border: 1px solid #eeeeee;
}

/* star review css */
.review-star {
    margin-top: 0px;
}

.review-star i {
    color: #aaaaaa;
}

.review-star .checked {
    color: #EBC80C;
}

.review-star span {
    color: #77878F;
}
.review-reply{
    display:flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 5px;
}
.review-reply p{
    margin-top:0px;
    margin-bottom:0px;
}
.review-reply img{
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
.product-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 100%;
    height: 35px;
    white-space: normal;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.5s;
    margin-top: 10px;
}
.product-title a{
    color:#333333;
}

.product-title1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 260px;
    height: 35px;
    white-space: normal;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.5s;
    margin-top: 15px;
}

.product-title2 {
    color: #333333;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 15px;
}



.product-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.product-price .original-price {
    font-size: 12px;
    text-decoration: line-through;
    color: #777;
}

.product-content {
    text-align: left;
}

.product-content .product-des {
    font-size: 14px;
    color: #8f8f8f;
    margin-top: 12px;
}

/* .product-content .product-title3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 260px;
    height: 35px;
    white-space: normal;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.5s;
} */
.product-content1 {
    text-align: left;
    margin-top: 10px;
}
.product-content1 .product-title3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 260px;
    height: 35px;
    white-space: normal;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.5s;
    /* margin-top: 15px;
    margin-bottom: 21px; */
}
.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 5px;
    margin-top:10px;
}

.product-actions .sold-item {
    font-size: 12px;
    color: #6f6f6f;
}

.product-cart-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* .product-cart-btn img{
    width:18px;
} */
.product-cart-btn img {
    width: 18px;
    filter: invert(44%) sepia(81%) saturate(495%) hue-rotate(348deg);

}

.product-cart-btn1 {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    padding: 8px;
}

.product-cart-btn1 img {
    width: 18px;
    filter: brightness(0) invert(1);
}


.product-cart-btn2 {
    background-color: #FFE7D6;
    color: #5c5c5c;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px 10px;
}

.product-cart-btn2 img {
    width: 18px;
}

.product-price1 {
    font-size: 18px;
    font-weight: 500;
    color: #2DA5F3;
    margin-bottom: 15px;
    margin-top: 15px;
}

.product-price1 .original-price1 {
    font-size: 14px;
    text-decoration: line-through;
    color: #777;
}



.category-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

/* Slider container and navigation */
.slider-container {
    position: relative;
}

.category-slider {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding-top: 10px;
    padding-bottom: 10px;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.category-item {
    width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}

.category-item2 {
    width: 290px;
    flex-shrink: 0;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}

.category-card {
    background-color: white;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    margin-left: 5px;
}

.category-card:hover {
    color: #000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-container {
    position: relative;
    margin-bottom: 15px;
}

.image-container img {
    width: 100%;
    height: 130px;
    object-fit: contain;
}

.type-text {
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 2px;
    padding: 2px 5px;
    font-size: 12px;

}

.type-color1 {
    color: #fff;
    background: #EE5858;
}

.type-color2 {
    color: #fff;
    background: #2DA5F3;
}

.category-card h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    width: 176px;
    height: 18px;
    white-space: normal;
    color: #333333;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}

.base-text {
    position: absolute;
}

/* Navigation buttons */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #f8fafc;
    color: #0f172a;
}

.prev-button {
    left: -20px;
}

.next-button {
    right: -20px;
}

/*-------------------========================= feature product start ==========================--------------------*/
.feature-section-main {
    margin-top: 40px;
}

.feature-tab {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

.feature-tab-main {
    width: 565px;
}


.feature-tab-btn {
    font-size: 14px;
    color: #5F6C72;
    white-space: nowrap;
    padding: 5px;
    border: none;
    cursor: pointer;
    background-color: transparent;
    margin-right: 5px;
}

.feature-tab-btn:hover {
    border-bottom: 2px solid var(--primary-color);
}

.feature-tab-btn.active {
    border-bottom: 2px solid var(--primary-color);
    color: #2b2b2b;
    font-weight: 600;
}

.feature-cart-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 180px;
    padding: 8px;
    /* margin-top: 25px; */
}

.feature-product-btn {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: baseline;
}

.feature-product-btn a {
    font-size: 14px;
    color: var(--primary-color);
}

.feature-product-btn a img {
    width: 20px;
    filter: invert(44%) sepia(81%) saturate(495%) hue-rotate(348deg);
}

.feature-card-first {
    background: #F3DE6D;
    transition: transform 0.3s;

    /* height: 100%; */
    border-radius: 5px;
}

.feature-item2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.feature-content {
    margin-bottom: 60px;
    padding: 15px;
    text-align: center;
}

.feature-content .feature-title {
    margin-top: 20px;
    font-size: 14px;
    color: #BE4646;
}

.feature-content .feature-discount {
    font-size: 32px;
    font-weight: 600;
    color: #444;
    margin-top: 15px;
}

.feature-content .feature-des {
    font-size: 14px;
    color: #475156;
    margin-top: 15px;
    margin-bottom: 15px;
}

.feature-content .offer-text {
    font-size: 12px;
    margin-bottom: 30px;

}

.feature-content .offer-text span {
    font-size: 12px;
    background-color: #fff;
    color: #000;
    padding: 5px;
}

.feature-image img {
    width: 100%;
    height: 300px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.feature-item2-main {
    margin-top: 20px;
}

.feature-actions {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 5px;
}

.feature-actions .sold-item {
    font-size: 12px;
    color: #6f6f6f;
}

.review-star2 {
    margin-top: 10px;
}

.review-star2 i {
    color: #aaaaaa;
}

.review-star2 .checked {
    color: var(--primary-color);
}

.review-star2 span {
    color: #e0e0e0;
    font-size: 14px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

/* mobile view just start */
.feature-header .mobile-feature-link {
    font-size: 14px;
    color: var(--primary-color)
}

.feature-header .mobile-feature-link img {
    width: 22px;
    filter: invert(44%) sepia(81%) saturate(495%) hue-rotate(348deg);
}

/* mobile view end */
.feature-header h1 {
    font-size: 24px;
    white-space: nowrap;
}

.feature-header-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.feature-header-main div:nth-of-type(1) {
    flex-grow: 1;
}

.feature-header-main div:nth-of-type(2) {
    flex-grow: 2;
}

.feature-header .timer {
    font-size: 14px;
    background-color: #ffcc00;
    padding: 2px 8px;
    border-radius: 5px;
}


/*-------------------========================= introducing part start ===================-------------------*/
.introducing-section-main {
    margin-top: 40px;
}

.introducing-part {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

}

.introducing-part-left-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.introducing-left-text {
    flex: 1;
    padding: 20px;
    align-content: center;
}

.introducing-left-text h4 {
    text-transform: uppercase;
    font-size: 14px;
    display: inline;
    padding: 5px 10px;
    color: #fff;
    background-color: #2DA5F3;
    margin-bottom: 10px;
    border-radius: 2px;
}

.introducing-left-text h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #000;
    margin-top: 15px;
}

.introducing-left-text .introducing-left-des {
    color: #475156;
    font-size: 14px;
    margin-bottom: 12px;
}

.introducing-left-img {
    padding: 30px;
}

.introducing-left-img img {
    width: 100%;
    height: 100%;
}

.introducing-part-right {
    position: relative;
}

.introducing-part-right-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}


.introducing-righ-text {
    flex: 1;
    padding: 20px;
    align-content: center;
}

.introducing-righ-text .tag1 {
    text-transform: uppercase;
    font-size: 14px;
    display: inline;
    padding: 5px 10px;
    color: #000;
    background-color: #EFD33D;
    margin-bottom: 10px;
    border-radius: 2px;
}

.introducing-righ-text h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
    margin-top: 15px;
}

.introducing-righ-text .introducing-right-des {
    color: #ADB7BC;
    font-size: 14px;
    margin-bottom: 12px;
}

.price-circle {
    position: absolute;
    top: 20px;
    right: 20px;
}

.price-circle .price-amount {
    background-color: #2DA5F3;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    align-content: center;
    text-align: center;

}

.price-circle .price-amount h5 {
    font-size: 20px;
    color: #fff;
}

/*-----------------------========================= accessories part css start ==============================---------------------*/
.accessories-section-main {
    margin-top: 80px;
}

.accessories-part {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 15px;
}

.accessories-tab {
    display: flex;
    overflow-x: auto;
}

.accessories-tab-main {
    margin-right: 10px;
}

.accessories-tab-btn {
    font-size: 14px;
    color: #5F6C72;
    white-space: nowrap;
    padding: 5px;
    border: none;
    cursor: pointer;
    background-color: transparent;
    margin-right: 5px;
}

.accessories-tab-btn:hover {
    border-bottom: 2px solid var(--primary-color);
}

.accessories-tab-btn.active {
    border-bottom: 2px solid var(--primary-color);
    color: #2b2b2b;
    font-weight: 600;
}

.accessories-cart-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 180px;
    padding: 8px;
    margin-top: 21px;
}

.accessories-product-btn {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: baseline;
}

.accessories-product-btn a {
    font-size: 14px;
    color: var(--primary-color);
}

.accessories-card-first {
    background: #F3DE6D;
    transition: transform 0.3s;

    height: 100%;
    border-radius: 5px;
}

.accessories-item2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.accessories-content {
    margin-bottom: 60px;
    padding: 15px;
    text-align: center;
}

.accessories-content .accessories-title {
    margin-top: 20px;
    font-size: 14px;
    color: #BE4646;
}

.accessories-content .accessories-discount {
    font-size: 32px;
    font-weight: 600;
    color: #444;
    margin-top: 15px;
}

.accessories-content .accessories-des {
    font-size: 14px;
    color: #475156;
    margin-top: 15px;
    margin-bottom: 15px;
}

.accessories-content .offer-text {
    font-size: 12px;

}

.accessories-content .offer-text span {
    font-size: 12px;
    background-color: #fff;
    color: #000;
    padding: 5px;
}

.accessories-image img {
    max-width: 100%;
    height: auto;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.accessories-actions {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 5px;
}

.accessories-actions .sold-item {
    font-size: 12px;
    color: #6f6f6f;
}

.review-star2 {
    margin-top: 10px;
}

.review-star2 i {
    color: #aaaaaa;
}

.review-star2 .checked {
    color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.accessories-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.accessories-header h1 {
    font-size: 24px;
    white-space: nowrap;
}

.accessories-header-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.accessories-header .timer {
    font-size: 14px;
    background-color: #ffcc00;
    padding: 2px 8px;
    border-radius: 5px;
}

.tab-content2 {
    display: none;
}

.tab-content2.active {
    display: block;
}

.discount-card-second {
    transition: transform 0.3s;

    height: 100%;
    border-radius: 5px;
}

.discount-content {
    background-color: #F7E99E;
    margin-bottom: 15px;
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
    padding-bottom: 20px;
}

.discount-content .accessories-title {
    margin-top: 20px;
    font-size: 14px;
    color: #BE4646;
}

.discount-content .accessories-discount {
    font-size: 28px;
    font-weight: 600;
    color: #444;
    margin-top: 5px;
}

.discount-content .accessories-des {
    font-size: 14px;
    color: #475156;
    margin-top: 15px;
    margin-bottom: 15px;
}

.discount-content .offer-text {
    font-size: 12px;

}

.discount-content .offer-text span {
    font-size: 12px;
    background-color: #fff;
    color: #000;
    padding: 5px;
}

.discount-content2 {
    background-color: #124261;
    margin-bottom: 60px;
    padding: 40px 15px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
}

.discount-content2 .accessories-title {
    display: inline;
    background-color: #1c618e;
    margin-top: 20px;
    font-size: 14px;
    color: #ffff;
    padding: 5px 10px;
    border-radius: 2px;
}

.discount-content2 .accessories-discount {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-top: 15px;
}

.discount-content2 .accessories-des {
    font-size: 14px;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 15px;
}

.discount-content2 .offer-text {
    font-size: 14px;
}

.discount-content2 .offer-text span {
    color: #BE4646;
    padding: 5px;
    font-weight: 600;
}


/*---------------========================== variant secion part css ============================------------------------------*/
.variant-section-main {
    margin-top: 20px;
}

.variant-part1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;

}

.variant-part1-left {
    position: relative;
}

.variant-part1 .variant-part1-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #FFE7D6;
    border-radius: 5px;
}

.variant-part1 .variant-part1-left .variant-part1-left-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.variant-left1-text {
    flex: 1;
    padding: 60px;
    align-content: center;
}

.variant-left1-text h4 {
    text-transform: uppercase;
    font-size: 14px;
    display: inline;
    padding: 5px 10px;
    color: #fff;
    background-color: #2DA5F3;
    margin-bottom: 10px;
    border-radius: 2px;
}

.variant-left1-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #000;
    margin-top: 15px;
}

.variant-left1-text .variant-left1-des {
    color: #475156;
    font-size: 18px;
    margin-bottom: 12px;
    padding-right: 100px;
    line-height: 26px;
}

.variant-left1-img {
    padding: 10px;
}

.variant-left1-img img {
    width: 100%;
    height: 100%;
}

.variant-shop-btn {
    background-color: var(--primary-color);
    font-size: 14px;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    margin-top: 15px;
}

.variant-shop-btn i {
    color: #ffffff;
    font-weight: 600;
}

.variant-price-circle {
    position: absolute;
    top: 35px;
    right: 38%;
}

.variant-price-circle .variant-price-amount {
    background-color: #FFCEAD;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    align-content: center;
    text-align: center;
    border: 6px solid #fff;

}

.variant-price-circle .variant-price-amount h5 {
    font-size: 20px;
    color: #000;
}

/* variant part start */
.variant-part2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 60px;
    gap: 10px;
}

.flash-sale-part .variant-product-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;

}

.flash-sale-part h5 {
    font-size: 16px;
    margin-bottom: 15px;
}

.best-seller-part .variant-product-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;

}

.best-seller-part h5 {
    font-size: 16px;
    margin-bottom: 15px;
}

.top-rated-part .variant-product-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6px;

}

.top-rated-part h5 {
    font-size: 16px;
    margin-bottom: 15px;
}

.new-arrival-part .variant-product-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6px;

}

.arrival-part-img {
    height: 320px;
}

.arrival-part-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;

}

.variant-product-card {
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 10px;
    padding: 8px;
}

.variant-product-card img {
    width: 90px;
    height: 90px;
}

.variant-product-text h5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 184px;
    height: 35px;
    white-space: normal;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.5s;
    margin-top: 10px;
}

.variant-product-text h4 {
    font-size: 14px;
    color: var(--primary-color);
}

.variant-product-text h4 span {
    font-size: 12px;
    color: #777;
    text-decoration: line-through;
}

/*---------------------========================== news blog part start ========================----------------------------*/
.news-blog-main {
    background: #F2F4F5;
    padding-top: 50px;
    padding-bottom: 50px;
}

.news-part {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.news-part .news-card {
    padding: 25px;
    background-color: #fff;
    box-shadow: 0px 0px 1px 1px #ddd;
}

.news-part .news-img img {
    width: 100%;
}

.news-content h4 {
    font-size: 18px;
    margin-top: 7px;
}

.news-content p {
    font-size: 16px;
    color: #77878F;
}

.news-content .news-icon {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 20px;
}

.news-content .news-icon h5 {
    font-size: 15px;
    color: #475156;
    font-weight: 300;
}

.news-content .news-icon h5 i {
    font-size: 15px;
    color: var(--primary-color);
}

.news-read-btn {
    background-color: transparent;
    font-size: 14px;
    color: var(--primary-color);
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    border: 2px solid #FFE7D6;
}

.news-read-btn i {
    color: var(--primary-color);
    font-weight: 600;
}

/* news letter part start */
.news-letter-main {
    background: #1B6392;
    padding-top: 50px;
    padding-bottom: 50px;
}

.news-letter-part {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    justify-items: center;
}

.news-letter-btn {
    background-color: transparent;
    font-size: 14px;
    color: #fff;
    background: var(--primary-color);
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.news-letter-btn i {
    color: #fff;
    font-weight: 600;
}

.news-letter-content {
    text-align: center;
    width: 550px;
}

.news-letter-content h4 {
    color: #fff;
    font-size: 32px;
    margin-top: 7px;
}

.news-letter-content p {
    color: #dadada;
    font-weight: 300;
}

.subscribe-mail {
    display: flex;
    justify-items: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 3px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.subscribe-mail input {
    width: 100%;
    border: none;
    margin-right: 10px;
    padding-left: 5px;
}

.subscribe-mail input:focus-visible {
    outline-color: rgba(138, 193, 255, 0.767);
}

.news-letter-content .border-hr {
    margin: 0 auto;
    width: 450px;
    height: 1px;
    background-color: #97979799;
}

.brand-img img {
    margin-left: 20px;
    background-image: red;
}

.brand-img img:first-child {
    margin-left: 0px;
}


/*----------------------============================= new arrival section start ========================-----------------------------*/
.new-arrival-main {
    margin-top: 20px;
    margin-bottom: 25px;
}

.new-arrival-header {
    font-size: 24px;
    text-align: center;
    margin-bottom: 35px;
}

.arrival-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

}


.arrival-shop-btn {
    background-color: transparent;
    font-size: 14px;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: underline;
}

.arrival-shop-btn:hover {
    color: var(--primary-color);
}

.arrival-shop-btn i {
    color: #ffffff;
    font-weight: 600;
}

.arrival-part .arrival-img img {
    width: 100%;
    height: 100%;
}

.arrival-banner {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;

}

.arrival-banner-up-img {
    height: 150px;
}

.arrival-banner-up-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.arrival-banner-down-img {
    height: 150px;
}

.arrival-banner-down .arrival-banner-down-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.arrival-text {
    flex: 1;
    padding: 25px;
    align-content: end;
}

.arrival-text .tag2-text {
    display: flex;
    flex-direction: row;

}

.tag2-text .hr-border {
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 11px;
    margin-right: 5px;
}

.arrival-text .tag2 {
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 10px;
    color: #ffff;
    background-color: transparent;
}

.arrival-text h1 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #fff;
}

.arrival-text p {
    font-size: 12px;
    color: #d7d7d7cf;
    margin-bottom: 8px;
}

.arrival-banner-up-text {
    flex: 1;
    padding: 20px;
    align-content: end;
}

.arrival-banner-up-text .tag2 {
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 15px;
    color: #ffff;
}

.arrival-banner-up-text h1 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #fff;
}

.arrival-banner-up-text p {
    font-size: 14px;
    color: #d7d7d7cf;
    margin-bottom: 10px;
}

.arrival-banner-down-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.arrival-banner-down2-img {
    height: 150px;
}

.arrival-banner-down2-img img {
    width: 100%;
    height: 100%;

}

.arrival-banner-down-img img {
    width: 100%;
}



/*-------------------========================= shop product start ==========================--------------------*/

.shop-section-main {
    margin-top: 30px;
}

.shop-part {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 15px;
}

.shop-tab {
    display: flex;
    overflow-x: auto;
}

.shop-tab-main {
    margin-right: 10px;
}

.shop-tab-btn {
    font-size: 14px;
    color: #5F6C72;
    white-space: nowrap;
    padding: 5px;
    border: none;
    cursor: pointer;
    background-color: transparent;
    margin-right: 5px;
}

.shop-tab-btn:hover {
    border-bottom: 2px solid var(--primary-color);
}

.shop-tab-btn.active {
    border-bottom: 2px solid var(--primary-color);
    color: #2b2b2b;
    font-weight: 600;
}

.shop-cart-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 180px;
    padding: 8px;
    margin-top: 25px;
}

.shop-product-btn {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: baseline;
}

.shop-product-btn a {
    font-size: 14px;
    color: var(--primary-color);
}

.shop-card-first {
    background: #F3DE6D;
    transition: transform 0.3s;

    height: 100%;
    border-radius: 5px;
}

.shop-item2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.shop-content {
    margin-bottom: 60px;
    /* padding:15px; */
    text-align: center;
}

.shop-content .shop-title {
    margin-top: 20px;
    font-size: 14px;
    color: #BE4646;
}

.shop-content .shop-discount {
    font-size: 32px;
    font-weight: 600;
    color: #444;
    margin-top: 15px;
}

.shop-content .shop-des {
    font-size: 14px;
    color: #475156;
    margin-top: 15px;
    margin-bottom: 15px;
}

.shop-content .offer-text {
    font-size: 12px;

}

.shop-content .offer-text span {
    font-size: 12px;
    background-color: #fff;
    color: #000;
    padding: 5px;
}

.shop-image img {
    max-width: 100%;
    height: auto;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.shop-actions {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 5px;
}

.shop-actions .sold-item {
    font-size: 12px;
    color: #6f6f6f;
}

.review-star2 {
    margin-top: 10px;
}

.review-star2 i {
    color: #aaaaaa;
}

.review-star2 .checked {
    color: var(--primary-color);
}

.shop-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.shop-header h1 {
    font-size: 24px;
    white-space: nowrap;
}

.shop-header .timer {
    font-size: 14px;
    background-color: #ffcc00;
    padding: 2px 8px;
    border-radius: 5px;
}

/*-------------------------------============================== shop page part css start  =========================-----------------------*/



/* sidebar css start */
.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: "\2713";
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    font-size: 15px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    line-height: 13px;
}

.sidebar {
    width: 280px;
    background: #fff;
}

.section {
    margin-bottom: 24px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.price-range {
    margin-top: 12px;
}

.range-slider {
    width: 100%;
    accent-color: #f60;
}

.price-inputs {
    display: flex;
    gap: 8px;
    margin-top: 48px;
    margin-bottom: 10px;
}

.price-input {
    width: 80px;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    /* background-color: transparent; */
    padding: 4px 12px;
    background: #fff;
    border-radius: 5px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    border: 1px solid #ddd;

}

.tag:hover {
    background: #f8f8f8;
}

.tag.active {
    background: #f60;
    color: #fff;
}

.price-presets {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-preset {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.price-preset:hover {
    color: #f60;
}

.sidebar-product {
    background-color: transparent !important;
    border: 3px solid #ffd1b2d3;
}

.sidebar-product .offer-text {
    font-size: 12px;

}

.sidebar-product .offer-text span {
    font-size: 12px;
    background-color: #F3DE6D !important;
    color: #000;
    padding: 5px;
}

.sidebar-product .accessories-cart-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 236px !important;
    padding: 8px;
    margin-top: 21px;
    font-size: 14px;
}

.accessories-cart-btn2 {
    color: var(--primary-color);
    background-color: transparent;
    border: 2PX solid var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    width: 236px !important;
    padding: 8px;
    margin-top: 21px;
    font-size: 14px;
}

.accessories-cart-btn2 img {
    width: 24px;
    filter: invert(55%) sepia(81%) saturate(495%) hue-rotate(348deg);
}

/* price range slider css */
.values {
    margin-bottom: 10px;
    font-size: 18px;
}

.range-slider {
    position: relative;
    width: 100%;
}

.slider-track {
    position: absolute;
    height: 6px;
    background: var(--primary-color);
    border-radius: 5px;
    top: -75%;
    transform: translateY(-50%);
}

.range-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    width: 100%;
    height: 6px;
    background: none;
    pointer-events: none;
    left: 0px;
    top: -29px;
    background: #f4f4f4;
    border-radius: 10px;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.range-slider input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 3;
}

/* shop page topbar css */
.search-main {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    align-items: baseline;
}

.search-container {
    position: relative;
    margin-bottom: 20px;
    width: 400px;
}

#searchInput {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

#searchInput:focus {
    border-color: #3b82f6;
}

.search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
}

.filters-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
    background: #F2F4F5;
    padding: 10px;
    border-radius: 4px;
}

.active-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-label {
    color: #64748b;
    font-size: 14px;
}

.filter-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 14px;
    color: #1e293b;
}

.remove-filter {
    background: none;
    border: none;
    margin-left: 8px;
    cursor: pointer;
    font-size: 18px;
    color: #64748b;
    padding: 0 2px;
}

.remove-filter:hover {
    color: #ef4444;
}

.sort-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-section-select {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-section label {
    color: #64748b;
    font-size: 14px;
}

.custom-select {
    position: relative;
}

#sortSelect {
    appearance: none;
    padding: 6px 32px 6px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.custom-select::after {
    content: "▼";
    font-size: 12px;
    color: #64748b;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.results-count {
    color: #64748b;
    font-size: 14px;
}

#resultsNumber {
    color: #1e293b;
    font-weight: 600;
}

/* mobile filter button */
/* Button Style */
.filter-button {
    padding: 3px 5px;
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid var(--primary-color);
}

/* Sidebar Style */
.sidebar-mobile {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    padding: 20px;
    transition: 0.3s;
    z-index: 99999;
    overflow-y: auto;
}

.sidebar-mobile h2 {
    margin-top: 0;
}

.sidebar-mobile ul {
    list-style: none;
    padding: 0;
}

.sidebar-mobile ul li {
    margin: 15px 0;
}

.sidebar-mobile ul li a {
    text-decoration: none;
    color: #333;
    display: block;
}

/* Overlay Style */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9999;
}

/* Sidebar Active State */
.sidebar-mobile.active {
    left: 0;
}

.overlay.active {
    display: block;
}

/* pagination css */
.pagination {
    justify-content: center;
    gap: 10px;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);



}

.page-link {
    border-radius: 50%;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 20px;
    color: #191C1F;
}

.page-item:first-child .page-link {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.page-item:last-child .page-link {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

/*---------------------============================= footer part start ==========================---------------------------*/
.footer {
    background-color: #1a1a1a;
    color: #9ca3af;
    padding-top: 48px;
    padding-bottom: 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}


.company-info {
    margin-bottom: 24px;
}

.logo {
    max-width: 180px;
    margin-bottom: 16px;
}
.logo img {
    height: 40px;
}
.nav-logo {
    max-width: 180px;
}
.nav-logo img {
    height: 40px;
}
.contact-info p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-section h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-links {
    list-style: none;
    padding-left: 0px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-section p {
    font-size: 14px;
}

.browse-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-top: 8px;
}

.app-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 16px;
}

.app-button {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: transparent;
    border: 1px solid #4b5563;
    color: #9ca3af;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.app-buttons a img {
    width: 120px;
    border-radius: 5px;
}

.app-button img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1D2735;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: background 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: #444;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-tag {
    background-color: #374151;
    color: #9ca3af;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.footer-tag:hover {
    background-color: #4b5563;
}

.footer-bottom-main {
    margin-top: 48px;
    border-top: 1px solid #374151;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 32px;
    text-align: center;
    font-size: 14px;
}

.company-info a img {
    width: 160px;
    margin-bottom: 10px;
}

.footer-currency-img {
    display: flex;
    gap: 20px;
}

.footer-currency-img img {
    width: 30px;
    height: 15px;
}

/*------------------------------------------====================== product details page css start =================================------------------------*/
.product-details-main {
    margin-top: 20px;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.6fr;
    gap: 30px;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;

}

.product-image-main {
    position: relative;
}

.main-image-container {
    /* aspect-ratio: 1; */
    border-radius: 0.5rem;
    overflow: hidden;
    padding: 20px;
    border: 1px solid #ddd;
}

.main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}



.main-image-container .nav-btn {
    position: absolute;
    bottom: 0;
    transform: translateY(-50%);
    background: #ffd3b691;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-color);
    z-index: 9;
}


.main-image-container .prev-btn {
    left: -20px;
}

.main-image-container .next-btn {
    right: -20px;
}

.thumbnail-container {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    margin-top: 30px;
    scrollbar-width: none;
}

.thumbnail {
    flex: 0 0 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 0.375rem;
    overflow: hidden;
    cursor: pointer;
    padding: 5px;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}


  .thumbnail-container-main {
        overflow: hidden;
        width: 460px;
    }

    .thumbnail-container {
        overflow-x: scroll;
    }

    .thumbnail-slider {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .thumbnail-slider::-webkit-scrollbar {
        display: none;
    }

/* Product Info */
.prodcut-variant {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.prodcut-variant .sku-part h5 {
    font-size: 14px;
    color: #8f8f8f;
}

.prodcut-variant .sku-part h5 span {
    color: #353535;
    font-weight: 600;
}

.prodcut-variant .stock-part h5 {
    font-size: 14px;
    color: #8f8f8f;
}

.prodcut-variant .stock-part h5 span {
    color: #353535;
    font-weight: 600;
}

.prodcut-variant .stock-part h5 .stock-green {
    color: #07ff28;
}


.product-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.details-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.details-rating h5 {
    margin-bottom: 0px;
    font-size: 14px;
}

.details-star {
    color: #dddd;
    font-size: 14px;
}

.details-star .checked {
    color: var(--primary-color);
}


.review-count {
    color: #5F6C72;
    font-size: 14px;
}


.price-container {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.current-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.original-price {
    color: #aeaeae;
    text-decoration: line-through;
}

.discount-badge {
    background: #fff2e6;
    color: #ff5e00;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* .sold-item{
        font-size: 14px;
        margin-left: 5px;
    } */

/* Selection Controls */
.color-part {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    margin-top: 10px;
    gap: 10px;
}

.color-part .color-selection h5 {
    font-size: 14px;
    color: #191C1F;
    margin-bottom: 0px;
}

.color-part .memory-selection h5 {
    font-size: 14px;
    color: #191C1F;
    margin-bottom: 0px;
}

.color-part .size-selection h5 {
    font-size: 14px;
    color: #191C1F;
    margin-bottom: 0px;
}

.color-part .storage-selection h5 {
    font-size: 14px;
    color: #191C1F;
    margin-bottom: 0px;
}

.select-box option {
    font-size: 14px;
}

.color-selection,
.size-selection,
.memory-selection,
.storage-selection {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


.color-options {
    display: flex;
    gap: 0.5rem;
}



.color-btn[data-color="space-gray"] {
    background-color: #86868b;
}

.color-btn[data-color="silver"] {
    background-color: #e3e3e3;
}

.color-btn.active {
    border-color: #6eff34;
}

.select-box {
    padding: 0.5rem;
    border: 1px solid #E4E7E9;
    border-radius: 0.375rem;
    width: 100%;
    font-size: 14px;
    color: #707070;
    cursor: pointer;
}

.select-box:focus-visible {
    outline: inherit;
}

/* Quantity Selector */
/* .quantity-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    } */

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #ddd;
    border-radius: 3px;
    width: 100px;
}

.qty-btn {
    width: 100%;
    height: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    background: none;
    cursor: pointer;
}

.sold-count {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Buttons */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.primary-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 3px;
    font-weight: 500;
    cursor: pointer;
}

.secondary-btn {
    padding: 0.75rem;
    border: none;
    border-radius: 3px;
    font-weight: 500;
    cursor: pointer;
    width: 120px;
}

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

.secondary-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.add-cart-button {
    background-color: #DA5726;
    position: relative;
    transition: all linear .3s;
}

.add-cart-button:hover {
    padding-right: 0px;
    padding-left: 0px;
}

.add-cart-button:after {
    content: '\f07a';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    opacity: 0;
    top: 14px;
    right: -20px;
    font-weight: 900;
    transition: 0.5s;
}

.add-cart-button:hover:after {
    opacity: 1;
    right: 10px;
}

.additional-main {
    margin-top: 15px;
}

.additional-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.additional-actions2 {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    justify-items: end;
}

.payment-main {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 20px;
}

.payment-main h5 {
    font-size: 14px;
    color: #191C1F;
}

.payment-main img {
    width: 300px;
}

.ghost-btn {
    background: none;
    border: none;
    color: #475156;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ghost-btn i {
    font-size: 18px;
    color: #9a9a9a;
}

.social-icon i {
    font-size: 18px;
    margin-left: 2px;
    cursor: pointer;
    color: #9a9a9a;
}

.social-icon i:hover {
    color: var(--primary-color);
}

.social-icon .clone-icon {
    margin-right: 10px;
}

/* Store Card */
.store-card {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding-top: 15px;
    padding-bottom: 15px;
}

.store-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.store-details {
    flex: 1;
}

.store-avatar-part {
    display: flex;
    gap: 15px;
}

.store-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
}

.store-details h5 {
    font-size: 16px;
}

.store-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.store-rating h5 {
    margin-bottom: 0px;
    font-size: 13px;
}

.store-star {
    color: #dddd;
    font-size: 16px;
}

.store-star .checked {
    color: var(--primary-color);
}

.store-info .outline-btn {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--primary-color);
    cursor: pointer;
    font-size: 13px;
    color: #fff;
    padding: 10px 15px;
}

.store-info .outline-btn img {
    width: 24px;
    filter: brightness(0) invert(1);
    margin-right: 5px;

}
.store-action{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

/* review part  */
.review-stars i{
    color: #dddd;
    font-size: 14px;
}
.review-stars .checked{
    color: var(--primary-color);
}
.review-details .review-text{
    margin-bottom: 5px;
}

/* details page description tab */
.description-tab {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
}

.details-tab-list {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

.details-tab-trigger {
    padding: 0.75rem 1.5rem;
    border: none;
    background: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.details-tab-trigger:hover {
    color: #333;
}

.details-tab-trigger.active {
    color: #333;
    border-bottom-color: var(--primary-color);
}

/* Tab content */
.details-tab-content {
    display: none;
}

.details-tab-content.active {
    display: block;
}

/* Description grid layout */
.description-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.review-icon i {
    color: var(--primary-color);
}
.review-text h4{
    font-size: 16px;
}




@media (min-width: 768px) {
    .description-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Description content */
.description-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    color: #64748b;
}

/* Features */
.features .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 0px;
}

.feature-list li {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.describe-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #ff5e00;
}

/* Shipping information */
.features-shipping {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.shipping .shipping-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 0px;
}

.shipping-list li {
    font-size: 15px;
}

.shipping-list li span:first-child {
    font-weight: 500;
}

.shipping-list li span:last-child {
    color: #64748b;
}

/* Placeholder content */
.placeholder {
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.product-variation-section {
            margin-top: 20px;
        }

        .variation-row {
            display: flex;
            align-items: flex-start;
            flex-wrap: nowrap;
            justify-content: space-between;
        }

        .attribute-selection {
            display: flex;
            flex-direction: column;
            /* min-width: 305px; */
        }

        .color-options {
            display: flex;
            gap: 10px;
            margin-top: 6px;
        }

        .color-btn {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 2px solid transparent;
            cursor: pointer;
            cursor: pointer;
            outline: none;
            transition: all linear .3s;
        }


        .color-btn.active {
            border: 4px solid #6eff34;
            transition: all linear .3s;
        }

        /* .select-box {
            padding: 6px 12px;
            border-radius: 4px;
            margin-top: 6px;
            border: 1px solid #ccc;
        } */

/* chat box css   */
.message-container {
            position: fixed;
            right: 20px;
            bottom: 95px;
            width: 100%;
            max-width: 730px;
            height: 60vh;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            display: flex;
            overflow: hidden;
        }

        /* Sidebar Styles */
        .message-sidebar {
            width: 270px;
            background-color: #fff;
            border-right: 1px solid #eaeaea;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .message-sidebar h1 {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            padding: 20px;
        }

        .chat-tabs {
            display: flex;
            padding: 0 20px;
            margin-bottom: 15px;
        }

        .chat-tab {
            background: none;
            border: none;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #666;
            cursor: pointer;
            border-radius: 20px;
            margin-right: 8px;
            display: flex;
            align-items: center;
        }

        .chat-tab.active {
            background-color: #f0f0f0;
            color: #333;
        }

        .badge {
            background-color: #eaeaea;
            color: #666;
            font-size: 12px;
            border-radius: 10px;
            padding: 2px 6px;
            margin-left: 6px;
        }

        .search-chat {
            padding: 0 20px;
            margin-bottom: 15px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 10px 40px 10px 15px;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            font-size: 14px;
            outline: none;
        }

        .search-input:focus {
            border-color: #ddd;
        }

        .search-button {
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #999;
        }

        .conversation-list {
            flex: 1;
            overflow-y: auto;
            padding: 0 10px;
        }

        .conversation-item {
            display: flex;
            padding: 12px 10px;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.2s;
            position: relative;
        }

        .conversation-item:hover {
            background-color: #f9f9f9;
        }

        .conversation-item.active {
            background-color: #f0f0f0;
        }

        .avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 12px;
            flex-shrink: 0;
        }

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

        .conversation-details {
            flex: 1;
            min-width: 0;
        }

        .conversation-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4px;
        }

        .conversation-header h3 {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            display: flex;
            align-items: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }


        .time {
            font-size: 12px;
            color: #999;
        }

        .last-message {
            font-size: 13px;
            color: #666;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 200px;
        }

        .unread-badge {
            position: absolute;
            right: 10px;
            bottom: 12px;
            background-color: #ff5a5f;
            color: white;
            font-size: 11px;
            font-weight: 500;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .chat-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            background-color: #f9f9f9;
        }

        .chat-header {
            padding: 15px 20px;
            background-color: #fff;
            border-bottom: 1px solid #eaeaea;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-user-info {
            display: flex;
            align-items: center;
        }

        .chat-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 12px;
        }

        .chat-user-info h2 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            display: flex;
            align-items: center;
        }

        .chat-user-info p {
            font-size: 13px;
            color: #666;
            margin-top: 2px;
        }

        .chat-actions {
            display: flex;
        }

        .message-sidebar h1 i{
            font-size: 20px;
            color: #333;
        }

        .icon-button {
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .icon-button i {
            color: #999;
            font-size: 24px;
        }

        .icon-button:hover {
            background-color: #f0f0f0;
        }

        .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .message-group {
            margin-bottom: 20px;
        }

        .message-time {
            text-align: center;
            font-size: 12px;
            color: #999;
            margin: 15px 0;
            position: relative;
        }

        .message-time::before,
        .message-time::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 70px;
            height: 1px;
            background-color: #eaeaea;
        }

        .message-time::before {
            right: calc(50% + 40px);
        }

        .message-time::after {
            left: calc(50% + 40px);
        }

        .message {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-end;
            justify-content: flex-start;
            flex-direction: row-reverse;
        }

        .message-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            margin: 0 8px;
        }

        .message-content {
            max-width: 70%;
        }

        .message-bubble {
            padding: 12px 16px;
            border-radius: 18px;
            font-size: 14px;
            line-height: 1.4;
            position: relative;
        }

        .message-bubble p {
            margin-bottom: 0;
        }

        .message.guest .message-bubble {
            background-color: #f0f0f0;
            color: #333;
            border-bottom-right-radius: 4px;
        }

        .message.host .message-bubble {
            background-color: #FFE7D6;
            color: #64748b;
            border-bottom-left-radius: 4px;
        }

        .message-time-sent {
            font-size: 11px;
            color: #999;
            margin-top: 4px;
            display: flex;
        }

        .message.guest .message-time-sent {
            justify-content: flex-start;
            margin-left: 8px;
        }

        .message.host .message-time-sent {
            justify-content: flex-end;
            margin-right: 8px;
        }



        .message.host .message-content {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .image-message {
            padding-bottom: 8px;
        }

        .chat-image {
            width: 100%;
            max-height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 8px;
        }

        .chat-input-container {
            padding: 15px;
            background-color: #fff;
            border-top: 1px solid #eaeaea;
            display: flex;
            align-items: center;
        }

        .chat-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #eaeaea;
            border-radius: 24px;
            font-size: 14px;
            outline: none;
            margin: 0 10px;
        }

        .chat-input:focus {
            border-color: #ddd;
        }

        .send-button {
            background-color: #ff5a5f;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .send-button:hover {
            background-color: #ff4146;
        }

        .chat-btn {
            display: flex;
            align-items: center;
            flex-direction: row;
            text-transform: uppercase;
            border: 1px solid var(--primary-color);
            border-radius: 8px;
            cursor: pointer;
            font-size: 13px;
            color: var(--primary-color);
            padding: 10px 15px;
        }

        .chat-btn:hover {
            background-color: var(--primary-color);
            color: #fff;
        }

        .chat-btn img {
            width: 16px;
            filter: invert(42%) sepia(84%) saturate(672%) hue-rotate(347deg) brightness(91%) contrast(92%);
            margin-right: 7px;
        }

        .chat-btn:hover img {

            filter: invert(100%);
        }

        .chat-close-btn {
            position: absolute;
            background: transparent;
            top: 3px;
            right: 5px;
            border: none;
            font-size: 22px;
            color: rgb(255, 52, 52);
            cursor: pointer;
        }

        .message-modal-content {
            background-color: #fff;
            margin: auto;
            padding: 20px;
            width: 30%;
            border-radius: 10px;
            text-align: center;
        }

        .message-close {
            float: right;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
        }

        .message-modal-actions a.btn {
            margin: 10px;
            padding: 10px 20px;
            background: #2d89ef;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
        }

        .message-modal-actions a.btn-outline {
            background: transparent;
            border: 1px solid #2d89ef;
            color: #2d89ef;
        }


        /* location part css  */

        .delivery-container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            /* padding: 24px; */
            /* border: 1px solid #e2e8f0; */
        }

        .option-text h5 {
            font-size: 14px;
            margin-bottom: 15px;
        }

        .delivery-header {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .delivery-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            font-weight: 600;
            color: #334155;
        }

        .delivery-title i {
            font-size: 18px;
            color: var(--primary-color);
        }

        .location-icon {
            width: 20px;
            height: 20px;
            color: var(--primary-color);
        }

        .change-btn {
            background: none;
            border: none;
            color: var(--primary-color);
            /* padding: 8px 16px; */
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .address-field {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 14px;
            color: #374151;
            background-color: #f9fafb;
            margin-bottom: 20px;
        }

        .delivery-options {
            display: grid;
            grid-template-rows: 1fr 1fr;
            gap: 16px;
        }

        .delivery-option {
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 16px;
            background: #fefefe;
            transition: all 0.2s;
        }

        .delivery-option:hover {
            border-color: #d1d5db;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .option-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .option-icon {
            width: 20px;
            height: 20px;
        }

        .truck-icon {
            color: #10b981;
        }

        .cash-icon {
            color: #f59e0b;
        }

        .option-title {
            font-size: 14px;
            font-weight: 600;
            color: #374151;
        }

        .option-details {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 4px;
        }

        .option-price {
            font-size: 18px;
            font-weight: 600;
            color: #10b981;
            text-wrap: nowrap;
        }

        .option-status {
            font-size: 13px;
            color: #10b981;
            font-weight: 500;
        }


        .location-card {
            background: white;
            margin-bottom: 16px;

        }

        .location-content {
            padding: 16px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
        }

        .location-info {
            display: flex;
            gap: 12px;
            flex: 1;
        }

        /* .location-icon {
            font-size: 20px;
            color: #f97316;
            margin-top: 2px;
        } */

        .location-details {
            flex: 1;
        }

        .deliver-text {
            font-size: 14px;
            color: #6b7280;
            margin-bottom: 4px;
        }

        .current-location {
            font-size: 14px;
            font-weight: 500;
            color: #111827;
            line-height: 1.4;
            margin-bottom: 0px;
        }


        .chevron {
            font-size: 12px;
            transition: transform 0.3s;
        }

        .chevron.up {
            transform: rotate(180deg);
        }

        /* Selection Card Styles */
        .selection-card {
            position: absolute;
            top: 35px;
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 16px;
            display: none;
            overflow: hidden;
            z-index: 99;
        }

        .selection-card.active {
            display: block;
        }

        .selection-header {
            padding: 16px;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .back-btn {
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            padding: 4px;
            color: #6b7280;
        }

        .back-btn:hover {
            color: #111827;
        }

        .back-icon {
            display: block;
        }

        .selection-title {
            font-size: 18px;
            font-weight: 600;
            flex: 1;
            margin-bottom: 0px;
        }



        /* Search Input */
        .search-container {
            padding: 0 16px 16px;
            position: relative;
        }

        .delivery-search-icon {
            position: absolute;
            left: 28px;
            top: 40%;
            transform: translateY(-50%);
            color: #6b7280;
            font-size: 14px;
        }

        .delivery-search-input {
            width: 100%;
            padding: 12px 12px 12px 36px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 14px;
            outline: none;
        }

        .delibvery-search-input:focus {
            border-color: #f97316;
        }

        /* Options Container */
        .options-container {
            padding: 0 16px;
            max-height: 240px;
            overflow-y: auto;
        }

        .option-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            margin-bottom: 8px;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .option-item:hover {
            background-color: #f9fafb;
        }

        .option-item.selected {
            border-color: #f97316;
            background-color: #fff7ed;
        }

        .option-radio {
            width: 16px;
            height: 16px;
            border: 2px solid #d1d5db;
            border-radius: 50%;
            position: relative;
            transition: border-color 0.2s;
        }

        .option-item.selected .option-radio {
            border-color: #f97316;
        }

        .option-item.selected .option-radio::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: #f97316;
            border-radius: 50%;
        }

        .option-label {
            flex: 1;
            font-size: 14px;
            font-weight: 500;
        }

        .option-arrow {
            color: #6b7280;
            font-size: 14px;
        }

        /* Selection Actions */
        .selection-actions {
            padding: 16px;
            border-top: 1px solid #e5e7eb;
            display: flex;
            gap: 12px;
        }

        .cancel-btn,
        .confirm-btn {
            flex: 1;
            padding: 12px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .cancel-btn {
            background: white;
            border: 1px solid #d1d5db;
            color: #374151;
        }

        .cancel-btn:hover {
            background: #f9fafb;
        }

        .confirm-btn {
            background: #ea580c;
            border: 1px solid #ea580c;
            color: white;
        }

        .confirm-btn:hover:not(:disabled) {
            background: #dc2626;
        }

        .confirm-btn:disabled {
            background: #d1d5db;
            border-color: #d1d5db;
            cursor: not-allowed;
        }


        .delivery-info {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .delivery-icon {
            font-size: 12px;
            color: #16a34a;
        }

        .delivery-text {
            font-size: 12px;
            color: #16a34a;
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
        }

.pd-detail__color,
.pd-detail__size {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.color__radio {
    position: relative;
    line-height: 1.89;
    margin-right: 36px;
    display: inline-block;
}

.color__radio [type="radio"] {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 30px;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

.color__radio-label {
    position: initial;
    display: inline-block;
    border-radius: 50px;
}

.color__radio-label:before,
.color__radio-label:after {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    border: 2px solid transparent;
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50px !important;
}

.color__radio-label:after {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    background-color: inherit;
    border: 1px solid #bdbdbd;
}

.color__radio input:checked+label:before {
    border-color: orangered;
}

.size__radio {
    position: relative;
    margin: 0 12px 12px 0;
}

.size__radio [type="radio"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

.size__radio-label {
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 7px 15px;
    background-color: #ffffff;
    font-size: 13px;
    color: #333333;
    cursor: pointer;
    display: inline-block;
    border-radius: 50px;
}

.size__radio input:checked+label {
    background-color: #ff0000;
    color: #fff;
    font-weight: 600;
}
 /* location Progress*/
.location-progress-container {
    padding: 0 16px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.location-progress-border {
    border: 3px solid #f97316;
    border-radius: 50%;
}

.location-progress-step {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #7f8c8d;
    z-index: 2;
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
}

.location-progress-step.active {
    background: #fff;
}

.location-progress-step.completed {
    background: #f97316;
}

.locatioin-progress-line {
    flex: 1;
    height: 2px;
    background: #d1d5db;
    position: relative;
}

.location-progress-fill {
    height: 100%;
    background: #f97316;
    width: 0;
    transition: width 0.3s;
}

.location-progress-fill.completed {
    width: 100%;
}

/* add  */
.details-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #374151;
}

.details-badge i {
    width: 16px;
    height: 16px;
}
 .product-question-answer-main {
    height: 35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    position: relative;
    overflow: scroll;
}

.main-question-answer {
    width: 100%;
    position: absolute;
    top: 0px;
    padding: 20px;
}

/* Header Section */
.header-section {
    margin-bottom: 20px;
}

.header-title {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.icon-wrapper {
    padding: 8px;
    background: #dbeafe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 20px;
    color: #2563eb;
}

.title-content h1 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.title-content p {
    color: #6b7280;
    font-size: 14px;
}

.question-answer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .btn-primary {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .btn-primary:hover {
            background: #da440d !important;
        }

        .login-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            margin-bottom: 24px;
        }

        .login-card {
            padding: 16px;
            border: 1px solid #bfdbfe;
            background: rgba(239, 246, 255, 0.5);
        }

        .login-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .login-icon {
            width: 20px;
            height: 20px;
            color: #2563eb;
        }

        .login-content p {
            font-size: 14px;
            color: #374151;
        }

        .link-btn {
            background: none;
            border: none;
            color: #2563eb;
            font-weight: 500;
            cursor: pointer;
            text-decoration: underline;
            font-size: 14px;
        }

        .link-btn:hover {
            color: #1d4ed8;
        }

        /* Questions Section */
        .questions-section {
            margin-bottom: 32px;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .section-header h2 {
            font-size: 18px;
            font-weight: 600;
            color: #111827;
        }

        .section-header p {
            font-size: 14px;
            color: #6b7280;
        }

        .highlight {
            color: #2563eb;
            font-weight: 500;
        }

        /* Question Cards */
        .question-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            padding: 15px;
            margin-bottom: 16px;
            transition: box-shadow 0.2s;
        }

        .question-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .question-content {
            display: flex;
            gap: 10px;
        }

        .answer-content {
            display: flex;
            gap: 10px;
            margin-top: 10px;
            margin-left: 30px;
        }

        .answer-content .question-answer-avatar {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #f6703ba4, #eb7425b6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 500;
            font-size: 16px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;

        }

        .question-content .question-answer-avatar {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #3b83f6a4, #2564ebb6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 500;
            font-size: 16px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;

        }

        .question-details {
            flex: 1;
        }

        .question-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 5px;
        }

        .question-text {
            font-weight: 500;
            color: #444;
            line-height: 1.5;
            padding-right: 16px;
            font-size: 14px;
        }

        .new-badge {
            background: #dcfce7;
            color: #166534;
            border: 1px solid #bbf7d0;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 500;
        }

        .question-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .meta-info {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 12px;
            color: #6b7280;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .meta-item i {
            width: 12px;
            height: 12px;
        }

        .question-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .status-badge {
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .status-badge i {
            width: 12px;
            height: 12px;
        }

        .status-answered {
            background: #dcfce7;
            color: #166534;
        }

        .status-pending {
            background: #fef3c7;
            color: #d97706;
            border: 1px solid #fde68a;
        }

        .btn-ghost {
            background: none;
            border: none;
            color: var(--primary-color);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 6px;
            transition: background-color 0.2s;
        }

        .btn-ghost:hover {
            background: #fff6ef;
            color: var(--primary-color);
        }


        .pagination-card {
            padding: 16px;
        }

        .pagination-btn {
            display: flex;
            align-items: center;
            gap: 4px;
            background: none;
            border: 1px solid #e5e7eb;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .pagination-btn:hover {
            background: #eff6ff;
            color: #2563eb;
            border-color: #bfdbfe;
        }

        .pagination-btn i {
            width: 16px;
            height: 16px;
        }

        .pagination-numbers {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .pagination-number {
            background: none;
            border: 1px solid #e5e7eb;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            min-width: 40px;
        }

        .pagination-number:hover {
            background: #eff6ff;
            color: #2563eb;
            border-color: #bfdbfe;
        }

        .pagination-number.active {
            background: #2563eb;
            color: white;
            border-color: #2563eb;
        }

        .pagination-ellipsis {
            padding: 8px 4px;
            color: #6b7280;
            font-size: 14px;
        }

        .ask-btn {
            background-color: #e74c3c;
            color: white;
            border: none;
            padding: 7px 14px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
        }

        .question-input {
            margin-top: 10px;
            display: none;
            /* hidden initially */
            position: relative;
        }

        .question-input input {
            width: 100%;
            padding: 8px;
            font-size: 14px;
            border-radius: 6px;
            border: 1px solid #e5e7eb;
        }

        .question-input .send-btn {
            position: absolute;
            font-size: 18px;
            right: 10px;
            top: 10px;
            border: none;
            background: none;
            color: var(--primary-color);
        }

        .question-input .question-input .send-icon {
            color: var(--primary-color);
        }


/*----------------------====================== track order page css start ====================-----------------------*/
.track-page-main {
    margin-bottom: 100px;
}

.track-info h1 {
    font-size: 32px;
}

.track-info p {
    font-size: 16px;
    color: #5F6C72;
    padding-right: 130px;
}

.track-part {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;

}

.track-part h5 {
    font-size: 16px;
}

.track-part .input-selection input {
    padding: 10px;
    border: 1px solid #ddd;
    width: 100%;
    border-radius: 5px;
}

.track-button {
    margin-top: 20px;
}

.track-button button {
    text-transform: uppercase;
    padding: 10px 50px;
    border: none;
    background-color: var(--primary-color);
}

/* track order details page  */
/* @keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
    }

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

@keyframes slide-in {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

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

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.track-progress-part {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.order-progress-text {
    display: flex;
    justify-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
}

.track-progress-part h4 {
    font-size: 14px;
    color: #2c3e50;
    text-align: left;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.track-progress-part h5 {
    font-size: 14px;
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 0px;
}

.track-progress-part .order-expected-text {
    font-size: 14px;
    color: #5d5d5d;
    margin-left: 20px;
}

.order-summary-text {
    display: flex;
    justify-content: space-between;
    padding: 25px;
    background-color: #FDFAE7;
    margin: 20px;
    border-radius: 5px;
    align-items: center;
}
.track-text a i{
    color:var(--primary-color);
}
.order-summary-text .track-text h4 {
    font-size: 20px;
    color: #191C1F;
    text-align: left;
    margin-bottom: 0px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.order-summary-text .track-text h6 {
    font-size: 14px;
    color: #475156;
    text-align: left;
    margin-bottom: 0px;
}

.order-summary-text h5 {
    font-size: 24px;
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 0px;
}


.track-product {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.track-img {
    text-align: center;
}

.track-img img {
    /* padding: 30px; */
    width: 300px;
    height: 250px;
    border-radius: 30px;
}

.order-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.order-number,
.order-date {
    font-size: 14px;
    color: #7f8c8d;
}

.progress-bar2 {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 140px;
    margin-top: 50px;
    margin-left: 120px;
    margin-right: 120px;
}

.progress-step {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #7f8c8d;
    z-index: 2;
    transition: all 0.3s ease;
    border: 3px solid var(--primary-color);
}

.progress-step.active {
    background-color: var(--primary-color);
    color: #ffffff;
    /* animation: pulse 1s infinite; */
}

.progress-step-circle1 {
    position: relative;
}

.progress-step-circle1 .circle-icon {
    position: absolute;
    top: 50px;
    left: -50px;
    width: 115px;
    text-align: center;
}

.progress-step-circle2 {
    position: relative;
}

.progress-step-circle2 .circle-icon {
    position: absolute;
    top: 45px;
    left: -50px;
    width: 115px;
    text-align: center;
}

.progress-step-circle3 {
    position: relative;
}

.progress-step-circle3 .circle-icon {
    position: absolute;
    top: 45px;
    left: -50px;
    width: 115px;
    text-align: center;
}

.progress-step-circle4 {
    position: relative;
}

.progress-step-circle4 .circle-icon {
    position: absolute;
    top: 45px;
    left: -50px;
    width: 115px;
    text-align: center;
}

.circle-icon i {
    font-size: 26px;
    color: var(--primary-color);
}

.circle-icon h5 {
    font-size: 16px;
    color: #191C1F;
    margin-top: 5px;
    text-align: center;
}

.circle-icon .active-green {
    color: #2DB224;
}

.progress-step-circle1 .progress-bar-step {
    position: absolute;
    top: 9px;
    left: 15px;
    /* width: 300px; */
    height: 6px;
    margin-bottom: 6px;
    background: var(--primary-color);
    z-index: 9;
}


.progress-step-point {
    font-size: 16px;
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    white-space: nowrap;
}

.progress-bar2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 6px;
    width: 100%;
    background-color: #FFE7D6;
}

/*----------========= activity-card css start ==========-------------*/
.activity-card {
    background: white;
    margin-bottom: 2rem;
}

.activity-card-border {
    border-right: 1px solid #dddd;
}

.activity-card-header {
    padding: 20px;
}

.activity-card-header h2 {
    font-size: 18px;
    color: #191C1F;
    margin-bottom: 0px;
}

.activity-card-content {
    padding-left: 20px;
    padding-right: 20px;
}

/* Timeline styles */
.timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 1rem;
}

.timeline-icon i {
    padding: 15px;
    background-color: #ecf7ff;
    color: #3b82f6;
    border-radius: 3px;
}

.timeline-icon .green-color {
    background-color: #eaffe8;
    color: #43ff36;
}

.timeline-icon.package {
    background-color: #3b82f6;
    position: relative;
}


.timeline-icon.circle {
    border: 2px solid #9ca3af;
}

.timeline-content .status {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.timeline-content .date {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Product styles */
.activities {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.activity-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.activity-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
}

.activity-details h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.activity-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.activity-meta {
    display: flex;
    justify-content: space-between;
    color: #6b7280;
    font-size: 0.875rem;
}

.price {
    font-weight: 600;
    color: #333;
}

.subtotal {
    text-align: right;
    font-weight: 600;
    padding-top: 1rem;
}

/* Address styles */
.activity-address-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid #ddd;
    padding-top: 25px;
}

.address .name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.address-text {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contact {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}


/*-------------------================================== wishlist cart page css ==============================------------------------------*/
.wishlist-main {
    margin-bottom: 40px;
}

.wishlist-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 40px;
}

/* wishlist Items Section */
.wishlist-card {
    background: white;
    border-radius: 0.5rem;
}

.wishlist-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 0.875rem;
    padding: 10px 20px;
    background: #f7f7f7;
}

.wishlist-item {
    position:relative;
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
}

.wishlist-items-list {
    margin-top: 1rem;
    padding-right: 20px;
    padding-left: 20px;

}

.wishlist-actions {
    position: relative;
    width: 180px;
}

.wishlist-cross-btn {
    position: absolute;
    top: 44px;
    right: 15px;
    cursor: pointer;
}

.wishlist-actions .update-btn {
    font-size: 12px;
    padding: 5px 10px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    border-radius: 2px;
    cursor: pointer;
    color: #fff;
}

.wishlist-actions .update-btn:hover {
    background: #fc6d0f;
}

.wishlist-item .wishlist-cross-btn i {
    padding: 3px 5px;
    background: transparent;
    color: #ff4c4c;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 14px;
}

.wishlist-actions .wishlist-add-cart {
    font-size: 12px;
    padding: 5px 10px;
    border: 1px solid #ADB7BC;
    background: #ADB7BC;
    border-radius: 2px;
    cursor: pointer;
    color: #fff;
}










.wishlist-items-list2 {
    margin-top: 1rem;
    padding-right: 20px;
    padding-left: 20px;

}


.wishlist-items h1 {
    font-size: 20px;
    padding: 10px 20px;
}

.wishlist-item-part {
    padding-top: 10px;
    border-radius: 5px;
    padding-bottom: 20px;
    border: 1px solid #ddd;
}

.wishlist-item-part h1 {
    font-size: 20px;
    padding-left: 20px;
}

.wishlist-item2 {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
}

.wishlist-cross-btn2 {
    position: absolute;
    top: 3px;
    right: 2px;
    cursor: pointer;
}

.wishlist-item2 .wishlist-cross-btn2 i {
    padding: 3px 5px;
    background: transparent;
    color: #ff4c4c;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 14px;
}

.wishlist-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wishlist-info h4 a{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 274px;
    height: 35px;
    white-space: normal;
    color: #475156;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.5s;
    margin-top: 10px;
}

.wishlist-info img {
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    object-fit: cover;
}

.wishlist-price {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.wishlist-actions2 {
    position: relative;
    width: 147px;
}

.wishlist-controls h5 {
    font-size: 14px;
    color: #2DB224;

}
.wishlist-controls h5 span {
    margin-left: 5px;
    font-size: 14px;
    color: #000;

}
.wishlist-actions2 .wishlist-add-cart2 {
    font-size: 12px;
    padding: 5px 10px;
    border: 1px solid #ADB7BC;
    background: #ADB7BC;
    border-radius: 2px;
    cursor: pointer;
    color: #fff;
}

.wishlist-controls .out-stock {
    color: #EE5858;
}

.wishlist-actions2 .update-btn2 {
    font-size: 12px;
    padding: 5px 10px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    border-radius: 2px;
    cursor: pointer;
    color: #fff;
}

.wishlist-actions2 .update-btn2:hover {
    background: #fc6d0f;
}

/*---------------============================= Checkout page css start =======================---------------------*/
.checkout-main {
    margin-bottom: 40px;
}

.checkout-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 2.5fr 1fr;
}

.form-section {
    margin-bottom: 24px;
}

.form-section h2 {
    font-size: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.name-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.shipping-address{
    border:1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    margin-bottom:20px;
}
.shipping-address p {
    margin-bottom:0px;
    border-radius: 5px;
}
.shipping-address p i{
    color: var(--primary-color);
    margin-left: 3px;
    cursor:pointer;
}

.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}
.address-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.shipping-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.shipping-header h2 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.address-list {
    font-family: sans-serif;
    max-width: 500px;
    margin: 20px auto;
}

.address-item {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
}

.address-item.selected {
    border-color: #00a5c0;
    background-color: #f9feff;
}

.address-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    justify-content: space-between
}

.address-header input[type="radio"] {
    accent-color: var(--primary-color);
}

.address-title {
    font-weight: bold;
}

.address-phone {
    margin-left: auto;
    color: #555;
}

.address-tag {
    display: inline-block;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-bottom: 4px;
    color: white;
    font-weight: bold;
}

.address-tag.home {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.address-tag.office {
    background-color: var(--primary-color);
}

.address-line {
    font-weight: 500;
    margin-bottom: 4px;
}

.region {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.default-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.default-btn {
    padding: 6px 10px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: transparent;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-cancel {
    padding: 10px 20px;
    background: #f2f2f7;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-save {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-address {
    background: transparent;
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.radio-group .other {
    color: var(--primary-color);
}

.email-part {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 0.875rem;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px #2563eb;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    cursor: pointer;
    padding-bottom: 15px;
    border: beige;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.payment-options .payment-option:last-child {
    border-right: none;
}

/* @media (min-width: 640px) {
        .payment-options {
            grid-template-columns: repeat(5, 1fr);
        }
    } */

.payment-input-main {
    border: 1px solid #ddd;
    border-radius: 4px;
}

.payment-input-main h3 {
    padding-top: 20px;
    padding-left: 20px;
    font-size: 20px;
}

.card-form {
    padding: 20px;
}

.payment-option {
    position: relative;
    border-right: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
}

.payment-option input[type="radio"] {
    position: absolute;
    bottom: 0px;
    left: 80px;
}


.payment-input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #cecece;
    /* Default border color */
    border-radius: 50%;
    display: inline-block;
    position: relative;
    cursor: pointer;
    background-color: white;
}

/* When the radio button is selected */
.payment-input[type="radio"]:checked {
    border-color: var(--primary-color);
    /* Change border color when selected */
    background-color: white;
    /* Background color */
}

/* Create inner dot when selected */
.payment-input[type="radio"]:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    /* Inner dot color */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-group label span {
    color: #9e9e9e;
    font-weight: 300;
}

.payment-option .icon {
    display: block;
    font-size: 24px;
    margin-bottom: 0.5rem;
}

.payment-option label .icon .payment-img {
    width: 30px;
}

.payment-option .label {
    display: block;
    font-size: 14px;
    margin-top: 20px;
}

.payment-option .card {
    cursor: pointer;
}

.card-form {
    margin-top: 1rem;
}

.card-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.coupon-card {
    margin-bottom: 10px;
}
.coupon-card .msg__text a{
    color: var(--primary-color)
}
.coupon-btn button{
    border:1px solid #ddd;
    border-radius:5px;
    background:var(--primary-color);
    color:#fff;
    margin-bottom:5px;
}
.coupon-btn button:hover{
    background: var(--hover-color);
    color:#fff;
}
.coubp
.order-summary {
    /* position: sticky;
        top: 1rem; */
    margin-top: 15px;
}

.summary-card {
    background: #fff;
    padding: 24px;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.summary-card h2 {
    font-size: 20px;
}

.order-list {
    scrollbar-width: none;
    overflow-y: scroll;
    height: 380px;
    margin: 1rem 0;
}

.order-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.order-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.order-name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.order-price {
    color: #666;
    font-size: 0.875rem;
}

.order-price span {
    color: var(--primary-color);
}

/* .summary-details {
                    padding-top: 1rem;
                } */

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.free-shipping {
    color: #22c55e;
}

.summary-details .total {
    font-weight: 600;
    font-size: 1.125rem;
    border-top: 1px solid #eee;
    padding-top: 0.5rem;
    margin-top: 15px;
    margin-bottom: 20px;
    color: var(--primary-color)
}

.place-order-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.place-order-btn:hover {
    background-color: #ca4a05;
}

.create-actions {
    margin-bottom: 10px;
}

/* .coupon-main{
        display: none;
    } */
.coupon-part {
    display: none;
}

.coupon-button {
    padding: 0px;
    cursor: pointer;
    color: #444;
    margin-bottom: 10px;
    font-weight: 600;
}

.coupon-button:hover {
    color: #444;
}
.location-info2 {
    display: flex;
    gap: 12px;
    flex: 1;
}

/* .location-icon {
    font-size: 20px;
    color: #f97316;
    margin-top: 2px;
} */

.location-details2 {
    flex: 1;
}

.deliver-text2 {
    font-size: 16px;
    color: #000;
    margin-bottom: 4px;
}

.current-location2 {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0px;
}
.current-location2 i{
    color: var(--primary-color);
    font-size: 14px;
    margin-left: 3px;
    cursor:pointer;
}

  .edit-icon {
    color: #ea580c;
    margin-left: 10px;
    cursor: pointer;
    font-size: 14px;
}

.shipping-edit-modal {
    overflow-y: scroll;
    position: fixed;
    top: 0;
    right: -400px;
    height: 100%;
    width: 400px;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 9999;
    padding: 20px;
}

.shipping-edit-modal.show {
    right: 0;
}

#addShippingForm {
    display: none;
}

.shipping-edit-modal-content {
    display: flex;
    flex-direction: column;
    margin-block: 20px;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    align-self: flex-end;
    font-size: 20px;
    cursor: pointer;
    color: red;
}

.shipping-edit-modal-content h2 {
    margin-top: 0;
}

.shipping-edit-modal-content input {
    margin-bottom: 10px;
    padding: 8px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.shipping-edit-modal-content button {
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.shipping-edit-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.shipping-edit-modal.show {
    display: block;
}

/*-------------------================================== shopping cart page css ==============================------------------------------*/
.shopping-main {
    margin-bottom: 40px;
}

.shopping-grid {
    display: grid;
    gap: 1.5rem;
    border-radius: 5px;
    grid-template-columns: 2.5fr 1fr;
}

/* @media (min-width: 1024px) {
        .shopping-grid {
            grid-template-columns: 2fr 1fr;
        }
    } */

/* shopping Items Section */
.shopping-card {
    background: white;
    /* border-radius: 0.5rem; */
}
.product-header{
    margin-left:38px;
}
.shopping-header {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 0.875rem;
    padding: 10px 20px;
    background: #f7f7f7;
    border-radius: 5px 5px 0px 0px;
}

.shopping-items-list {
    margin-top: 1rem;
    padding-right: 20px;
    padding-left: 55px;
}

.shopping-items h1 i {
    color:var(--primary-color);
    margin-right: 5px;
}
.shopping-items h1 {
    color:var(--primary-color);
    margin-top: 5px;
    font-size: 16px;
    padding: 10px 0px;
    margin-left:60px;
}
.shopping-item-part {
    padding-top: 10px;
    border-radius: 5px;
    padding-bottom: 20px;
    border: 1px solid #ddd;
}
.store-header{
    position:relative;
}
.store-header .select-text{
    font-size:15px;
    color: #191C1F;
    font-weight: 500;
    margin-top: 5px;
}
.check-box-btn1 {
    position: absolute;
    top: 14px;
    left: 27px;
    cursor: pointer;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #dddddd;
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
}

.store-header .check-box-btn1 i {
    padding: 2px 4px;
    background:#ff4c4c ;
    color:#fff;
    border-radius: 50px;
    font-size: 14px;
}
.store-info-charge{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:center;
    padding-right: 25px;
}
.store-info-charge h1 a{
    color:var(--primary-color);
    text-decoration: none;;
}
.shopping-item {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
}

.check-box-btn {
    position: absolute;
    top: 43px;
    left: -30px;
    cursor: pointer;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #dddddd;
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
}
.shopping-item .check-box-btn i {
    padding: 2px 4px;
    background:#ff4c4c ;
    color:#fff;
    border-radius: 50px;
    font-size: 14px;
}



.custom-checkbox {
  appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}
.custom-checkbox:checked {
  background-color: #ff4c4c;
  border-radius: 3px;
}

.custom-checkbox:checked::after {
    content: "✔";
    color: white;
    position: absolute;
    top: -4px;
    left: 2px;
    font-size: 13px;
    line-height: 24px;
}

.cross-btn {
    position: absolute;
    top: 42px;
    right: 12px;
    cursor: pointer;
}

.shopping-item .cross-btn i {
    padding: 5px 6px;
    background: #ff5959;
    color: #fff;
    border-radius: 5px;
    font-size: 13px;
}


.shopping-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shopping-info h4 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    width: 238px;
    height: 18px;
    white-space: normal;
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.5s;
    margin-top: 10px;
}

.shopping-info img {
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    object-fit: cover;
}

.shopping-text h5 {
    font-size: 14px;
}

.shopping-text span{
    font-size:14px;
    font-weight: 400;
}

.sub-price {
    font-size: 14px;
    white-space: noWrap;
}

.cart-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: noWrap;
}

.cart-price span {
    font-size: 14px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.quantity-btn {
    width: 2rem;
    height: 2rem;
    border: none;
    background: white;
    border-radius: 0.25rem;
    cursor: pointer;
}

.quantity-btn:hover {
    background: #f5f5f5;
}

.shopping-actions {
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
    padding-top: 20px;
}

/* Buttons */
.shopping-actions .update-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    background: white;
    border-radius: 0.25rem;
    cursor: pointer;
    color: var(--primary-color);
}

.shopping-actions .update-btn:hover {
    background: #f8f8f8;
}

.process-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}

.process-btn:hover {

    background: #c54500;
    color: #fff;

}

/* Totals Card */
.shopping-totals{
    margin-top: 51px;
}
.totals-card {
    background: transparent;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.totals-card h2 {
    font-size: 20px;
}

.totals-content {
    margin-top: 1rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    margin-bottom: 5px;
}

.separator {
    height: 1px;
    background: #eee;
    margin: 1rem 0;
}

.final-total {
    font-weight: 600;
    margin-bottom: 20px;
}

.coupon-section {
    margin-top: 1.5rem;
}

.coupon-section h3 {
    font-size: 18px;
}

.coupon-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.coupon-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.coupon-input .apply-btn {
    width: 200px;
    padding: 10px;
    font-size: 16px;
    background: #2DA5F3;
    color: #fff;
    border: none;
    border-radius: 4px;
}



/*--------------------------------====================== user Dashboard Layout css start ===========================--------------------------------*/
.user-dashboard-main {
    margin-bottom: 40px;
}

.dashboard-bar-icon {
    display: none;
    width: 50px;
}

.dashboard-bar-icon {
    width: 50px;
    margin-left: auto;
    margin-bottom: 10px;
}

.account-info-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.billing-info-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* account info card css */

.user-card {
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
}

.profile-content {
    border-top: 1px solid #ddd;
    padding: 20px;
}

.profile-header h4 {
    font-size: 14px;
    padding: 10px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.profile-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.location {
    margin: 4px 0 0;
    font-size: 14px;
    color: #666;
}

.user-contact-info {
    margin-bottom: 24px;
}

.user-contact-info .info-item .label {
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.user-contact-info .info-item .value {
    color: #5F6C72;
    font-size: 14px;
}

.user-contact-info .info-item1 .label {
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.user-contact-info .info-item1 .value {
    color: #5F6C72;
    font-size: 14px;
}

.info-item1 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
    align-items: baseline;
}

.info-item {
    display: flex;
    gap: 5px;
    margin-bottom: 12px;
    align-items: baseline;
}


.edit-button {
    width: 150px !important;
    padding: 8px 16px !important;
    background: transparent !important;
    border: 1px solid #2DA5F3 !important;
    border-radius: 4px !important;
    color: #2DA5F3 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background-color 0.2s, border-color 0.2s !important;
}

.edit-button:hover {
    background-color: #f5f5f5 !important;
    border-color: #d0d0d0 !important;
}

.edit-button:active {
    background-color: #e0e0e0 !important;
}





.dashboard {
    display: grid;
    grid-template-columns: 0.7fr 3fr;
}

.dashbord-sidebar {
    width: 270px;
    background-color: #fff;
    padding: 10px;
}

/* user-sidebar */
.user-sidebar {
    width: 270px;
    background-color: #fff;
    padding: 10px;
}

.dashboard-sidebar-nav {
    box-shadow: inherit;
}

.user-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0px 0px 9px -2px #ddd;
    padding-top: 15px;
    padding-block: 15px;
}

.dashboard-mobile {
    padding: 10px !important;
}
.dashboard-mobile.active{
    left:270px;
}

.user-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 7px 15px;
    border: none;
    background: none;
    color: #666;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s;
}

.user-button img {
    width: 16px;
    filter: grayscale(45%) contrast(100%) brightness(90%) sepia(20%) hue-rotate(180deg);
}

.user-button:hover {
    background-color: var(--primary-color);
    color: #fff;

}

.user-button:hover img {
    filter: brightness(0) invert(1);
}

.user-button.active img {
    filter: brightness(0) invert(1);
}

.user-button.active {
    background-color: var(--primary-color);
    color: #fff;
}



.user-button1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 7px 15px;
    border: none;
    background: none;
    color: #666;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s;
}

.user-button1:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.user-button1.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 10px;
}

/* Account Section */
.dashboard-section {
    display: grid;
    gap: 2rem;
}

.header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.header .subtitle {
    color: #666;
    font-size: 0.875rem;
    padding-right: 100px;
    margin-top: 20px;
    margin-bottom: 25px;
}

/* Stats Cards */
.stats-grid .stats-card:first-child {
    margin-top: 0px;
}

.stats-card {
    border-radius: 4px;
    padding: 20px;
    margin-top: 15px;
}

.stats-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stats-content i {
    font-size: 28px;
    padding: 10px;
    background: #fff;
    border-radius: 4px;

}

.stats-content .sky {
    color: #2563eb;
}

.stats-content .orange {
    color: #f97316;
}

.stats-content .green {
    color: #22c55e;
}

.stats-value {
    font-size: 1.5rem;
    font-weight: bold;
}

.stats-label {
    color: #666;
    font-size: 0.875rem;
}

/* Payment Cards */
.payment-part {
    border: 1px solid #ddd;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.payment-part .view-text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 12px 20px;
    justify-items: center;
}

.payment-part .view-text h4 {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 0px;
}

.payment-part .view-text h5 {
    font-size: 14px;
    margin-bottom: 0px;
    color: var(--primary-color);
    font-weight: 400;
}

.payment-part .view-text h5 i {
    margin-left: 5px;
}

.payment-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 20px;
}

.payment-card {
    border-radius: 5px;
    padding: 1.5rem;
    color: white;
}

.payment-card.blue {
    background-color: #1e3a8a;
}

.payment-card.green {
    background-color: #16a34a;
}

.payment-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.card-type {
    font-size: 1.5rem;
    font-weight: bold;
}

.amount {
    font-size: 14px;
    font-weight: bold;
}

.payment-header .card-nmb {
    margin-top: 20px;
}

.card-nmb h4 {
    font-size: 18px;
}

.card-nmb h4 i {
    font-size: 16px;
    font-weight: 200;
    color: #b9b9b9b8;
    margin-left: 3px;
}

.mastercard-circles {
    display: flex;
}

.circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: white;
    opacity: 80%;

}

.circle:last-child {

    margin-left: -7px
}

/* Orders Card */
.orders-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.orders-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
}

.view-text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 20px;
}

.orderlist-item-part .view-text h4 {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 0px;
}

.orderlist-item-part .view-text h5 {
    font-size: 14px;
    margin-bottom: 0px;
    color: var(--primary-color);
    font-weight: 400;
}

.orderlist-item-part .view-text h5 img {
    width: 24px;
    filter: invert(44%) sepia(81%) saturate(495%) hue-rotate(348deg);
}

.link-button {
    background: none;
    border: none;
    color: #2563eb;
    cursor: pointer;
    font-size: 0.875rem;
}

.link-button:hover {
    text-decoration: underline;
}

.table-container {
    overflow-x: auto;
}

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

.orders-table th,
.orders-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.orders-table th {
    font-weight: 500;
    color: #666;
}

.text-right {
    text-align: right;
}

.status {
    font-weight: 500;
}

.status.in-progress {
    color: #ca8a04;
}

.status.completed {
    color: #16a34a;
}

.hidden {
    display: none;
}


/*---------------================== compare page css start ===============-----------------*/

.compare-main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    border: 2px solid #ddd;
    margin-bottom: 40px;
}

.copare-part {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

}

.compare-product {
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;;
}

.compare-part1 .compare-product {
    border-left: none;
}

.compare-actions {
    display: flex;
    flex-direction: row;
    gap: 7px;
}

.product-compare-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    padding: 5px 15px;
    text-align: center;
    align-content: center;
    font-size: 14px;

}
.product-compare-btn:hover{
    color:#fff;
    background-color: var(--hover-color);
}

.compare-actions .love-icon {
    padding: 10px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 3px;
    cursor: pointer;
    transition: color 0.3s;
}

.compare-card {
    margin-top: 10px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    height: 340px;
}
.copare-part .compare-product:last-child{
    border-right:1px solid #ddd;
}
.compare-image-container img {
    width: 100%;
    height: 200px;
    object-fit:fill ;
    border-radius: 10px;
}


.compare-content h6 {
    font-size: 14px;
    color: #191C1F;
    padding: 10px;
    margin-bottom: 0px;
}

.compare-content .compare-star {
    margin-top: 0px;
}

.compare-content .compare-price {
    color: var(--primary-color);
}

.compare-price .original-price {
    font-size: 12px;
    text-decoration: line-through;
    color: #777;
}

.row-color {
    background-color: #F2F4F5;
}

.compare-content .instock-clr {
    color: #2DB224;
}

.compare-content .outstock-clr {
    color: red;
}
.compare-close{
    font-size: 20px;
    color: #ff5959;
    border: none;
    background: none;
    cursor: pointer;
    margin-bottom: 5px;
}

/* action cart part */

.action-card {
    position: absolute;
    top: 35%;
    left: 27%;
    background-color: #fff;
    border-radius: 2px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.action-card button {
    font-size: 14px;
    border: none;
    background: transparent;
}



/* browser history page */
.dashboard-search-main {
    display: flex;
    flex-direction: row;
}

.date-input {
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.date-input[type="date"] {
    color: #77878F;
    padding: 10px;
    border-radius: 5px;
}

/* Change the calendar icon color in some browsers */
.date-input[type="date"]::-webkit-calendar-picker-indicator {
    filter: #808080;
}

.browser-part {
    margin-bottom: 30px;
}

.browser-items {
    /* display: flex; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;

}

.browser-items .browser-item .browser-card {
    border-right: 1px solid #ddd;
}

.browser-items .browser-item:last-child .browser-card {
    border-right: none;
}


/* user-setting-card styles */
.user-setting-card {
    background: white;
    border-radius: 8px;
    margin-bottom: 24px;
    border: 1px solid #ddd;
}

.user-setting-card-header {
    border-bottom: 1px solid #eee;
}

.user-setting-card-header h2 {
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 20px;
    margin-bottom: 0px;
}

.user-setting-photo {
    margin: 0 auto;
}

.user-setting-card-content {
    padding: 20px;
}

/* Profile header */
.setting-profile-header {
    border-bottom: 1px solid #ddd;
}

.setting-profile-header h2 {
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 20px;
    margin-bottom: 0px;
}

.user-setting-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    text-align: center;
    margin: 0 auto;
}

/* Form styles */
.setting-form-grid {
    display: grid;
    grid-template-columns: 0.18fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.user-setting-input {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.setting-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
}



.city-zip-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.setting-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.setting-form-group input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.2s;
    Width: 100%;
}

.setting-form-group select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.2s;
    color: #666;
}

.setting-form-group select option {
    color: #666;
}

.setting-form-group input:focus {
    outline: none;
    border-color: #007bff;
}

.profile-input-img input[type="file"]::-webkit-file-upload-button {
    border: 2px solid #b8d0ff;
    background-color: transparent;
    color: #444;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.profile-input-img input[type="file"]::-webkit-file-upload-button:hover {
    border-color: #b8d0ff;
}

.state-part {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

}

/* Button styles */
.save-btn {
    width: 150px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.save-btn:hover {
    background-color: #f1690e;
}

/* Address container */
.address-container {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

/* Password input container */
.password-form {
    margin-bottom: 20px;
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input input {
    width: 100%;
    padding-right: 40px;
}

.password-toggle {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.eye-icon {
    font-style: normal;
    color: #666;
}




/*-------------------================================== orderlist cart page css ==============================------------------------------*/

.orderlist-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 20px;
}

/* orderlist Items Section */
.orderlist-card {
    background: white;
    border-radius: 0.5rem;
}

.orderlist-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 0.875rem;
    padding: 10px 20px;
    background: #f7f7f7;
}

.orderlist-header h5 {
    font-size: 12px;
    text-transform: uppercase;
    margin-block: 0px;

}

.orderlist-items-list {
    margin-top: 1rem;
    padding-right: 20px;
    padding-left: 20px;
}

.orderlist-items h1 {
    font-size: 20px;
    padding: 10px 20px;
}

.orderlist-item-part {
    border-radius: 5px;
    padding-bottom: 20px;
    border: 1px solid #ddd;
}

.orderlist-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
}

.orderlist-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.orderlist-info h5 {
    color: #475156;
    font-size: 14px;
    font-weight: 600;
}

.orderlist-date h5 {
    color: #5F6C72;
    font-size: 14px;
}

.orderlist-price {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.orderlist-price h5 {
    font-size: 14px;
    color: #5F6C72;

}

.orderlist-price .orderlist-count {
    color: #939393;
}

.orderlist-controls h5 {
    font-size: 14px;
    color: #2DB224;

}

.orderlist-actions .orderlist-add-cart {
    font-size: 14px;
    padding: 5px 10px;
    border: 1px solid #ADB7BC;
    background: #ADB7BC;
    border-radius: 2px;
    cursor: pointer;
    color: #fff;
}

.orderlist-controls .progress-color {
    color: #ffb816;
}

.orderlist-controls .completed-color {
    color: #2DB224;
}

.orderlist-controls .canceled-color {
    color: #EE5858;
}

.orderlist-controls h5 {
    text-transform: uppercase;
}

.orderlist-actions .update-btn {
    font-size: 14px;
    padding: 5px 10px;
    border: none;
    background: transparent;
    border-radius: 2px;
    cursor: pointer;
    color: var(--primary-color);

}

.orderlist-actions .update-btn img {
    filter: invert(44%) sepia(81%) saturate(495%) hue-rotate(348deg);
    width: 22px;
}

.orderlist-actions .update-btn:hover {
    color: #fc6d0f;
}

/* browser history main css */
.browser-part {
    border: 1px solid #ddd;
    border-radius: 5px;
}

.browser-part .view-text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 20px;
}

.browser-part .view-text h4 {
    font-size: 14px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.browser-part .view-text h5 {
    font-size: 14px;
    margin-bottom: 0px;
    color: var(--primary-color);
    font-weight: 400;
}

.browser-part .view-text h5 i {
    margin-left: 5px;
}

.browser-slider-main {
    padding: 20px;
    padding-bottom: 60px;
    border-top: 1px solid #ddd;
}

.browser-button {
    position: relative;
}

.browser-button .click-button i {
    font-size: 13px;
}

.browser-div {
    position: absolute;
    top: 44px;
    left: 0;
    display: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1000;
    width: 400px;
}

.browser-div a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.browser-div a:hover {
    background-color: #f8f8f8;
}

.browser-div img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    border-radius: 5px;
}

.browser-section {
    padding: 48px 1rem;
}

.browser-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.browser-slider {
    display: flex;
    width: 858px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding-top: 10px;
    padding-bottom: 10px;
}

.browser-slider::-webkit-scrollbar {
    display: none;
}

.browser-item {
    /* min-width: 240px; */
    flex-shrink: 0;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}

.browser-card {
    background-color: white;
    padding: 1rem;
    transition: box-shadow 0.3s ease;
    height: 100%;
    border-right: 1px solid #ddd;
}


.browser-card h3 {
    font-size: 16px;
    font-weight: 500;
}

.prev-browser-button {
    left: -20px;
}

.next-browser-button {
    right: -20px;
}


/*---------------==================== footer navbar start =================------------------------*/
.bottom-navbar {
    display: none;
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
    /* padding: 0.5rem 1rem; */
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 9;
}

.bottom-navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-group {
    background-color: #fff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 5px;
    /* border-radius: 7px; */
    padding: 6px;
    width: 100%;
}

.bottom-group a img {
    filter: invert(44%) sepia(81%) saturate(495%) hue-rotate(348deg);
}

/* .bottom-group a img:last-child {
    filter:inherit;
} */
.bottom-user .user-image {
    filter: inherit;
    border-radius: 50px;
    height: 25px;
    width: 25px;
}

.bottom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #111827;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.bottom-btn img {
    width: 22px;
}

.bottom-btn:hover {
    background-color: #f3f4f6;
}

.bottom-btn.active {
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #fff;
}

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

.login-bottom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    background: transparent;
    color: #111827;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.login-bottom:hover {
    background-color: #f3f4f6;
}

.login-bottom .user-icon {
    width: 22px;
    filter: invert(44%) sepia(81%) saturate(495%) hue-rotate(348deg);
}

.account-dropdown button:hover .user-icon {
    filter: invert(44%) sepia(81%) saturate(495%) hue-rotate(348deg);
}

.account-dropdown button .user-icon {
    width: 18px;
    margin-left: 3px;
    margin-right: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bottom-cart {
    position: relative;
}

.cart-count2 {
    position: absolute;
    top: 1px;
    right: -2px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.wishlist a {
    color: #fff;
}

.account-dropdown button {
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 500;

    padding: 0px;
    color: #444;
}

.account-dropdown button:hover {
    color: #f77016;

}

/*-------------------======================= customer support page css start ===================------------------------ */
.customer-support-main {
    margin-bottom: 30px;
}

.customer-header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.customer-header h2 {
    font-size: 30px;
    font-weight: bold;
}

.customer-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}


.customer-content-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.customer-text {
    font-size: 18px;
    color: #555;
}

.customer-whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    width: fit-content;
}

.customer-whatsapp-button img {
    width: 40px;
}

.customer-whatsapp-button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.customer-whatsapp-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: white;
    padding: 4px;
}

.customer-image-container {
    display: flex;
    justify-content: center;
}

.customer-support-image {
    border-radius: 8px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.customer-support-img img {
    width: 100%;
    border-radius: 10px;
}

.customer-contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.customer-contact-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 6px 15px 0 rgba(36, 37, 38, 0.08);
}

.customer-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
}

.customer-icon {
    width: 32px;
    height: 32px;
    color: white;
}

.customer-contact-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
}

.customer-contact-detail {
    color: #666;
}


/*--------------======================== faq page css start =====================-----------------------*/
.faq-item {
    border-bottom: 1px solid #ddd;
    /* padding: 10px 0; */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

.faq-question span {
    font-size: 18px;
}

.faq-answer {
    height: 100%;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease-in-out;
}

/* Rotate icon for active state */
.faq-item.active .icon {
    transform: rotate(180deg);
}

.faq-section-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
    margin-bottom: 40px;
}

.faq-part {
    width: 100%;
    padding: 0 20px;
}

.faq-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
}

.faq-item.active {
    border-color: transparent;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px;
    text-align: left;
    font-weight: 500;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.faq-item.active .faq-question {
    background-color: #DA5726;
    color: white;
}

.faq-question:hover:not(.faq-item.active .faq-question) {
    background-color: #f9fafb;
}

.faq-icon {
    font-size: 20px;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 16px;
}

.faq-item.active .faq-answer {
    height: 100%;
    display: block;
}

.faq-answer p {
    color: #4b5563;
    margin-bottom: 12px;
}

.faq-answer ul {
    list-style-type: disc;
    padding-left: 24px;
    margin-top: 12px;
}

.faq-answer li {
    color: #4b5563;
    margin-bottom: 4px;
}




/* contact form css  */
.contact-form {
    max-width: 450px;
    width: 100%;
    padding: 24px;
    background-color: #fff9e6;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 16px;
}

.form-header h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-header p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 16px;
}


.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #f8b04c;
    box-shadow: 0 0 0 2px rgba(248, 176, 76, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background-color: #DA5726;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #DA5726;
}

.arrow-icon {
    margin-left: 8px;
}


/*-----------------------========================== notification page start ========================-------------------------*/

/* Notifications panel container */
.notifications-panel {
    width: 100%;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}


/* Header */
.notifications-header {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.notifications-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Notification items */
.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Icon container */
.notification-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 5px;
    border: 1px solid #ddd;
}

.notification-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #8f8f8f;
}

/* Content container */
.notification-content {
    flex: 1;
    min-width: 0;
}

/* Header row with badge and time */
.notification-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

/* Badge */
.badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 400;
    color: #929292 !important;
    padding: 0.125rem 0.5rem;
    border-radius: 0.125rem;
    border: 1px solid #ddd;
}

/* Time */
.notification-time {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-left: auto;
    flex-shrink: 0;
}

.notification-time img {
    width: 13px;
    margin-bottom: 3px;
}

/* Title */
.notification-title {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Description */
.notification-description {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* User */
.notification-user {
    font-size: 0.75rem;
    color: #ef4444;
    font-weight: 500;
    margin-top: 0.5rem;
}



/*-----------------------------========================= seller store page css start  =======================--------------------------*/

    /* Container */
    .seller-banner {
        margin-bottom: 20px;
        border-radius: 5px;
    }

    /* Profile Card */
    .profile-card {
        border-radius: 0.5rem;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    /* Banner */
    .store-banner {
        height: 12rem;
        width: 100%;
        display: flex;
    }

    .store-banner img {
        width: 100%;
    }

    .banner-section {
        width: 25%;
    }

    /* Profile Content */
    .seller-profile-content {
        background-color: white;
        padding: 1rem;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    /* Profile Main */
    .profile-main {
        display: flex;
        gap: 1rem;
    }

    /* Logo */
    .logo-container {
        position: relative;
        margin-top: -2.3rem;
    }

    .star-logo {
        height: 5.5rem;
        width: 5.5rem;
        background-color: #f3f4f6;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid white;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    .star-logo img{
        height: 100%;
        width: 100%;
        border-radius: 0.5rem;
        object-fit: cover;
    }

    .star-icon {
        height: 3.5rem;
        width: 3.5rem;
        stroke: #374151;
        fill: #e5e7eb;
    }

    /* Store Info */
    .store-seller-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .store-name-container {
        display: flex;
        align-items: baseline;
        gap: 0.5rem;
    }

    .store-name {
        font-size: 1.125rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 0px;
    }

    .verified-badge {
        background-color: #10b981;
        border-radius: 9999px;
        padding: 0.125rem;
        display: flex;
    }

    .check-icon {
        height: 16px;
        width: 16px;
        stroke: white;
        stroke-width: 3;
        fill: none;
    }

    .store-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.875rem;
        color: #4b5563;
    }

    .stat {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .stat-icon {
        height: 1rem;
        width: 1rem;
        border-radius: 9999px;
        background-color: #e5e7eb;
    }

    /* Profile Actions */
    .profile-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.5rem;
    }
    .rating-text{
        font-size: 16px;
    }


    /* top sellers css */
    .category-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

/* Slider container and navigation */

.top-serllers-slider {
    display: flex;
    overflow-x: auto;
    gap:70px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding-top: 10px;
    padding-bottom: 10px;
}

.top-serllers-slider::-webkit-scrollbar {
    display: none;
}

.top-serllers-item {
    width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}

.top-serllers-card {
    background-color: white;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    margin-left: 5px;
}

.top-serllers-card:hover {
    color: #000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.seller-btn a {
    font-size: 14px;
    color: var(--primary-color);
}

.seller-btn a img {
    width: 20px;
    filter: invert(44%) sepia(81%) saturate(495%) hue-rotate(348deg);
}

  .seller-section {
        margin-top: 20px;
    }

    .seller-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 5px;
        gap: 1rem;
    }

    .seller-header-content {
        flex: 1;
    }

    .seller-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #111827;
        margin-bottom: 0.25rem;
    }

    .subtitle {
        color: #6b7280;
        font-size: 0.875rem;
    }

    .view-all-btn {
        padding: 0.5rem 1rem;
        border: 1px solid #d1d5db;
        background: white;
        color: #374151;
        border-radius: 0.375rem;
        font-size: 0.875rem;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .view-all-btn:hover {
        background-color: #f9fafb;
        border-color: #9ca3af;
    }

    .scroll-container {
        overflow-x: auto;
        padding-bottom: 1rem;
        scrollbar-width: thin;
        scrollbar-color: #d1d5db #f3f4f6;
    }

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

    .scroll-container::-webkit-scrollbar-track {
        background: #f3f4f6;
        border-radius: 3px;
    }

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

    .scroll-container::-webkit-scrollbar-thumb:hover {
        background: #9ca3af;
    }

    .sellers-grid {
        display: flex;
        gap: 1rem;
        width: max-content;
        padding: 0.25rem;
    }

    .seller-card {
        width: 16rem;
        flex-shrink: 0;
        background: white;
        border-radius: 0.5rem;
        border: 1px solid #e5e7eb;
        /* padding: 1.5rem; */
        transition: all 0.3s ease;
        cursor: pointer;
        height: fit-content;
    }

    .seller-card:hover {
        box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        transform: translateY(-2px);
    }

    .seller-card-banner {
        position: relative;

        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 70px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 5px;
        border-radius: 5px 5px 0px 0px;
    }

    .seller-icon {
        position: absolute;
        width: 3rem;
        height: 3rem;
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.25rem;
        font-weight: 600;
        top: 34px;
        left: 20px;
        border: 1px solid #ddd;
        background-color: #ffff;
    }

    .seller-icon img {
        width: 2rem;
        height: 2rem;
    }

    .seller-content {
        padding: 20px;
    }

    .trending-badge {
        background-color: #dcfce7;
        color: #166534;
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
        font-size: 0.75rem;
        font-weight: 500;
    }

    .seller-name {
        font-size: 1rem;
        font-weight: 600;
        color: #111827;
        margin-bottom: 0.25rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
        width: 100%;
        height: 18px;
        white-space: normal;
        color: #333333;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.5s;
    }


    .seller-category {
        font-size: 0.875rem;
        color: #6b7280;
        margin-bottom: 1rem;
    }

    .seller-rating-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.75rem;
    }

    .seller-rating-section .stars {
        display: flex;
        gap: 0.125rem;
    }
      .seller-rating-section .stars .star {
        width: 1rem;
        height: 1rem;
        fill:#ddd;
    }
    .seller-rating-section .stars .checked {
        fill: #DA5726;
    }
    .seller-rating-section .star .empty {
        fill: #e5e7eb;
        color: #e5e7eb;
    }

    .seller-rating-section .star.half {
        fill: url(#half-gradient);
    }

    .seller-rating-value {
        font-size: 0.875rem;
        font-weight: 500;
        color: #111827;
    }
    .seller-banner-part img{
        width:100%;
    }
    .stats {
        display: flex;
        justify-content: space-between;
        font-size: 0.875rem;
        color: #6b7280;
        margin-bottom: 1rem;
    }

    .visit-btn {
        width: 100%;
        padding: 0.5rem 1rem;
        border: 1px solid #d1d5db;
        background: white;
        color: #374151;
        border-radius: 0.375rem;
        font-size: 0.875rem;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .visit-btn:hover {
        background-color: #f9fafb;
        border-color: #9ca3af;
    }


/* sellers page css  */
.seller-banner-part img{
    border-radius: 10px;
}
.seller-list{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 30px;
}
.seller-title2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    margin-top: 30px;
}


