:root {
    --primary-color: #1e3a8a;
    --primary-hover: #1e40af;

    --secondary: #64748b;
    --secondary-hover: #475569;

    --text-color: #333;
    --text-color-secondery: #5f6c72;
    --light-gray: #f5f5f5;
    --icon-color: #303639;
}

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

a {
    text-decoration: none !important;
    color: var(--text-color);
}
img {
    width: 100%;
}
.logo-w {
    width: 160px;
    height: 50;
}
.review-image-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.review-image-row::-webkit-scrollbar {
    height: 6px;
}

.review-image-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.review-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
    flex-shrink: 0;
    cursor: pointer;
}
.icon-img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
    flex-shrink: 0;
    cursor: pointer;
}
.footer-img {
    width: 15px;
}
.flug-img {
    width: 20px;
}
.text-color {
    color: var(--primary-color);
}

.bg-color {
    background-color: var(--primary-color);
    color: #fff;
}

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

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

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

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

.black-friday-main {
    background-color: #1c1c1c;
}

.black-friday-banner {
    padding: 5px 30px 5px 5px;
    color: white;
    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-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-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: #1a75bb;
}

.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;
}

.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 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 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    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-section {
    background: #f1f1f1;
    padding: 7px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 5px 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 {
    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 {
    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 .small-down-price {
    color: var(--primary-color);
    font-size: 16px;
}

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

.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 {
    padding: 15px;
    /* border: 1px solid #ddd; */
    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;
}

/*
.product-card:hover {
    transform: translateY(-5px);
} */

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

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

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

.review-star span {
    color: #77878f;
}

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

.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;
    margin-top: 15px;
    margin-bottom: 21px;
}

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

.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;
    border-radius: 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;
}

.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;
    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: #ebc80c;
}

.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: #ebc80c;
}

/* .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 img {
    width: 100%;
}

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

.variant-product-card img {
    width: 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 img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.arrival-banner .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-down-img img {
    width: 100%;
}

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

.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;
    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: #ebc80c;
}

.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;
}

/* 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;
}

.section-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
}

.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: 2px 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: 2fr 1fr 1fr 1fr;
    gap: 10px;
}

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

.logo {
    max-width: 180px;
    margin-bottom: 16px;
}

.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 {
    border-top: 1px solid #374151;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 25px;
    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-main {
    margin-top: 20px;
    margin-bottom: 40px;
}

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

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

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

.main-image-container {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.main-image {
    width: 100%;
    height: 480px;
    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);
}

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

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

.thumbnail-container {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    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;
}

/* 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 {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
}

.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 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #ddd;
    border-radius: 3px;
    width: 140px;
}

.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: 10px;
}

.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: 140px;
}

.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: var(--primary-color);
    position: relative;
    transition: all linear 0.3s;
}

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

.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 {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    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;
}

.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 {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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);
}

/* details page description tab */
.description-tab {
    margin-top: 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;
}

@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: 22px;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 1rem;
}

/* 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;
}

.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);
}

@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);
    }
}

.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: 18px;
    color: #2c3e50;
    text-align: left;
    margin-bottom: 0px;
}

.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;
}

.order-summary-text .track-text h4 {
    font-size: 18px;
    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: 28px;
    color: #2da5f3;
    text-align: left;
    margin-bottom: 0px;
}

.track-product {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.track-img {
    text-align: center;
}

.track-img img {
    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: 120px;
    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;
    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 {
    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;
}

.wishlist-cross-btn {
    position: absolute;
    top: -18px;
    right: 0px;
    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 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 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 274px;
    height: 35px;
    white-space: normal;
    color: #475156;
    font-size: 14px;
    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-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-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;
}

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

.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%;
    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;
    cursor: pointer;
    padding-bottom: 15px;
    border: beige;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.payment-options .payment-option:last-child {
    border-right: none;
}

.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: 94px;
}

.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);
    background-color: white;
}

/* 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: 20px;
}

.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 {
    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: #2563eb;
}

/* .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;
}

.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;
}

.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; */
}

.shopping-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;
}

.shopping-items-list {
    margin-top: 1rem;
    padding-right: 20px;
    padding-left: 55px;
}

.shopping-items h1 {
    font-size: 20px;
    padding: 10px 20px;
}

.shopping-item-part {
    padding-top: 10px;
    border-radius: 5px;
    padding-bottom: 20px;
    border: 1px solid #ddd;
}

.shopping-item {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
}

.cross-btn {
    position: absolute;
    top: 44px;
    left: -30px;
    cursor: pointer;
}

.shopping-item .cross-btn i {
    padding: 3px 5px;
    background: transparent;
    color: #ff4c4c;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 14px;
}

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

.shopping-info h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 238px;
    height: 35px;
    white-space: normal;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    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;
}

.sub-price {
    font-size: 14px;
    white-space: noWrap;
}

.cart-price {
    display: flex;
    gap: 0.5rem;
    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;
    margin-top: 1.5rem;
    padding: 0px 20px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

/* Buttons */
.shopping-actions .update-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #2da5f3;
    background: white;
    border-radius: 0.25rem;
    cursor: pointer;
    color: #2da5f3;
}

.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 */
.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 {
    width: 270px;
    background-color: #fff;
    align-self: flex-start;
}

.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;
}

.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;
}

/* 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 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 {
    font-size: 16px;
    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;
}

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

.compare-product {
    border-left: 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: 2px;
    cursor: pointer;
    padding: 2px 15px;
    text-align: center;
}

.compare-actions .love-icon {
    padding: 10px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 2px;
    cursor: pointer;
}

.compare-card {
    margin-top: 8px;
    padding-bottom: 20px;
    padding-left: 10px;
    height: 290px;
}

.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: #2da5f3;
}

.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;
}

/* 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: 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-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;
}

.user-name-group {
}

.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: var(--primary-hover);
}

/* Address container */
.address-container {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

/* Password input container */
.password-form {
    margin-bottom: 20px;
}

.password-input {
    position: relative;
    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 {
    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: var(--primary-hover);
}

/* 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 {
    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;
    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;
    padding: 6px;
    width: 100%;
}

.bottom-group a img {
    filter: invert(44%) sepia(81%) saturate(495%) hue-rotate(348deg);
}

.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: 5px;
    margin-bottom: 32px;
}

.customer-header h2 {
    font-size: 30px;
    font-weight: bold;
}

.customer-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
}

.customer-content-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.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;
}

.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: var(--primary-color);
    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;
}

.support-part .contact-form {
    max-width: 550px;
}

.contact-form {
    max-width: 450px;
    width: 100%;
    padding: 24px;
    background-color: #f4f4ff;
    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: var(--primary-color);
    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: var(--primary-hover);
}

.arrow-icon {
    margin-left: 8px;
}

/*-----------------------========================== notification page start ========================-------------------------*/
/* Notifications panel container */
.notifications-panel {
    width: 100%;
    max-width: 48rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 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: #fff !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;
}

/* FILTER TABS */
.product-tabs .nav-link {
    color: #333;
    font-weight: 600;
    border: none;
    margin: 0 10px;
}

.product-tabs .nav-link.active {
    border-bottom: 2px solid #1e3a8a;
    color: #1e3a8a;
    background: transparent;
}

.nav-link:focus,
.nav-link:hover {
    color: #1e3a8a !important;
}

/* PRODUCT CARD */
.product-card {
    border: none;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Tablets */
@media (max-width: 991px) {
    .product-card img {
        height: 160px;
    }
}

/* Phones */
@media (max-width: 575px) {
    .product-card img {
        height: 140px;
    }
}

.badge-hot {
    position: absolute;
    top: 70px;
    left: 15px;
    background: red;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    padding: 10px;
}

/* ACTIONS */
.card-actions {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    opacity: 0;
    transition: 0.3s;
}

.product-card:hover .card-actions {
    opacity: 1;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.price-new {
    color: #1e3a8a;
    font-weight: bold;
}

@media (max-width: 767px) {
    .product-actions {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        border-top: none;
        margin-top: 10px;
    }

    .product-actions button {
        opacity: 1;
        transform: none;
    }

    .product-card:hover {
        transform: none;
    }
}

@media (max-width: 575px) {
    .add-cart-btn {
        font-size: 13px;
        padding: 8px;
    }

    .icon-btn {
        font-size: 16px;
        width: 32px;
        height: 32px;
    }

    h6 {
        font-size: 14px;
    }
}

/* STEP 2: Equal height cards */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Card body stretches equally */
.product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 575px) {
    .row.g-4 {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 1rem;
    }
}

@media (max-width: 575px) {
    .product-card img {
        height: 100px;
    }
}

@media (max-width: 575px) {
    .product-card img {
        height: 100px;
    }
}

.product-card {
    position: relative;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.product-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.product-card img {
    height: 180px;
    width: 210.25px !important;
    object-fit: contain;
    padding: 16px;
}

/* BADGE */
.badge-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1e3a8a;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    z-index: 2;
}

/* TEXT */
.product-title {
    font-size: 14px;
    font-weight: 600;
}

.product-category {
    font-size: 12px;
    color: #888;
}

/* RATING */
.rating i {
    color: #ffc107;
    font-size: 12px;
}

.rating-count {
    font-size: 11px;
    color: #777;
}

/* PRICE */
.price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.price-new {
    font-size: 15px;
    font-weight: 600;
    color: #1e3a8a;
}

/* ACTION OVERLAY */
.product-actions {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

/* ICON BUTTON */
.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.icon-btn.custom-heart:hover {
    /* background: #1E3A8A; */
    color: #565656;
}

.icon-btn:hover {
    background: #1e3a8a;
    color: #fff;
}

@media (max-width: 575px) {
    .product-card img {
        height: 160px;
        padding: 12px;
    }

    .product-title {
        font-size: 13px;
    }

    .price-new {
        font-size: 14px;
    }
}

.promo-card {
    border-radius: 10px;
    overflow: hidden;
    min-height: 100%;
}

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

.promo-content {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
}

/* Wrapper position */
.woman-product-carousel {
    position: relative;
}

/* NAV CONTAINER */
.woman-product-carousel .owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* NAV BUTTONS */
.woman-product-carousel .owl-nav button {
    position: absolute;
    width: 48px;
    height: 48px;
    background: #1e3a8a !important;
    border-radius: 50%;
    color: #fff !important;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* LEFT */
.woman-product-carousel .owl-nav .owl-prev {
    left: -24px;
}

/* RIGHT */
.woman-product-carousel .owl-nav .owl-next {
    right: -24px;
}

/* HOVER EFFECT */
.woman-product-carousel .owl-nav button:hover {
    background: #1e3a8a !important;
    transform: scale(1.1);
}

/* Hide owl arrows on mobile */
@media (max-width: 575px) {
    .woman-product-carousel .owl-nav {
        display: none !important;
    }
}

.woman-product-carousel .product-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    transform: translateZ(0);
}

.woman-product-carousel .product-actions {
    inset: 0;
    border-radius: 5px;
}

.flash-deal {
    background: #f8f9fa;
}

.deal-box {
    background: #1e3a8a;
    border-radius: 5px;
}

.countdown .time-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 14px;
    border-radius: 5px;
    text-align: center;
    min-width: 65px;
}

.countdown span {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.countdown small {
    font-size: 11px;
    text-transform: uppercase;
}

.flash-deal-carousel .product-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    transform: translateZ(0);
}

.flash-deal-carousel .product-actions {
    inset: 0;
    border-radius: 5px;
}

.flash-deal-carousel {
    position: relative;
}

/* NAV WRAPPER */
.flash-deal-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* NAV BUTTON STYLE */
.flash-deal-carousel .owl-nav button {
    position: absolute;
    width: 46px;
    height: 46px;
    background: #1f3c88 !important;
    /* deep blue */
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    pointer-events: all;
    transition: all 0.3s ease;
}

/* LEFT ARROW */
.flash-deal-carousel .owl-prev {
    left: -23px;
}

/* RIGHT ARROW */
.flash-deal-carousel .owl-next {
    right: -23px;
}

/* HOVER EFFECT */
.flash-deal-carousel .owl-nav button:hover {
    background: #162b63 !important;
    transform: scale(1.1);
}

/* HIDE ON MOBILE */
@media (max-width: 575px) {
    .flash-deal-carousel .owl-nav {
        display: none !important;
    }
}

.brands-section {
    background: #fff;
}

/* Brand circle */
.brand-item {
    width: 110px;
    height: 110px;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.3s ease;
    margin: auto;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 1px solid #e9ecef;
    border-radius: 50%;
}

/* Hover effect */
.brand-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Owl spacing */
.brands-carousel .owl-item {
    display: flex;
    justify-content: center;
}

/* Brands carousel wrapper */
.brands-carousel {
    position: relative;
}

/* Nav container */
.brands-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Arrow buttons */
.brands-carousel .owl-nav button {
    position: absolute;
    width: 42px;
    height: 42px;
    background: #1e3a8a !important;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    pointer-events: all;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

/* Left arrow */
.brands-carousel .owl-prev {
    left: -10px;
    top: -25px;
}

/* Right arrow */
.brands-carousel .owl-next {
    right: -10px;
    top: -25px;
}

/* Hover effect */
.brands-carousel .owl-nav button:hover {
    background: #162b63 !important;
    transform: scale(1.1);
}

/* Hide arrows on mobile */
@media (max-width: 575px) {
    .brands-carousel .owl-nav {
        display: none !important;
    }
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 14px;
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.owl-carousel .item {
    height: 100%;
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    display: flex;
}

.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Product quick view  */
.quick-view-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    /* VERY IMPORTANT */
}

.quick-view-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.quick-view-content {
    position: relative;
    background: #fff;
    max-width: 1100px;
    width: 95%;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Mobile sidebar  */
.category-btn {
    background: #fff;
    color: #1557a5;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    border: none;
}

.category-list {
    background: #fff;
    border-radius: 8px;
    padding: 0px 0;
    height: 480px;
    overflow-y: auto;
    scrollbar-width: thin;
    margin-bottom: 0;
}

.category-list::-webkit-scrollbar {
    width: 4px;
}

.category-list::-webkit-scrollbar-track {
    background: transparent;
}

.category-list::-webkit-scrollbar-thumb {
    background-color: #f5a623;
    /* orange like screenshot */
    border-radius: 10px;
}

.category-list li {
    list-style: none;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.category-list li:hover,
.category-list li.active {
    background: #f0f5ff;
    color: #1557a5;
}

/* RIGHT AREA */
.right-area {
    position: relative;
    height: 480px;
}

/* SLIDER */
.slider-box {
    background: #fff;
    height: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #1557a5;
}

/* MEGA CONTENT */
.mega-content {
    position: absolute;
    inset: 0;
    background: #fff;
    padding: 30px;
    display: none;
    z-index: 10;
}

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

.mega-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.mega-content a {
    display: block;
    color: #555;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

.mega-content a:hover {
    color: #1557a5;
}

.mega-col {
    border-right: 1px solid #eee;
}

.mega-col:last-child {
    border-right: none;
}

/* Arrow only for categories with mega menu */
.category-list li.has-mega::after {
    content: "›";
    font-size: 16px;
    color: #999;
}

.category-list li.has-mega:hover::after,
.category-list li.has-mega.active::after {
    color: #1557a5;
}

.category-list li {
    list-style: none;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.category-list li:last-child {
    border-bottom: none;
}

/* LEFT PANEL BORDER */
.category-list {
    border-right: 1px solid #e6e6e6;
    border-radius: 8px 0 0 8px;
    /* left only */
}

/* RIGHT PANEL */
.slider-box {
    border-radius: 0 8px 8px 0;
    /* right only */
}

.category-list li {
    padding: 10px 18px;
}

/* Category icon + text wrapper */
.cat-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Category image */
.cat-left img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Category text */
.cat-text {
    white-space: nowrap;
}

/* ===============================
        RESPONSIVE FIXES
        ================================ */

/* Tablet & below */
@media (max-width: 991px) {
    .category-list {
        height: auto;
        /* auto height */
        max-height: 300px;
        /* scrollable */
        border-right: none;
        border-radius: 8px;
    }

    .right-area {
        height: auto;
        margin-top: 15px;
    }

    .slider-box,
    .swiper {
        height: auto;
        min-height: 220px;
        border-radius: 8px;
    }

    .mega-content {
        position: static;
        display: none !important;
        /* no hover mega on mobile */
    }
}

/* Mobile only */
@media (max-width: 576px) {
    .category-btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .category-list li {
        padding: 12px 14px;
    }

    .cat-text {
        font-size: 13px;
    }

    .cat-left img {
        width: 20px;
        height: 20px;
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

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

.middle-header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.logo i {
    margin-right: 6px;
}

.search-box {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 9px 12px;
    outline: none;
}

.search-box select {
    border: none;
    border-left: 1px solid #ddd;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
}

.search-box button {
    border: none;
    border-left: 1px solid #ddd;
    padding: 0 15px;
    cursor: pointer;
}

.header-icons a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.custom-icon-btn {
    position: relative;
    font-size: 18px;
}

.custom-icon-btn .badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #1e3a8a;
    color: #fff !important;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 50%;
}

.price {
    margin-left: 8px;
    font-weight: 600;
}

/* ===============================
    RESPONSIVE
    ================================ */
@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
    }

    .search-box select,
    .search-box button {
        border-left: none;
        border-top: 1px solid #ddd;
    }

    .header-icons {
        margin-top: 10px;
    }
}

/* ===============================
        MENU BAR
        ================================ */
.menu-bar {
    background: #fff;
}

.browse-btn {
    background: #1e3a8a;
    color: #fff;
    border: none;
    padding: 14px 18px;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 10px;
}

.browse-btn i:last-child {
    margin-left: auto;
}

.main-menu {
    list-style: none;
    display: flex;
    gap: 18px;
    padding: 0;
    margin: 0;
}

.main-menu li a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.main-menu li a:hover {
    color: #1e3a8a;
}

.special-offer {
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
}

.purchase-theme {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.menu-bar .divider {
    margin: 0 8px;
    opacity: 0.6;
}

@media (min-width: 1200px) {
    .browse-btn {
        width: 100%;
    }
}
/* ===============================
        RESPONSIVE MENU BAR
        ================================ */
@media (max-width: 768px) {
    .main-menu {
        flex-wrap: wrap;
        justify-content: center;
        margin: 10px 0;
        display: none !important;
    }

    .browse-btn {
        justify-content: center;
    }
}
@media (max-width: 1200px) {
    .tab-width {
        width: auto !important;
    }
}
/* ===============================
    STICKY MENU
    ================================ */
.sticky-menu {
    position: relative;
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-menu.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ===============================
    MOBILE MENU
    ================================ */
.offcanvas-body a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.offcanvas-body a:hover {
    color: #1e3a8a;
}

/* ===============================
         MOBILE HEADER
        ================================ */
.mobile-top-bar {
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.mobile-top-bar a {
    color: #fff;
    text-decoration: none;
}

.mobile-header {
    height: 56px;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    position: sticky;
    top: 0;
}

.mobile-header i {
    font-size: 18px;
    color: #000;
}

.mobile-logo {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

/* ===============================
    HIDE DESKTOP ON MOBILE
    ================================ */
@media (max-width: 767px) {
    .top-header,
    .middle-header,
    .menu-bar,
    .category-list {
        display: none !important;
    }

    .main-wrapper {
        margin-top: 0 !important;
    }

    .sticky-menu {
        position: static !important;
    }
    #filter-form {
        margin-bottom: 50px;
    }
}
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.mobile-bottom-nav a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #555;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.mobile-bottom-nav a i {
    font-size: 18px;
}

.mobile-bottom-nav a.active {
    color: var(--primary-color);
}

.mobile-bottom-nav .badge {
    position: absolute;
    top: -5px;
    right: 25%;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

/* ===============================
    PREVENT CONTENT HIDING
    ================================ */
@media (max-width: 576px) {
    body {
        padding-bottom: 70px;
    }
}

section.category-section {
    padding-top: 30px;
}

.top-header {
    background-color: #1e3a8a;
    /* green bar */
    font-size: 13px;
}

.top-header a {
    padding: 0 10px;
    color: #fff;
    text-decoration: none;
}

.top-header a:hover {
    opacity: 0.8;
}

/* LEFT SIDE */
.top-left {
    display: flex;
    align-items: center;
}

.top-left .top-item {
    padding: 0 15px;
    position: relative;
}

.top-left .top-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.shipping-text {
    font-weight: 500;
}

/* RIGHT SIDE */
.top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-right a {
    font-size: 13px;
}

.top-right i {
    font-size: 14px;
}

/* Divider between social & links */
.top-right .divider {
    height: 16px;
    width: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 10px;
}

/* Dropdown fix */
.dropdown-toggle::after {
    font-size: 10px;
    margin-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .top-left,
    .top-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-right {
        margin-top: 8px;
    }
}

.top-header .dropdown-item {
    color: #000;
    font-size: 14px;
    padding: 8px 15px;
}

.language-switcher .dropdown-item.active {
    background-color: #f1f1f1;
    font-weight: 600;
}

.country-switcher .dropdown-item.active {
    font-weight: 600;
    background-color: #f5f5f5;
}

.top-separator {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 10px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    overflow: hidden;
    background-color: #e9ecef;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.user-dropdown .dropdown-toggle::after {
    margin-left: 6px;
}

.user-dropdown .dropdown-item {
    padding: 10px 16px;
}

.header-icons {
    white-space: nowrap;
    /* prevent wrapping */
}

.header-icons .user-dropdown {
    flex-shrink: 0;
    left: 10px;
    /* do NOT allow dropdown to shrink icons */
}

.header-icons .custom-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-icons .price {
    margin-left: -4px;
    font-weight: 600;
}

.user-dropdown .dropdown-toggle {
    max-width: 205px;
}

.user-dropdown .text-start {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-icons .custom-icon-btn i {
    font-size: 18px !important;
    line-height: 1;
    transition: none;
}

.header-icons .custom-icon-btn .badge {
    top: -1px;
    right: -11px;
}

.header-icons .custom-icon-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.dropdown-menu {
    min-width: 13rem;
}

.custom-icon-btn:hover {
    color: #565656;
}

.offcanvas.show {
    visibility: visible !important;
    transform: translateX(0) !important;
}

.offcanvas.offcanvas-start {
    transform: translateX(-100%);
}

.top-header {
    background-color: #1e3a8a;
    font-size: 13px;
}

.top-header .row {
    flex-wrap: wrap;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.top-left {
    justify-content: flex-start;
}

.top-right {
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .top-left,
    .top-right {
        justify-content: center;
        width: 100%;
        margin-bottom: 10px;
    }

    .shipping-text {
        width: 100%;
        text-align: center;
        margin-top: 6px;
        font-size: 12px;
    }
}

/* Floating buttons container */
.floating-buttons {
    position: fixed;
    right: 18px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Common button style */
.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* WhatsApp */
.whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* Back to top */
.top-btn {
    background: #0d6efd;
    color: #fff;
    display: none;
    /* hidden initially */
}

.top-btn:hover {
    transform: scale(1.1);
    background: #0b5ed7;
}
@media (min-width: 768px) and (max-width: 991px) {
    .tablet-search-parent {
        position: relative;
    }

    .tablet-search {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 720px;

        background: #fff;
        padding: 12px;
        border-radius: 10px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        z-index: 9999;

        display: none;
        animation: fadeDown 0.25s ease-in-out;
    }

    .tablet-search.active {
        display: flex;
        gap: 8px;
        flex-direction: row;
    }

    .search-toggle-btn {
        background: transparent;
        border: none;
        font-size: 20px;
        color: #1e40af;
        cursor: pointer;
    }

    .tablet-search input,
    .tablet-search select {
        height: 44px;
    }
}

/* Animation */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translate(-50%, -8px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
.dropdown-item:focus,
.dropdown-item:hover {
    background-color: inherit;
}
.mega-content {
    display: none;
    height: 100%;
}

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

.mega-scroll {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 10px;
}

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

.mega-col {
    min-height: auto;
}

.mega-title a {
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}
.ui-autocomplete {
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Optional: smooth hover */
.dropdown-menu {
    transition: all 0.2s ease-in-out;
}
.shop-sidebar {
    border-radius: 12px;
}

.category-list li {
    cursor: pointer;
}

.category-list li:hover {
    background-color: #f8f9fa;
}

.shop-sidebar {
    align-self: flex-start;
}

.shop-item2 .no-data {
    grid-column: 1 / -1;
}
.toggle-password {
    position: absolute;
    right: 0.75rem;
    top: 72%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.eye-icon {
    width: 1rem;
    height: 1rem;
    color: #6b7280;
}

.password-hint {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}
.star i {
    font-size: 22px;
    cursor: pointer;
    color: #ccc;
}

.star i.active {
    color: orange;
}

.preview-img {
    width: 120px;
    border-radius: 8px;
    margin: 6px;
    object-fit: cover;
}
.color-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
}

.color-btn.active {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.35);
}

.zoom-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.zoom-image {
    width: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
    transform-origin: center;
}

.zoom-container:hover .zoom-image {
    transform: scale(2);
}

@media (max-width: 768px) {
    .zoom-container {
        cursor: default;
    }

    .zoom-container:hover .zoom-image {
        transform: scale(1);
    }
}

.zoom-container:hover .zoom-image {
    transform: scale(2.5);
}

.zoom-image {
    transition:
        transform 0.2s ease,
        opacity 0.15s ease;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}
/* ===== Review Summary ===== */
.review-summary h1 {
    font-size: 48px;
    font-weight: 700;
}

.review-stars i {
    font-size: 18px;
    margin-right: 2px;
}

.review-progress-label {
    width: 130px;
    font-size: 14px;
    color: #6c757d;
}

.review-progress-count {
    width: 30px;
    text-align: right;
    font-size: 14px;
    color: #6c757d;
}

.review-progress .progress {
    height: 6px;
    background-color: #e9ecef;
}

/* ===== Section Divider ===== */
.review-section-title {
    background: #f5f5f5;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    border-radius: 4px;
}

/* ===== Review List ===== */
.review-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.review-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-weight: 600;
}

.review-date {
    font-size: 13px;
    color: #6c757d;
}

.review-text {
    color: #6c757d;
    margin-bottom: 8px;
}

.review-image img {
    width: 80px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}
.related-product-carousel {
    position: relative;
}

.related-product-carousel .owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* NAV BUTTONS */
.related-product-carousel .owl-nav button {
    position: absolute;
    width: 48px;
    height: 48px;
    background: #1e3a8a !important;
    border-radius: 50%;
    color: #fff !important;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* LEFT */
.related-product-carousel .owl-nav .owl-prev {
    left: -24px;
}

/* RIGHT */
.related-product-carousel .owl-nav .owl-next {
    right: -24px;
}

/* HOVER EFFECT */
.related-product-carousel .owl-nav button:hover {
    background: #1e3a8a !important;
    transform: scale(1.1);
}

/* Hide owl arrows on mobile */
@media (max-width: 575px) {
    .related-product-carousel .owl-nav {
        display: none !important;
    }
}

.related-product-carousel .product-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    transform: translateZ(0);
}

.related-product-carousel .product-actions {
    inset: 0;
    border-radius: 5px;
}
.account-banner {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.account-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.account-banner .container {
    position: relative;
    z-index: 2;
}
.btn-outline-custom {
    color: #1e3a8a;
    border: 1px solid #1e3a8a;
    background-color: transparent;
}

.btn-outline-custom:hover {
    background-color: #1e3a8a;
    border: 1px solid #1e3a8a;
    color: #fff;
}

.btn-outline-custom:focus,
.btn-outline-custom:active {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.fade-form {
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
    pointer-events: none;
}

.fade-form.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.checkout-main label {
    font-weight: 600;
    margin-bottom: 5px;
}

.checkout-main .form-control {
    padding: 12px;
    border-radius: 4px;
}

.checkout-main h4 {
    font-weight: 700;
}

/* Smooth sections */
#couponForm {
    display: none;
}

.toggle-area {
    overflow: hidden;
}

/* Mobile optimizations */
@media (max-width: 767.98px) {
    .checkout-main .card {
        padding: 1.25rem !important;
    }

    .checkout-main h4 {
        font-size: 1.2rem;
    }

    .checkout-main .btn {
        font-size: 1rem;
        padding: 12px;
    }

    .checkout-main img {
        max-width: 50px;
        height: auto;
    }

    .checkout-main .d-flex.gap-3 {
        gap: 0.75rem !important;
    }
}

@media (min-width: 992px) {
    .order-summary,
    .col-lg-5 > .card {
        position: sticky;
        top: 90px;
    }
}
.values {
    margin-bottom: 10px;
    font-size: 18px;
}

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

.slider-track {
    position: absolute;
    height: 6px;
    background: #fa8232;
    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: #fa8232;
    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;
}
.products {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
}

.product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
}

.product-details h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.product-meta {
    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 */
.address-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;

    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;
}
div#categoryMega {
    background: #f8f9fa;
}
.fs-18 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}
.fs-14 {
    font-size: 14px;
    line-height: 21px;
}
.mega-content {
    display: none;
    height: 100%;
}

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

.mega-scroll {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 10px;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mega-col {
    min-height: auto;
}

.mega-title a {
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}
.usp-bar {
    background: linear-gradient(90deg, #1e3a8a, #1f3b8a);
    padding: 28px 0;
}

.usp-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #fff;
    height: 100%;
}

.usp-icon {
    font-size: 36px;
    line-height: 1;
    opacity: 0.95;
    min-width: 36px;
}

.usp-text h6 {
    font-size: 13px;
    letter-spacing: 0.05em;
    margin: 0;
    font-weight: 600;
}

.usp-text p {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
}

/* Desktop: left aligned like your screenshot */
@media (min-width: 992px) {
    .usp-item {
        justify-content: flex-start;
    }
}

/* Mobile: stacked centered nicely */
@media (max-width: 575px) {
    .usp-item {
        justify-content: flex-start;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .usp-item {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        padding-right: 20px;
    }

    .usp-item:last-child {
        border-right: none;
    }
}
.category-mega {
    display: flex;
    width: 1296px;
    min-height: 420px;
    background: #fff;
    z-index: 9999 !important;
}

.category-left {
    width: 307px;
    border-right: 1px solid #eee;
    max-height: 420px;
    overflow-y: auto;
}

.category-parent-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-parent-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    color: #111;
    font-size: 14px;
}

.category-parent-list li:hover,
.category-parent-list li.active {
    background: #f5f7ff;
}

.category-parent-list img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 50%;
}

.category-right {
    flex: 1;
    padding: 20px 30px;
}

.mega-panel {
    display: none;
}

.mega-panel.active {
    display: block;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns */
    gap: 0;
}

.mega-col {
    padding: 0 20px 20px;
    border-right: 1px solid #eee;
    /* vertical divider */
}

.mega-col:last-child {
    border-right: none;
}

.mega-col a {
    display: block;
    padding: 4px 0;
    color: #555;
    font-size: 14px;
}

.mega-col a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.category-right:empty {
    display: none;
}

.mega-title a {
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.category-parent-list li {
    border-bottom: 1px solid #eee;
    /* row separator */
}

.category-parent-list li:last-child {
    border-bottom: none;
    /* remove last border */
}

.category-parent-list li.has-mega {
    position: relative;
}

.category-parent-list li.has-mega::after {
    content: "›";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #999;
    transition: all 0.2s ease;
}

.category-parent-list li.has-mega:hover::after,
.category-parent-list li.has-mega.active::after {
    color: #1e3a8a;
    right: 10px;
}

.category-parent-list li a {
    padding-right: 32px;
}

.category-left {
    overflow-y: auto;
    scrollbar-width: thin;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-menu > li > a,
.main-menu > li > .menu-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    line-height: 1;
    font-size: inherit;
    color: inherit;
    text-decoration: none;
}

/* Dropdown caret like your screenshot */
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    position: relative;
    top: -2px;
}

/* Dropdown position */
.menu-dropdown {
    position: relative;
}

.sidebar-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
}

.sidebar-tabs .tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #9ca3af;
    border-bottom: 2px solid transparent;
}

.sidebar-tabs .tab-btn.active {
    color: #111827;
    border-bottom-color: #1e3a8a;
}

/* Tab content */
.sidebar-tab-content {
    display: none;
    padding-top: 10px;
}

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

/* Sidebar list */
.sidebar-list li {
    border-bottom: 1px solid #eee;
}

.sidebar-list li a {
    display: block;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #111827;
    text-decoration: none;
}

.sidebar-list li a:hover {
    color: #1e3a8a;
}

/* Dropdown caret (mobile) */
.sidebar-list .caret {
    float: right;
    margin-top: 6px;
    border-top: 5px solid currentColor;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

/* Collapse list */
.sidebar-list .collapse li a {
    font-size: 13px;
    text-transform: none;
    letter-spacing: normal;
    padding: 10px 0;
}

/* Search bar wrapper */
.search-box {
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

/* Text input */
.global-search-input {
    border: none !important;
    border-right: 1px solid #e5e7eb !important;
    padding: 10px 14px;
    font-size: 14px;
    height: 42px;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Category select */
.global-search-category {
    border: none;
    border-right: 1px solid #e5e7eb;
    padding: 0 12px;
    font-size: 13px;
    text-transform: uppercase;
    color: #6b7280;
    height: 42px;
    min-width: 160px;
    background-color: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

/* Search button */
.search-box button {
    border: none;
    background: #fff;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-left: 1px solid #e5e7eb;
    color: #6b7280;
}

.search-box button:hover {
    background: #f9fafb;
    color: #111827;
}

/* Focus styles */
.global-search-input:focus,
.global-search-category:focus {
    outline: none;
    box-shadow: none;
}

/* Responsive: stack nicely on very small screens */
@media (max-width: 786px) {
    .search-box {
        flex-direction: column;
        border-radius: 6px;
        border: none;
    }

    .global-search-input,
    .global-search-category,
    .search-box button {
        width: 100%;
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid #e5e7eb;
        height: 44px;
    }

    .search-box button {
        background: #1e3a8a;
        color: #fff;
    }
}

.browse-wrapper {
    position: relative;
}

#categorySidebar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    z-index: 999;
    display: none;
}

#categorySidebar.show {
    display: block;
}
.activity-card .card {
    border-radius: 12px;
}

.activity-card img {
    max-height: 90px;
    object-fit: cover;
}
