@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap);
*,
.main-nav {
    margin: 0;
    padding: 0;
}
*,
.login_page {
    box-sizing: border-box;
}
:root {
    --header-height: 80px;
    --footer-height: auto;
    --main--font: "Poppins", sans-serif;
    --secoendary-font: "Roboto", sans-serif;
    --dark-color: #000;
    --light-color: #79a1bb;
    --heading-color: #253036;
}
@media (min-width: 992px) and (max-width: 1200px) {
    :root {
        --header-height: 74px;
    }
}
a {
    text-decoration: none;
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: 0 0;
    box-shadow: none;
    transition:
        transform 0.4s,
        background 0.3s,
        box-shadow 0.3s;
}
.main-header.header-scrolled {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.brand-logo {
    width: 170px;
    display: inline-block;
}
.brand-logo img {
    width: 100%;
    height:auto;
}
.mobile-logo{
    width:150px;

}
.mobile-logo img{
    width:100%;
    height:auto;
}



.brand-logo img,
.heroSwiper {
    width: 100%;
}
.main-nav {
    gap: 36px;
    list-style: none;
}
.main-nav .category-dropdown,
.mega-dropdown-wrapper {
    position: static;
}
.main-nav .nav-item .nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    display: block;
    cursor: pointer;
    transition: color 0.2s;
    font-family: var(--main--font);
}
.main-nav .nav-item .nav-link:hover {
    color: var(--light-color);
}
.mega-menu-container {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100vw;
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid #eee;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: none;
    height: 80vh;
    overflow: auto;
}
.mega-menu-container::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: 0 0;
}
.dropdown-icon {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mega-dropdown-wrapper.is-open .dropdown-icon {
    transform: rotate(180deg);
}
.category-card,
.transition-icon {
    transition: transform 0.3s;
}
.category-card:hover,
.dashboard-container .summary-card:hover,
.search-product-card:hover {
    transform: translateY(-5px);
}
.cat-image-box {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #eaeaea;
}
.cat-image-box img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    transition: transform 0.4s;
}
.item-img-wrapper img,
.premium-gallery-img,
.product-img,
.review-image-right img,
.thumbnail-img {
    object-fit: cover;
    object-fit: cover;
}
.category-card:hover .cat-image-box img {
    transform: scale(1.08);
}
.tracking-wide {
    letter-spacing: 1px;
}
.search-wrapper {
    flex: 1;
    max-width: 350px;
    width: 100%;
    position: relative;
}
.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    transition: color 0.3s;
    z-index: 2;
}
.search-input {
    width: 100%;
    padding: 12px 20px 12px 42px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    outline: 0;
    background: #f8f8f8;
    transition: 0.3s ease-in-out;
}
.search-input:focus {
    border-color: var(--dark-color, #333);
    background: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
.search-wrapper:focus-within .search-icon {
    color: var(--dark-color, #333);
}
.search-results {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-height: 85vh;
    overflow-y: auto;
    display: none;
    z-index: 9999;
    padding: 50px 0;
}
.header-actions,
.search-close-btn {
    align-items: center;
    display: flex;
}
.search-results.show {
    display: block !important;
}
.search-product-card {
    border: none !important;
    transition: transform 0.3s;
    text-align: left !important;
}
.img-box-search {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 12px;
}
.BannerSwiper img,
.img-box-search img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.search-close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    background: #000;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10001;
    justify-content: center;
    transition: 0.2s;
}
.action-btn,
.hamburger-lines .line {
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.search-close-btn:hover {
    background: #333;
    transform: rotate(90deg);
}
.search-price-new {
    font-weight: 700;
    color: #000;
    font-size: 15px;
}
.search-price-old {
    color: #888;
    text-decoration: line-through;
    font-size: 13px;
    margin-left: 8px;
}
.header-actions {
    gap: 20px;
    gap: 10px;
}
.action-btn,
.badge-indicator {
    align-items: center;
    display: flex;
}
.header-actions a i {
    font-weight: 0 !important;
}
.action-btn {
    position: relative;
    color: var(--dark-color, #333);
    font-size: 20px;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f8f9fa;
    border: none;
    text-decoration: none;
    cursor: pointer;
}
.disabled-size,
.old-price {
    text-decoration: line-through;
}
.action-btn:hover {
    color: #ff6b9d;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.badge-indicator {
    position: absolute;
    top: 0;
    right: -2px;
    background: #ff6b9d;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(255, 107, 157, 0.3);
    transition: transform 0.3s;
}
.action-btn:hover .badge-indicator,
.payment-icons img:hover {
    transform: scale(1.15);
}
.mobile-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.menu-toggle-btn {
    background: 0 0;
    border: none;
    padding: 5px;
    cursor: pointer;
    outline: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
.hamburger-lines {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hamburger-lines .line {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--dark-color, #333);
    border-radius: 4px;
    transform-origin: left;
}
.menu-toggle-btn.is-active .line1 {
    transform: rotate(45deg);
}
.menu-toggle-btn.is-active .line2,
.premium-product-card:hover .primary-img {
    opacity: 0;
}
.menu-toggle-btn.is-active .line3 {
    transform: rotate(-45deg);
}
.mobile-offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: #fff;
    z-index: 1002;
    box-shadow: none;
    transition:
        right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.4s;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-offcanvas.active {
    right: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}
.offcanvas-header {
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
}
.mobile-bottom-nav,
.page-overlay,
.search-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
.close-offcanvas-btn {
    background: #f8f9fa;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-offcanvas-btn:hover {
    background: #eee;
}
.mobile-collection-toggle {
    cursor: pointer;
}
.mega-category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.mega-category-item {
    flex: 0 0 160px;
}
.search-modal {
    top: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    z-index: 99999;
}
.search-modal.active {
    display: flex;
}
.search-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #e8e8e8;
}
.search-modal-back {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0 0;
    border: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
}
.search-modal-input {
    flex: 1;
    border: none;
    font-size: 16px;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    outline: 0;
}
.search-modal-results {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}
.page-overlay {
    display: none;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}
.dashboard-container .content-section.active,
.dashboard-container .dash-backdrop.dash-show,
.hero-img,
.page-overlay.active {
    display: block;
}
.mobile-bottom-nav {
    background: rgba(20, 20, 20, 0.85);
    
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 999;
    pointer-events: auto;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mobile-bottom-nav .bottom-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.mobile-bottom-nav .bottom-nav-items .nav-item-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 11px;
    padding: 8px;
    position: relative;
    transition:
        color 0.3s,
        transform 0.2s;
}
.nav-item-btn i {
    font-size: 20px;
}
.nav-item-btn.active,
.nav-item-btn:active {
    color: #ff6b9d;
    transform: translateY(-2px);
}
.mobile-bottom-nav.hidden-bottom {
    transform: translateY(100%);
}
.nav-item-btn .badge-indicator {
    position: absolute;
    top: 0;
    right: auto;
    left: 50%;
    margin-left: 6px;
    background: #ff6b9d;
    color: #fff;
    font-size: 9px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(20, 20, 20, 0.9);
}
@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.hero-section {
    padding: 0;
    overflow: hidden;
}
.hero-image-container {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.hero-image-container picture {
    display: block;
    width: 100%;
}
.hero-img {
    width: 100%;
    height: auto;
    max-width: 100%;
}
.heroSlider-pagination .swiper-pagination-bullet-active {
    background: #fff !important;
}
.section-title {
    font-family: var(--main--font);
    font-size: 1.8rem;
    color: var(--heading-color);
}
.footer-section,
.shop-by-color {
    font-family: var(--main-font);
}
.premium-product-card {
    width: 100%;
    margin-bottom: 20px;
    background: 0 0;
}
.product-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: #f5f6f8;
}
.product-img {
    width: 100%;
    height: 100%;
    object-position: top center;
    transition: opacity 0.5s;
}
.custom-cart-drawer .btn-close:hover,
.premium-product-card:hover .secondary-img,
.primary-img {
    opacity: 1;
}
.secondary-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.wishlist-float-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: 0 0;
    border: none;
    color: #fff;
    font-size: 18px;
    z-index: 10;
    cursor: pointer;
    transition:
        transform 0.2s,
        color 0.2s;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.wishlist-float-btn:hover {
    transform: scale(1.15);
    color: #ff6b9d;
}
.wishlist-float-btn .text-danger {
    color: #e63946 !important;
    text-shadow: none;
}
.discount-badge-minimal {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #333;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    letter-spacing: 0.5px;
    z-index: 10;
}
.product-info-minimal {
    padding: 0 5px;
}
.product-title-elegant {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}
.product-info-minimal a:hover .product-title-elegant {
    color: #ff6b9d;
}
.product-price-elegant {
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.current-price-card {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.old-price {
    font-size: 13px;
    color: #888;
    margin-left: 6px;
}
.shop-by-color h2 {
    color: var(--heading-color);
    font-weight: 600;
    text-transform: uppercase;
}
.color-tab {
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
    margin: 5px;
    font-weight: 500;
    border-radius: 6px;
    transition: 0.3s;
}
.color-tab:hover {
    background: var(--light-color);
    color: #fff;
}
.color-tab.active {
    background: var(--dark-color) !important;
    color: #fff !important;
}
.BannerSwiper {
    height: auto;
    overflow: hidden;
}
.footer-section {
    background: #fff;
    color: var(--heading-color);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}
.footer-bottom,
.social-icons a:hover {
    background: var(--dark-color);
    color: #fff;
}
.footer-logo img {
    width: 110px;
}
.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
}
.footer-contact h3,
.footer-links h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links ul li {
    margin-bottom: 8px;
}
.footer-links a {
    text-decoration: none;
    color: var(--heading-color);
    font-size: 14px;
    transition: 0.3s;
}
.avg-rating-text,
.footer-contact a:hover,
.footer-links a:hover,
.star-input.active,
.star-input:hover {
    color: var(--dark-color);
}
.footer-contact a,
.footer-contact p {
    font-size: 14px;
    color: var(--heading-color);
    text-decoration: none;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--heading-color);
    margin-right: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}
.footer-bottom {
    font-size: 14px;
    width: 100%;
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 5px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    animation: 1.5s infinite whatsappBounce;
}
@keyframes whatsappBounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}
.whatsapp-float:hover {
    background-color: #20b954;
    transform: scale(1.1);
}
.premium-pdp-section {
    margin-top: var(--header-height) !important;
    padding-bottom: 40px;
    background-color: #e7e7e7;
}
.product-breadcrumb {
    font-size: 14px;
    letter-spacing: 0.3px;
}
.product-breadcrumb a {
    transition: color 0.3s;
}
.product-breadcrumb a:hover {
    color: #111 !important;
}
.premium-gallery-img {
    width: 100%;
    height: auto;
    display: block;
    background: #f8f9fa;
}
.thumbnail-container {
    scrollbar-width: none;
}
.thumbnail-container::-webkit-scrollbar {
    display: none;
}
.thumbnail-img {
    border-radius: 6px;
    opacity: 0.5;
    transition: 0.3s ease-in-out;
}
.thumbnail-img:hover {
    opacity: 0.8;
}
.thumbnail-img.active-thumb {
    opacity: 1;
    border-color: #212529;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}
.color-swatch-label {
    border: 1px solid #ddd;
    padding: 8px 15px;
    cursor: pointer;
    display: inline-block;
    border-radius: 4px;
    transition: 0.3s;
}
.color-radio:checked + .color-swatch-label,
.size-radio:checked + .size-label {
    border-color: #000;
    background: #000;
    color: #fff;
}
.size-label {
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
}
.disabled-size {
    opacity: 0.4;
    cursor: not-allowed;
}
.thumbnail-img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid transparent;
}
.active-thumb {
    border-color: #000;
}
.premium-gallery-img {
    border-radius: 8px;
    transition: transform 0.3s;
}
.product-details-sticky {
    position: sticky;
    top: 115px;
    padding: 20px;
    background-color: #f5f2f2;
    border-radius: 8px;
}
.pdp-title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin: 0;
    letter-spacing: -0.5px;
}
.pdp-price {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}
.pdp-wishlist-btn {
    background: 0 0;
    border: none;
    font-size: 24px;
    transition: transform 0.2s;
}
.pdp-wishlist-btn:hover {
    transform: scale(1.1);
    color: #111;
}
.color-grid,
.size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.dashboard-container .content-section,
.size-option input {
    display: none;
}
.size-label {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: 0.2s;
    min-width: 65px;
    text-align: center;
    background: #fff;
}
.size-label:hover {
    border-color: #111;
}
.size-option input:checked + .size-label {
    background-color: #111;
    color: #fff;
    border-color: #111;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.pdp-btn-outline,
.pdp-btn-solid {
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}
.pdp-btn-outline {
    background: #000;
    color: #fff;
}
.pdp-btn-outline:hover {
    background: #fff;
    color: #000;
}
.pdp-btn-solid {
    background: #111;
    border: 1px solid #111;
    color: #fff;
}
.pdp-btn-solid:hover {
    background: #000;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    color: #fff;
}
.pdp-tabs .nav-tabs {
    border-bottom: 1px solid #e8e8e8;
}
.pdp-tabs .nav-link {
    border: none;
    color: #888;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 0;
    margin-right: 25px;
    background: 0 0;
    position: relative;
    transition: color 0.2s;
}
.pdp-tabs .nav-link:hover {
    color: #111;
}
.pdp-tabs .nav-link.active {
    color: #111;
    font-weight: 600;
}
.pdp-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #111;
}
.description-text {
    font-size: 14px;
    line-height: 1.8;
}
.product-rating-header {
    background: #fff;
    padding: 2rem 2rem 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}
.product-rating-header .product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}
.rating-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}
.star-rating {
    color: var(--dark-color);
    font-size: 1.2rem;
}
.star-rating .fa-star {
    margin-right: 2px;
}
.user-avatar-circle {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #e0e0e0;
}
.review-card-modern {
    position: relative;
    width: 100%;
}
.user-avatar-circle-sm {
    width: 35px;
    height: 35px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
}
.review-body-text {
    line-height: 1.5;
    max-width: 90%;
}
.review-image-right {
    flex-shrink: 0;
}
.review-image-right img {
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: transform 0.2s;
}
.review-image-right img:hover {
    transform: scale(1.05);
}
@media (max-width: 576px) {
    .review-image-right img {
        width: 70px;
        height: 70px;
    }
    .review-body-text {
        max-width: 100%;
    }
}
.about-hero *,
.qty-control .btn:hover,
.review-stars i {
    color: #000;
}
.write-review-btn {
    background: #000;
    font-size: 14px;
}
.write-review-btn:hover {
    background: #333;
    transform: translateY(-2px);
    background: var(--heading-color);
    color: #fff;
}
.avg-rating-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
}
.total-reviews {
    color: #888;
    font-size: 14px;
}
.rating-bar-container {
    height: 6px;
    background: #eee;
    border-radius: 10px;
}
.rating-bar-fill {
    height: 100%;
    background: #000;
    border-radius: 10px;
}
.write-review-btn {
    background: var(--dark-color);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s;
}
.star-input {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}
.modal-header {
    color: var(--dark-color);
    border-radius: 8px 8px 0 0;
}
.no-reviews {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
    background: #fff;
    border-radius: 8px;
}
.btn-load-more {
    background: var(--dark-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-load-more:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}
.login_page {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    padding: 20px;
    position: relative;
    overflow: hidden;
    font-family: Inter, sans-serif;
}
.login_page .bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}
.login_page .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    z-index: 1;
}
.login_page .circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}
.login_page .circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}
.login_page .login-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 420px;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}
.login_page .brand-logo {
    width: 120px;
    margin-bottom: 30px;
}
.login_page h4 {
    font-weight: 800;
    color: #000;
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.login_page .text-muted {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}
.login_page .input-group {
    position: relative;
    margin-bottom: 20px;
}
.login_page .input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    z-index: 5;
}
.login_page .form-control {
    border-radius: 12px;
    padding: 14px 14px 14px 48px;
    border: 2px solid #eee;
    width: 100%;
    transition: 0.3s;
    background: #fff;
    font-size: 15px;
    color: #000;
}
.login_page .form-control:focus {
    border-color: #000;
    outline: 0;
    box-shadow: none;
}
.login_page .otp-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}
.login_page .otp-input {
    width: 55px;
    height: 60px;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    border-radius: 12px;
    border: 2px solid #eee;
    background: #fff;
    transition: 0.2s;
}
.login_page .otp-input:focus {
    border-color: #000;
    background: #fafafa;
    transform: translateY(-2px);
}
.login_page .btn-custom {
    border-radius: 12px;
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s;
    text-transform: none;
}
.login_page .btn-gradient {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}
.login_page .btn-gradient:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-2px);
}
.login_page .btn-resend {
    background: 0 0;
    border: 2px solid #000;
    color: #000;
    margin-top: 15px;
}
.login_page .btn-resend:hover {
    background: #f0f0f0;
}
.login_page .btn-success {
    background: #000;
    border: none;
    color: #fff;
}
.dashboard-container {
    display: flex;
    flex: 1 0 auto;
    background-color: #f4f6f9;
    position: relative;
}
.dashboard-container .dash-sidebar {
    background: var(--dark-color);
    color: #fff;
    max-height: calc(100vh - var(--header-height));
    height: 100%;
    padding: 0;
    position: fixed;
    left: 0;
    top: var(--header-height);
    width: 260px;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.3s;
    overflow-y: auto;
}
.dashboard-container .dash-sidebar.dash-active {
    transform: translateX(0);
}
.dashboard-container .dash-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 25px 15px;
    background: var(--dark-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}
.dashboard-container .profile-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.dashboard-container .profile-text h4 {
    margin: 0;
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
}
.dashboard-container .profile-text p {
    margin: 3px 0 0;
    font-size: 0.9rem;
    color: #fff;
}
.dashboard-container .dash-close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    background: 0 0;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    display: none;
}
.dashboard-container .nav-item {
    margin: 5px 15px;
}
.dashboard-container .nav-link {
    color: #fff !important;
    padding: 15px 20px !important;
    border-radius: 10px !important;
    transition: 0.3s;
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}
.dashboard-container .nav-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--white-color) !important;
    transform: translateX(5px);
}
.dashboard-container .nav-link.active {
    background: var(--accent-color) !important;
    color: var(--white-color) !important;
    box-shadow: 0 4px 15px rgba(28, 20, 22, 0.3);
}
.dashboard-container .nav-link i {
    width: 20px;
    margin-right: 12px;
    font-size: 1.1rem;
}
.dashboard-container .dash-main-content {
    margin-left: 0;
    padding: 20px;
    transition: margin-left 0.3s;
    width: 100%;
    min-height: calc(100vh - var(--header-height));
}
.dashboard-container .dash-mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    background: 0 0;
    position: relative;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
.dashboard-container .dash-mobile-header .mobile-section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}
.dashboard-container .dash-mobile-header .dash-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0 0;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 2px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.dashboard-container > .dash-toggle-btn {
    display: none !important;
}
.dashboard-container .section-heading {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.dashboard-container .summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.dashboard-container .summary-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
    color: var(--dark-color);
}
.dashboard-container .summary-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}
.dashboard-container .completed-card::before,
.dashboard-container .pending-card::before {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}
.dashboard-container .summary-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}
.dashboard-container .summary-card p {
    margin: 10px 0 0;
    font-weight: 600;
    opacity: 0.8;
}
.dashboard-container .completed-card h2,
.dashboard-container .pending-card h2 {
    background: var(--dark-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dashboard-container .card-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    opacity: 0.3;
    color: var(--dark-color);
}
.dashboard-container .section-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: visible;
}
.dashboard-container .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
}
.dashboard-container .search-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}
.dashboard-container .search-input {
    flex: 1;
    max-width: 300px;
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    outline: 0;
    transition: 0.3s;
}
.dashboard-container .search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.1);
}
.dashboard-container .filter-select {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    outline: 0;
    background: #fff;
    cursor: pointer;
}
.dashboard-container .table-responsive {
    border-radius: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}
.dashboard-container .table {
    margin: 0;
    width: 100%;
    min-width: 700px;
    white-space: nowrap;
    display: table;
}
.dashboard-container .table thead th {
    background: #eee;
    color: var(--dark-color);
    border: none;
    font-weight: 600;
    padding: 15px;
    white-space: nowrap;
}
.dashboard-container .table tbody tr,
.form-control {
    transition: 0.3s;
}
.dashboard-container .table tbody tr:hover {
    background-color: #f8f9ff;
    transform: scale(1.01);
}
.dashboard-container .table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    white-space: nowrap;
}
.dashboard-container .status-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dashboard-container .status-completed,
.dashboard-container .status-pending,
.dashboard-container .status-processing {
    background: var(--accent-color);
    color: var(--white-color);
}
.dashboard-container .action-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
    margin: 0 2px;
    cursor: pointer;
}
.dashboard-container .btn-delete,
.dashboard-container .btn-edit,
.dashboard-container .btn-view {
    background: var(--accent-color);
    color: #fff;
}
.dashboard-container .action-btn:hover,
.dashboard-container .cancel-logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.dashboard-container .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}
.dashboard-container .empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}
.dashboard-container .address-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: 0.3s;
    position: relative;
}
.dashboard-container .address-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
}
.dashboard-container .address-card.primary {
    border-color: #00c851;
    background: linear-gradient(135deg, rgba(0, 200, 81, 0.05), rgba(0, 255, 136, 0.05));
}
.dashboard-container .address-type {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #667eea;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.dashboard-container .address-type.primary {
    background: #00c851;
}
.dashboard-container .address-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}
.dashboard-container .address-details {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
}
.dashboard-container .address-actions {
    display: flex;
    gap: 10px;
}
.dashboard-container .logout-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
}
.dashboard-container .logout-icon {
    font-size: 4rem;
    color: var(--dark-color);
    margin-bottom: 30px;
}
.dashboard-container .logout-message {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}
.dashboard-container .logout-submessage {
    color: #6c757d;
    margin-bottom: 30px;
}
.dashboard-container .redirect-timer {
    font-weight: 600;
    color: #667eea;
}
.dashboard-container .cancel-logout-btn {
    background: var(--dark-color);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}
.dashboard-container .dash-backdrop {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100% - var(--header-height));
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}
.btn-checkout {
    background-color: var(--dark-color);
    color: #fff;
}
.btn-checkout:hover {
    background-color: var(--third-color);
    color: #fff;
}
.contact-form-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 40px;
    margin-top: 30px;
}
.form-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}
.form-subtitle {
    color: #6c757d;
    text-align: center;
    margin-bottom: 30px;
}
.form-label {
    font-weight: 600;
    color: #495057;
    text-align: right;
    padding-top: 8px;
}
.form-control:focus {
    border-color: var(--dark-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    outline: 0;
}
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.submit-btn {
    background: var(--dark-color);
    border: none;
    border-radius: 8px;
    padding: 12px 40px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.submit-btn:hover {
    transform: translateY(-2px);
    background: var(--heading-color);
    color: #fff;
}
.required {
    color: #dc3545;
}
.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}
.checkout_section {
    background: #f5f5f5 !important;
}
.classic-summary-card {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
}
.summary-title {
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: #000;
}
.item-img-wrapper {
    width: 75px;
    height: 95px;
    flex-shrink: 0;
}
.item-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: #f9f9f9;
}
.item-qty-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #666;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.product-name-classic {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}
.product-variant-classic {
    font-size: 12px;
    color: #888;
}
.product-price-classic {
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
}
.classic-calculation .summary-item span {
    font-size: 14px;
}
.classic-btn {
    border-radius: 8px;
    letter-spacing: 1px;
    font-weight: 700;
    transition: 0.3s;
}
.classic-btn:hover {
    background: #333;
    transform: translateY(-1px);
}
@media (max-width: 375px) {
    .cart-header {
        font-size: 16px;
        padding: 10px 12px;
    }
    .progress-section {
        margin: 10px;
        padding: 12px;
    }
    .product-section {
        padding: 10px 12px;
    }
    .cart-footer {
        padding: 12px 15px;
    }
    .product-image {
        width: 60px;
        height: 75px;
    }
    .product-title {
        font-size: 12px;
    }
    .product-price {
        font-size: 14px;
    }
    .btn-checkout,
    .btn-continue {
        padding: 6px 4px;
        font-size: 12px;
    }
    .view-all-link {
        display: none;
    }
}
@media (max-width: 575px) {
    .shop-space-card img {
        height: 160px;
    }
    .space-overlay {
        bottom: 10px !important;
        left: 10px !important;
        right: 10px !important;
        padding: 6px 8px !important;
    }
    .space-overlay span {
        font-size: 12px !important;
    }
    .quantity-input-group {
        max-width: 100%;
    }
    .add-to-cart-btn {
        width: 100%;
    }
    .product-details-wrapper .product-title {
        font-size: 1.4rem;
        font-weight: 400;
    }
    .cart-side-modal .cart-side-modal-dialog {
        width: 100%;
        max-width: 100%;
    }
    .cart-header {
        font-size: 18px;
        padding: 12px 15px;
    }
    .view-cart-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    .cart-footer {
        position: sticky;
        bottom: 0;
        z-index: 10;
    }
    .login_page {
        padding: 15px;
    }
    .login_page .login-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .login_page .logo {
        width: 80px;
    }
    .login_page .otp-input {
        width: 50px;
        height: 50px;
    }
}
@media (max-width: 767px) {
    .search-result-item {
        gap: 12px;
        padding: 12px;
    }
    .img-box {
        width: 70px;
        height: 70px;
    }
    .search-result-title {
        font-size: 13px;
    }
    .current-price {
        font-size: 14px;
    }
    .hero-image-container {
        border-radius: 0;
    }
    .heroSlider-next,
    .heroSlider-prev {
        display: none;
    }
    .color-tab {
        font-size: 12px;
        padding: 6px 12px;
    }
    .BannerSwiper,
    .BannerSwiper img {
        height: 250px;
    }
    .footer-section {
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .whatsapp-float {
        bottom: 100px;
    }
    .description-card {
        padding: 20px;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .ck-content {
        font-size: 15px;
    }
    .cart-side-modal .cart-side-modal-dialog {
        max-width: 85%;
    }
    .contact-form-card {
        padding: 25px;
    }
}
@media (max-width: 991px) {
    .main-header {
        display: none !important;
    }
    .mobile-bottom-nav,
    .mobile-header {
        display: block;
    }
    .category-dropdown:hover .products-mega-dropdown {
        opacity: 0;
        visibility: hidden;
    }
    .hover-icons {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        visibility: visible;
    }
    :root {
        --header-height: 70px;
    }
    .whatsapp-float {
        bottom: 100px;
    }
    .dashboard-container {
        padding-bottom: var(--header-height);
    }
    .dashboard-container .dash-main-content {
        margin-left: 0;
        padding: 15px;
        min-height: calc(100vh - var(--header-height));
    }
    .dashboard-container .dash-sidebar {
        width: 300px;
        top: var(--header-height);
        max-height: calc(100vh - var(--header-height));
    }
    .dashboard-container .summary-cards {
        grid-template-columns: 1fr;
    }
    .dashboard-container .table-responsive {
        display: block !important;
        width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        border-radius: 10px;
        margin-bottom: 1rem;
        max-height: none !important;
    }
    .dashboard-container .table {
        min-width: 700px !important;
        width: 700px !important;
        display: table !important;
        white-space: nowrap;
    }
    .dashboard-container .table thead {
        display: table-header-group !important;
        width: 100%;
    }
    .dashboard-container .table tbody {
        display: table-row-group !important;
        width: 100%;
    }
    .dashboard-container .table tbody td,
    .dashboard-container .table thead th {
        white-space: nowrap !important;
        padding: 12px 8px !important;
        font-size: 0.85rem !important;
        min-width: 80px;
    }
    .dashboard-container .table td:first-child,
    .dashboard-container .table th:first-child {
        min-width: 100px;
    }
    .dashboard-container .table td:nth-child(3),
    .dashboard-container .table td:nth-child(5),
    .dashboard-container .table th:nth-child(3),
    .dashboard-container .table th:nth-child(5) {
        min-width: 90px;
    }
    .dashboard-container .section-container {
        padding: 20px 15px;
    }
    .dashboard-container .search-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .dashboard-container .search-input {
        max-width: none;
    }
    .dashboard-container .address-actions {
        flex-wrap: wrap;
    }
    .dashboard-container .dash-mobile-header {
        display: flex;
    }
    .dashboard-container .section-heading {
        display: none;
    }
    .premium-pdp-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .main-nav {
        gap: 15px;
        margin-right: 20px;
    }
    .main-header .container {
        gap: 20px;
    }
    .search-wrapper {
        max-width: 200px;
    }
    .header-actions {
        gap: 16px;
    }
    .category-link {
        font-size: 14px;
    }
}
.social-facebook:hover,
.social-instagram:hover,
.social-whatsapp:hover {
    transform: translateY(-4px);
    color: #fff;
}
.main-container {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 15px;
}
.contact-header {
    color: #346152;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
}
.content-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.contact-details-box,
.form-panel {
    background-color: #fdfdfd;
    border-radius: 8px;
    padding: 30px;
}
.contact-details-box {
    height: 100%;
}
.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.detail-icon {
    background-color: #e9f0ec;
    color: #346152;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}
.detail-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #346152;
    margin-bottom: 5px;
}
.detail-text a,
.detail-text p {
    color: #6c757d;
    text-decoration: none;
    margin-bottom: 0;
    transition: 0.3s;
}
.detail-text a:hover {
    color: #346152;
}
.social-icons-box {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    color: #fff;
    margin-right: 12px;
    text-decoration: none;
    font-size: 1.4rem;
    transition: 0.3s;
}
.social-facebook {
    background-color: #1877f2;
}
.social-facebook:hover {
    background-color: #166fe5;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}
.social-instagram {
    background: linear-gradient(45deg, #f09433 0, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-instagram:hover {
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}
.social-whatsapp {
    background-color: #25d366;
}
.social-whatsapp:hover {
    background-color: #1da851;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}
.get-in-touch-title {
    color: #346152;
    font-weight: 700;
}
.btn-custom {
    background-color: #346152;
    color: #fff;
    border: none;
    padding: 12px 20px;
    width: 100%;
    border-radius: 5px;
    font-weight: 700;
    transition: 0.3s;
}
.btn-custom:hover {
    background-color: #2a4d41;
    color: #fff;
}
.form-control {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 12px;
    background-color: #fafafa;
}
.form-control:focus {
    box-shadow: none;
    border-color: #346152;
    background-color: #fff;
}
@media (min-width: 992px) {
    .checkout_section,
    .dashboard-container,
    .login_page,
    .products-section,
    .wishlist-section {
        margin-top: var(--header-height);
    }
    .mobile-bottom-nav,
    .mobile-header,
    .mobile-sidebar,
    .search-modal {
        display: none !important;
    }
    .shop-space-card:hover img {
        transform: scale(1.1);
    }
    .dashboard-container .dash-sidebar {
        transform: translateX(0);
    }
    .dashboard-container .dash-main-content {
        margin-left: 260px;
    }
}
.filter-sidebar {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.offcanvas-body .filter-sidebar {
    background-color: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}
.filter-heading {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}
.filter-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #000;
}
.filter-divider {
    border-top: 1px solid #e0e0e0;
    margin: 20px 0;
    opacity: 1;
}
.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-pill {
    position: relative;
    cursor: pointer;
    margin: 0;
}
.filter-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.filter-pill span {
    display: inline-block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 30px;
    transition: 0.3s;
    user-select: none;
}
.filter-pill:hover span {
    border-color: #000;
    color: #000;
}
.filter-checkbox:checked + span,
.filter-checkbox:checked + span:not(.color-dot) {
    background-color: #000;
    color: #fff;
}
.filter-checkbox:checked + span {
    border-color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.color-pill span:not(.color-dot) {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 12px;
}
.color-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-left: 6px;
    position: relative;
    top: 1px;
}
.filter-footer-modern {
    display: flex;
    gap: 10px;
    margin-top: 30px !important;
}
.filter-footer-modern button {
    flex: 1;
    padding: 12px 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: 0.3s;
    cursor: pointer;
}
.btn-remove-all {
    background-color: transparent;
    color: #666;
    border: 1px solid #ccc;
}
.btn-remove-all:hover {
    background-color: #f1f1f1;
    color: #000;
    border-color: #999;
}
.btn-apply {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}
.btn-apply:hover {
    background-color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.form-select-sm {
    padding: 10px 35px 10px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px 10px;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.form-select-sm:hover {
    border-color: #999;
}
.form-select-sm:focus {
    border-color: #000;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
#results-count {
    font-size: 15px;
    letter-spacing: 0.3px;
}
#results-count strong {
    color: #000;
    font-size: 16px;
}
.custom-cart-drawer.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
}
.custom-cart-drawer .modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.custom-cart-drawer .modal-header {
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0 !important;
    padding: 20px 24px;
    position: sticky;
    top: 0;
    z-index: 10;
}
.custom-cart-drawer .modal-header h5 {
    font-size: 18px;
    letter-spacing: 0.5px;
    margin: 0;
}
.custom-cart-drawer .btn-close {
    opacity: 0.5;
    transition: opacity 0.2s;
}
.custom-cart-drawer .modal-body {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.custom-cart-drawer .modal-body::-webkit-scrollbar {
    width: 6px;
}
.custom-cart-drawer .modal-body::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 4px;
}
.custom-cart-drawer .modal-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.custom-cart-drawer .modal-body::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}
.cart-row {
    border-color: #f0f0f0 !important;
}
.cart-row:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.cart-row img {
    border: 1px solid #f5f5f5;
    background-color: #fafafa;
}
.qty-control {
    border-color: #e0e0e0 !important;
}
.qty-control .btn {
    padding: 2px 10px;
    color: #555;
    font-weight: 700;
}
.custom-cart-drawer .modal-footer {
    background-color: #fff;
    border-top: 1px solid #f0f0f0 !important;
    position: sticky;
    bottom: 0;
    z-index: 10;
}
.custom-cart-drawer #checkoutBtn {
    transition: 0.3s;
    border: 1px solid #000;
}
.custom-cart-drawer #checkoutBtn:hover {
    background-color: #fff !important;
    color: #000 !important;
}
.footer-wrapper {
    background-color: #f6f6f6;
    padding: 40px 0 20px;
    font-family: Arial, sans-serif;
}
.footer-wrapper .container {
    padding: 0 40px;
}
.footer-heading {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 15px;
    color: #000;
}
.footer-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    line-height: 2.2;
    transition: 0.3s;
}
.footer-link:hover {
    color: #000;
    padding-left: 3px;
}
.brand-cursive {
    font-family: Playball, cursive;
    font-size: 50px;
    color: #555;
    line-height: 1;
}
.brand-description {
    font-size: 13px;
    color: #6c757d;
    margin-top: 15px;
    line-height: 1.6;
}
.trust-badges,
.trust-item {
    font-size: 13px;
    color: #444;
    font-weight: 500;
}
.payment-icons img {
    height: 34px;
    margin-right: 10px;
    transition: transform 0.3s;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.trust-item img {
    height: 18px;
    opacity: 0.8;
}
.footer-wrapper .border-top {
    border-top: 1px solid #e5e5e5;
}
.copyright-text {
    font-size: 11px;
    color: #555;
}
.bag-container {
    perspective: 1000px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 150px;
}
.shopping-bag {
    width: 110px;
    height: 160px;
    position: relative;
    transform-style: preserve-3d;
    animation: 15s linear infinite spinBag;
}
.bag-handle {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 50px;
    border: 3px solid #ddd;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
}
.bag-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #d8d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    color: #030000;
    border: 1px solid #eee;
    backface-visibility: hidden;
}
.bag-front {
    transform: rotateY(0);
}
.bag-back {
    transform: rotateY(180deg);
}
@keyframes spinBag {
    0% {
        transform: rotateY(0);
    }
    100% {
        transform: rotateY(360deg);
    }
}
.about-hero {
    margin-top: var(--header-height);
    background: linear-gradient(to bottom, #fff, #f8f8f8);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.about-title {
    font-size: 70px;
    letter-spacing: 8px;
    font-weight: 700;
    margin-bottom: 10px;
}
.about-tagline {
    font-size: 14px;
    letter-spacing: 3px;
    color: #666;
}
.about-content {
    background-color: #000;
    padding: 80px 0;
}
.about-block {
    max-width: 750px;
    margin: 0 auto 40px;
    text-align: center;
}
.about-block p {
    font-size: 16px;
    line-height: 1.9;
    color: #ccc;
}
.about-block .highlight {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}
.about-block h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}
.about-signature {
    margin-top: 80px;
}
.about-signature h3 {
    font-size: 28px;
    letter-spacing: 4px;
    color: #fff;
}
.about-signature p {
    font-size: 13px;
    color: #888;
    letter-spacing: 2px;
}
.about-block:nth-child(2n) {
    margin-top: 20px;
}
.about-block p:hover {
    color: #fff;
    transition: 0.3s;
}
.page_class {
    margin-top: var(--header-height);
}
@media (max-width: 768px) {
    .dashboard-container .dash-sidebar.dash-active .dash-close-btn {
        display: block;
    }
    .brand-cursive,
    .brand-description,
    .copyright-text,
    .footer-heading,
    .footer-link,
    .footer-wrapper ul li,
    .payment-icons {
        text-align: center;
    }
    .footer-wrapper .container {
        padding: 0 20px;
    }
    .footer-wrapper .row > div {
        text-align: center;
        margin-bottom: 25px;
    }
    .footer-heading {
        margin-bottom: 12px;
    }
    .footer-wrapper ul {
        padding-left: 0;
        margin: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-wrapper ul li {
        width: 100%;
    }
    .footer-link {
        display: inline-block;
    }
    .bag-container {
        justify-content: center;
        margin-top: 15px;
    }
    .payment-icons img {
        height: 30px;
        margin: 5px;
    }
    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .about-hero,
    .page_class {
        margin-top: 0;
    }
    .about-title {
        font-size: 42px;
        letter-spacing: 4px;
    }
    .about-tagline {
        font-size: 12px;
    }
    .about-content {
        padding: 50px 20px;
    }
    .about-block p {
        font-size: 14px;
    }
    .about-block {
        margin-bottom: 30px;
    }
    .about-signature {
        margin-top: 50px;
    }

    /* Category cards section adjustments */

    .category-card {
    aspect-ratio: 3/4; 
    }

    .category-img {
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .category-card:hover .category-img {
        transform: scale(1.05); 
    }

    .card-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
        letter-spacing: 1px;
    }

    /* Hover effects for buttons */
    .swiper-prev-category:hover, .swiper-next-category:hover {
        background-color: #5a3a31; 
        color: white;
        border-color: #5a3a31;
    }
}
