/*--------------- HEADER CSS START ---------------*/
.top-headline {
    padding: 10px 0;    
    border-bottom: 1px solid #EAEBED;
}
.top-headline .container{
    display: flex;
    justify-content: space-between;
    align-items: center;    
}
.top-headline .headline-text{
    overflow: hidden;
    min-width: 1000px;
}
.top-headline .headline-text span{
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    animation: scroll-text 10s linear infinite;
}
@keyframes scroll-text {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.top-headline .headline-socials .social-item{
    margin: 0 5px;
}
.top-headline .headline-socials .social-item img{
    width: 14px;
}
.top-headline .headline-socials .social-item:first-child img{
    width: 16px;
}
.top-headline .headline-socials .social-item:last-child img{
    width: 17px;
}
.header-main {
    padding: 30px 0;
    border-bottom: 1px solid #e8e8e8;
}
.header-main .container{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-logo img {
    width: 140px;
}
.header-logo {
    width: 20%;
}
.header-search{
    width: 59%;    
}
.header-search form{
    width: 87%;
    position: relative;
}
.header-search input{
    padding-right: 50px;
    height: 45px;
}
.header-search button {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background: var(--primary);
    color: white;
    width: 50px;
    height: 100%;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    font-size: 18px;
}
.header-whatsapp{
    width: 11%;
}
.header-whatsapp > div{    
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #42897E;
    color: white;
    border-radius: 2px;
    font-size: 14px;
    width: 150px;
    justify-content: center;
    height: 45px;
}
.header-whatsapp i{
    font-size: 30px;
}
.header-whatsapp small{
    font-size: 10px;
    color: #ccc;
}
.header-whatsapp .phone-no{
    font-size: 14px;
}
.header-action {
    width: 10%;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
}
.header-action a{
    position: relative;
}
.header-action a img{
    width: 25px;
}
.header-action a span {
    position: absolute;
    top: -7px;
    right: -11px;
    line-height: 16px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    color: white;
    text-align: center;
    font-size: 12px;
}
/*--------------- HEADER CSS END ---------------*/
/*--------------- NAVBAR CSS START ---------------*/
nav.navbar {
    background: var(--navbar);
    padding: 0;
}

.navbar .logo a {
    font-size: 20px;
    font-weight: 700;
    color: #353535;
    text-transform: uppercase;
}

.navbar .main-menu>ul>li {
    display: inline-block;
    position: relative;
    margin: 0 -2px;
}

.navbar .main-menu ul li {
    padding: 5px 0;
    /* position: relative; */
}

.navbar .main-menu ul li a {
    font-size: 14px;
    color: var(--white);
    padding: 10px 10px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
}
.navbar .main-menu .mega_menu a{
    color: #28282b;
}
.navbar .main-menu ul li a span{
    line-height: initial;
}
.navbar .main-menu ul > li > a > i{
    font-size: 18px;      
    color: #ccc;
    transition: 3ms;
}
.navbar .main-menu ul > li > a > i.fa-angle-down,
.navbar .main-menu ul.sub_menu li.has_dropdown i{
    font-size: 10px;      
}
.navbar .main-menu ul.sub_menu li.has_dropdown i {
    color: #353535;
}
.navbar .main-menu ul.sub_menu li{
    padding: 0;
    transition: 3ms;
}
.navbar .main-menu ul.sub_menu li.has_dropdown a{
    justify-content: space-between;
    transition: 3ms;
}
.navbar .main-menu ul.sub_menu a:hover,
.navbar .main-menu ul.sub_menu a:hover i{
    color: var(--primary) !important;
}
.navbar .main-menu ul > li > a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}
.navbar .main-menu ul .has_dropdown li.has_dropdown .active,
.navbar .main-menu ul .has_dropdown li.has_dropdown:hover>a {
    color: #28282b;
}

.navbar .main-menu ul li ul {    
    background: #fff;
    transition: 0.5s;
    box-shadow: -4px -2px 30px 2px rgb(0 0 0 / 17%);
}
.navbar .main-menu ul.sub_menu{
    width: 220px;
    padding: 15px 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.navbar .main-menu ul li ul li a {
    padding: 5px 15px 5px 25px;
    font-size: 12px;
    color: #28282b;
    transition: 3ms;
    text-transform: capitalize;
}
.navbar .main-menu ul li ul li a:hover{
    color: #28282b;
}

.navbar .main-menu ul li ul li a i {
    float: right;
}

.navbar .main-menu ul li ul li ul {
    left: 100%;
    top: 0;
}

.navbar .mega_menu_dropdown {
    position: static !important;
}

.navbar .mega_menu {
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    transition: 0.5s;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 75%);
    padding: 0 15px;
}

.navbar .mega_menu_item {
    width: 20%;
    padding: 30px 20px;
}

.navbar .main-menu ul li .mega_menu_item a {
    padding: 10px 0;
}

.navbar .main-menu ul li .mega_menu_item a:hover {
    color: var(--hover-color);
}

.navbar .mega_menu_item h3 {
    margin-bottom: 15px;
}

.navbar .mega_menu_item img {
    width: 100%;
}

.navbar .mobile_btn {
    display: none;
}
.navbar .main-menu ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 50px;
}
.navbar .main-menu .has_dropdown .has_dropdown .sub_menu{    
    margin-top: 0px;
}
.navbar .main-menu ul li .mega_menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 50px;
    z-index: 11;
    width: 100%;
}

.navbar .main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    margin-top: 4px;
    z-index: 10;
}

.navbar .main-menu ul li:hover>.mega_menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    z-index: 11;
    width: 100%;
}
.navbar .right-menu{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}
.navbar .arrival-menu{
    color: #ffbb00;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
} 
.navbar .outlet-menu{
    color: #ff4a4a;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
}
.category-sidebar{
    width: 240px;
} 
.navbar .right-side{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc( 100% - 240px );
} 
.navbar .main-menu{
    width: 60%;
}
.navbar .right-menu{
    width: 40%;
}
.category-sidebar .dropdown-toggle {
    background-color: #2555D0;
    border: none;
    color: white;
    height: 48px;
    padding: 0 20px 0 15px;
    width: 100%;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
}
.category-sidebar i.ti-menu-2{
    font-size: 20px;
}
.category-sidebar .dropdown-toggle::after{
    position: absolute;
    right: 13px;
}
.category-sidebar span{
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
}
.category-sidebar .toggle-dropdown{
    /* position: relative; min-height: 55vh; */
}
.category-sidebar .main-ul{
    padding: 0 0 0 3px;
}
.category-sidebar .main-menu{
    position: absolute;
    z-index: 10;
    padding: 0;
}
.category-sidebar .dropdown-menu{
    width: 240px;
    border-radius: 0;
    border: none;
    box-shadow: -4px -2px 30px 2px rgba(0, 0, 0, 0.17);
}
.category-sidebar .has_dropdown{
    position: relative;
}
.category-sidebar .has_dropdown a {
    justify-content: space-between;
}
.category-sidebar .main-menu li{
    width: 100%;
}
.category-sidebar .main-menu .has_dropdown{
    padding: 0;
}
.category-sidebar .has_dropdown a,
.category-sidebar .has_dropdown a>div,
.category-sidebar .has_dropdown a >div>  span,
.category-sidebar .has_dropdown a >div> i {
    transition: 200ms !important;
}
.category-sidebar .has_dropdown a:hover{
    background-color: var(--primary);
}
.category-sidebar .has_dropdown a:hover>div,
.category-sidebar .has_dropdown a:hover > div>span, 
.category-sidebar .has_dropdown a:hover > i {
    color: white !important;
}
.category-sidebar .has_dropdown a>div>i {
    background: #f1f1f1;
    color: #28282b;
    width: 27px;
    height: 27px;
    line-height: 27px;
    text-align: center;
    border-radius: 4px;
    margin-right: 7px;
    font-size: 16px;
}
.category-sidebar .has_dropdown a>i {
    font-size: 11px !important;
    opacity: 0.9;
    color: #353535 !important;
}
.category-sidebar .has_dropdown .sub_menu {
    padding: 0 0 0 0 !important;
}   
.category-sidebar .has_dropdown .sub_menu .menu-item{
    padding-left: 10px;
}
.category-sidebar .has_dropdown a>div>span {
    font-size: 13px;
    text-transform: capitalize;
}
.category-sidebar .main-menu a {
    color: #28282b !important;
}
.category-sidebar .main-menu a:hover {
    color: var(--primary) !important;
}
.category-sidebar .has_dropdown>.sub_menu {
    position: absolute;
    left: 100%;
    top: 10px;
}
.category-sidebar .has_dropdown a{
    border-bottom: 1px solid #e4e2e2;
}
/*--------------- NAVBAR CSS END ---------------*/
/*--------------- SLIDER CSS START ---------------*/
.slider-section .container{
    padding-left: 251px;
}
.swiper-container {
    width: calc( 100% - 20px );
    height: 100%;
    margin: 0 0 0 20px;
    padding: 20px 0;
    border-radius: 6px;
}
.swiper-container .slide-image{
    border-radius: 6px;
}

.slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    overflow: hidden;
}

.slide-content {
    position: relative;
    z-index: 2;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* semi-transparent black */
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 10;
    /* max-width: 1200px; */
    /* min-width: 800px; */
    text-align: left;
    min-height: 57.5vh;
    margin-top: 120px;
}

.slide-title {
    font-size: 3rem;
    line-height: 1;
    max-width: 50%;
    white-space: normal;
    word-break: break-word;
    color: #FFF;
    z-index: 100;
    font-family: var(--font);
    font-weight: normal;
}

.slide-desc {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.slide-buttons .btn {
    margin-right: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    transition: 0.3s;
}

.slide-buttons .btn:hover {
    color: white;
    border-color: var(--secondary);
    background-color: var(--secondary);
}

@media (min-width: 45em) {
    .slide-title {
        font-size: 5vw;
        max-width: none;
    }
}

.slide-title span {
    white-space: pre;
    display: inline-block;
    opacity: 0;
}

.slideshow {
    position: relative;
}

.slideshow-pagination {
    position: absolute;
    bottom: 3rem;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: .3s opacity;
    z-index: 10;
}

.slideshow-pagination-item {
    display: flex;
    align-items: center;
}

.slideshow-pagination-item .pagination-number {
    opacity: 0.5;
}

.slideshow-pagination-item:hover,
.slideshow-pagination-item:focus {
    cursor: pointer;
}

.slideshow-pagination-item:last-of-type .pagination-separator {
    width: 0;
}

.slideshow-pagination-item.active .pagination-number {
    opacity: 1;
}

.slideshow-pagination-item.active .pagination-separator {
    width: 10vw;
}

.slideshow-navigation-button {
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    z-index: 1000;
    transition: all .3s ease;
    color: #FFF;
    border-radius: 4px;
    background: var(--primary);
}

.slideshow-navigation-button:hover,
.slideshow-navigation-button:focus {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
}

.slideshow-navigation-button.prev {
    left: 15px;
}

.slideshow-navigation-button.next {
    right: 15px;
}

.pagination-number {
    font-size: 1.8rem;
    color: #FFF;
    font-family: var(--font);
    padding: 0 0.5rem;
}

.pagination-separator {
    display: none;
    position: relative;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    transition: all .3s ease;
}

@media (min-width: 45em) {
    .pagination-separator {
        display: block;
    }
}

.pagination-separator-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    transform-origin: 0 0;
}

.slide-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
}
/*--------------- SLIDER CSS END ---------------*/
/*--------------- SERVICES CSS END ---------------*/
.service-section{
    padding: 60px 0;
}
.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.service-icon i {
    color: var(--primary);
    width: 55px;
    height: 55px;
    line-height: 50px;
    text-align: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
    font-size: 24px;
}
.service-title{
    font-size: 24px;
    font-weight: 600;
}
.service-description {
    font-size: 13px;
    margin-top: 5px;
    color: #6c6767;
}
/*--------------- SERVICES CSS END ---------------*/
/*--------------- FOOTER CSS END ---------------*/
footer {
    background-color: #28282B;
    padding: 40px 20px 20px;
    border-top: 1px solid #e0e0e0;
}

footer .container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;    
    gap: 30px;
}

footer .container .left-side {
    width: 35%;
    margin-right: 5%;
}

footer .container .right-side {
    width: 60%;
    display: flex;
    gap: 30px;
}
footer .container .right-side .footer-section{
    width: 25%;
}
footer .footer-section {
    margin-bottom: 20px;
}

footer .footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: whitesmoke;
}

footer .footer-section ul {
    list-style: none;
    padding: 0;
}

footer .footer-section li {
    margin-bottom: 0px;
}

footer .footer-section a {
    text-decoration: none;
    color: whitesmoke;
    font-size: 13px;
    transition: color 0.3s;
}

footer .footer-section a:hover {
    color: var(--primary);
}

footer .social-section {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

footer .social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

footer .social-icon img{
    /* width: 36px;
    height: 36px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333; */
    width: 16px;
    height: 16px;
    filter: invert(1) brightness(1);
}
footer .download-app img{
    width: 40px;
}
footer .newsletter {
    margin-top: 15px;
}
footer .newsletter, 
footer .payment-getway, 
footer .download-app{
    color: whitesmoke;
}

footer .newsletter input {
    width: 100%;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 4px;
    margin-bottom: 10px;
}
footer .newsletter-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 46px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
footer .newsletter button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0px 15px;    
    cursor: pointer;
    font-size: 14px;
}
footer .newsletter button:hover {
    background-color: var(--red) !important;
}

footer .help-section {
    margin-top: 20px;
}

footer .help-section p {
    color: whitesmoke;
    font-size: 14px;
    margin-bottom: 5px;
}
footer .copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: whitesmoke;
    font-size: 12px;
    line-height: 1.5;
}
/*--------------- FOOTER CSS END ---------------*/
/*--------------- CART SIDEBAR CSS END ---------------*/
.cart-sidebar.offcanvas {
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    border-left: none;
}

.cart-sidebar .offcanvas-header {
    /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
    background: var(--primary);
    color: white;
    padding: 1.5rem;
}

.cart-sidebar .offcanvas-title {
    font-weight: 600;
    font-size: 1.5rem;
}

.cart-sidebar .cart-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.cart-sidebar .cart-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.cart-sidebar .cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: fill;
    border-radius: 8px;
    margin-right: 1rem;
}

.cart-sidebar .cart-item-details {
    flex: 1;
}

.cart-sidebar .cart-item-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.cart-sidebar .cart-item-price {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-sidebar .quantity-controls {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.cart-sidebar .quantity-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-sidebar .quantity-btn:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cart-sidebar .quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    margin: 0 0.5rem;
    font-weight: 600;
}

.cart-sidebar .remove-btn {
    color: var(--gray-color);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0.25rem;
}

.cart-sidebar .remove-btn:hover {
    color: var(--accent-color);
}

.cart-sidebar .cart-summary {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.cart-sidebar .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.cart-sidebar .summary-total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
}

.cart-sidebar .checkout-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cart-sidebar .checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.cart-sidebar .empty-cart {
    text-align: center;
    padding: 2rem 0;
    color: var(--gray-color);
}

.cart-sidebar .empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--border-color);
}

.cart-sidebar .continue-shopping {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.cart-sidebar .continue-shopping:hover {
    text-decoration: underline;
}

.cart-sidebar .discount-badge {
    background-color: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
}

.cart-sidebar .promo-code {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border-color);
}

.cart-sidebar .promo-input {
    display: flex;
    margin-top: 0.5rem;
}

.cart-sidebar .promo-input input {
    flex: 1;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    padding: 0.5rem;
}

.cart-sidebar .promo-input button {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 1rem;
    cursor: pointer;
}

.cart-sidebar .cart-count {
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    position: absolute;
    top: -5px;
    right: -5px;
}

.cart-sidebar .cart-icon {
    position: relative;
    display: inline-block;
}

.cart-sidebar .shipping-progress {
    margin: 1rem 0;
}

.cart-sidebar .progress-bar {
    height: 6px;
    background-color: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.cart-sidebar .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success-color), var(--primary));
    width: 65%;
    border-radius: 3px;
}

.cart-sidebar .shipping-text {
    font-size: 0.8rem;
    color: var(--gray-color);
    margin-top: 0.25rem;
}

.cart-sidebar .free-shipping {
    color: var(--success-color);
    font-weight: 600;
}

.cart-sidebar .cart-item-options {
    font-size: 0.8rem;
    color: var(--gray-color);
    margin-top: 0.25rem;
}

.cart-sidebar .cart-item-option {
    margin-right: 0.75rem;
}

.cart-sidebar .cart-item-option i {
    margin-right: 0.25rem;
}

.cart-sidebar .animate-add {
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.cart-sidebar .btn-close {
    filter: invert(1);
}
/*--------------- CART SIDEBAR CSS END ---------------*/
/*--------------- WISHLIST CSS END ---------------*/
.wishlist-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    min-height: 50vh;
    padding: 2rem 0;
}

.wishlist-page .wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.wishlist-page .wishlist-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wishlist-page .wishlist-title i {
    color: #e53e3e;
}

.wishlist-page .wishlist-count {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

.wishlist-page .wishlist-actions {
    display: flex;
    gap: 1rem;
}

.wishlist-page .wishlist-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wishlist-page .wishlist-btn-primary {
    background: var(--primary);
    color: white;
    border: none;
}

.wishlist-page .wishlist-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.wishlist-page .wishlist-btn-outline {
    background: transparent;
    color: #4a5568;
    border: 1px solid #cbd5e0;
}

.wishlist-page .wishlist-btn-outline:hover {
    background: #f7fafc;
    border-color: #a0aec0;
}
.wishlist-page .wishlist-grid .fa-heart{
    color: deeppink;
}
.wishlist-page .wishlist-grid {
    display: flex;   
    flex-wrap: wrap; 
}
.wishlist-page .wishlist-card-remove {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: pink;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e53e3e;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}
.wishlist-page .wishlist-card-remove:hover {
    background: #e53e3e;
    color: white;
    transform: scale(1.1);
}
.wishlist-page .wishlist-grid .product-card{
    margin: 0 1% 1% 0;
    max-width: 100%;
    width: 15.6%;
}
.wishlist-page .wishlist-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*--------------- WISHLIST CSS END ---------------*/
/*--------------- TRENDING CSS END ---------------*/
.trending-product .banner-part{
    width: 20%;
}
.trending-product .banner-part img {
    background-size: 100% 100%;
    min-height: 455px;
    border-radius: 4px;
}
.trending-product .products-part{
    width: 80%;
}
/*--------------- TRENDING CSS END ---------------*/
/*--------------- CATEGORY CSS END ---------------*/
.category-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.category-slider .swiper-slide {  
    position: relative;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.category-slider .swiper-slide:hover {
    transform: translateY(-5px);
}
.category-item{
    transition: 300ms;
    position: relative;
    width: 100%;
    max-width: 165px;
}
.category-item:hover .img{
    border-color: var(--primary);
} 
.category-item .img {
    height: 160px;
    border: 2px solid #e8e8e8;
    padding: 10px;
    border-radius: 6px;
    transition: 300ms;
}
.brand-slider .category-item .img {
    height: 80px;
    border: 2px solid #e8e8e8;
    padding: 20px 10px;
    border-radius: 6px;
    transition: 300ms;
}
.category-item:hover .text{
    color: var(--primary);
}
.category-item .text{
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    margin-top: 20px;
    color: #28282b;
    transition: 300ms;
}
.category-item .category-badge {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 4px;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    right: 12px;
    top: 12px;    
}
/*--------------- CATEGORY CSS END ---------------*/
/*--------------- HIGHLIGHT ITEM CSS END ---------------*/
.highlight-section .highlight-slider,
.highlight-section .highlight-slider2{
    box-shadow: -4px -2px 30px 2px rgb(0 0 0 / 17%);
    border-radius: 12px;
}
.highlight-section .swiper-slide{
    padding: 40px 25px;
}
.highlight-section .item-img{
    width: 40%;
}
.highlight-section .item-img img {
    padding: 15px 30px;
    border: 1px solid #e8e8e8;
    background: #f1f1f179;
    height: 210px;
    border-radius: 6px;
    box-shadow: -4px -2px 30px 2px rgb(0 0 0 / 7%);
}
.highlight-section .item-info{
    width: 60%;
}
.product-desc.checklist {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.product-desc.checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
}

.product-desc.checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
    background-color: #eaf9ee;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}
.highlight-section .product-name {
    font-size: 20px !important;
}
.highlight-section .price-container {
    margin: 20px 0 10px 0;
}
.highlight-section .product-card {
    max-width: 100%;
    padding: 0;
    border: none;
    box-shadow: none;
}
.highlight-section .product-card .add-to-cart {
    border-radius: 4px;
    width: auto;
    height: auto;
    line-height: initial;
    padding: 10px 20px;
}
.highlight-section .swiper-container-horizontal>.swiper-pagination-bullets,
.highlight-section .swiper-pagination-custom,
.highlight-section .swiper-pagination-fraction {
    right: 10px;
    top: 50%;
    width: auto;
    left: unset;
    bottom: unset;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
/*--------------- HIGHLIGHT ITEM CSS END ---------------*/
/*--------------- POPULAR CSS END ---------------*/
.popular-section .nav-link {
    background: white;
    border-radius: 20px;
    border: 1px solid #e8e8e8;
    margin: 0 10px;
    font-size: 12px;
    color: #2d3748;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap:5px;
}
.popular-section .nav-link.active {
    background: #CEE8FF;
    border-color: #1E96FC;
    color: #2d3748;
    border-radius: 20px;
    margin: 0 10px;
}
.popular-section .nav-link i{
    font-size: 14px;
}
/*--------------- POPULAR CSS END ---------------*/
.cart-item,
.cart-item img,
.cart-item .cart-item-title,
.variation-item,
.variation-item img,
.product-card,
.product-card .product-name,
.product-card .product-image img{
    transition: 300ms;
}
.product-card:hover{
    border-color: var(--primary);
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
}
.variation-item:hover img,
.variation-item.active img{
    transform: scale(1.009);
    border-color: var(--primary);
}
.product-card:hover .product-name{
    color: var(--primary);
}
.product-card:hover .product-image img{
    transform: scale(1.1);
}
.cart-item:hover img{
    transform: scale(1.1);
}
.cart-item:hover .cart-item-title{
    color: var(--primary);
}
.owl-carousel .product-card{
    max-width: 100%;
}
.product-review-card {
    font-family: Arial, sans-serif;
    width: 100%;
    border-radius: 0px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
    margin: 20px auto;    
    box-sizing: border-box;
    border: 1px solid #e8e8e8;
}

.product-review-card .reviewer-section {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
}
.product-review-card .review-content-section{
    padding: 15px;
}

.product-review-card .reviewer-section .user-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
}

.product-review-card .reviewer-section .reviewer-info .reviewer-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 0px;
}

.product-review-card .reviewer-section .reviewer-info .reviewer-role {
    font-size: 11px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    text-align: center;
    color: var(--primary);
    display: inline-block;
    padding: 0 4px;
}

.product-review-card .rating-section {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
}

.product-review-card .rating-section .star-rating {  
    overflow: hidden;
    margin-right: 10px;
    position: relative;
    display: flex;
}

.product-review-card .rating-section .star-rating i{
    color: #ffc107;
}

.product-review-card .rating-section .rating-value {
    font-size: 12px;
    color: white;
    background: #1f8c1f;
    padding: 1px 3px;
    border-radius: 3px;
    line-height: initial;
}

.product-review-card .review-content-section {
    margin-bottom: 0px;
}

.product-review-card .review-content-section .review-text {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 10px;
}

.product-review-card .review-content-section .review-date {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
}

.product-review-card .product-section {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f9f9f9;
    border-top: 1px solid #e8e8e8;
}

.product-review-card .product-section .product-image {
    width: 50px;
    height: 50px;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 10px;
}

.product-review-card .product-section .product-name {
    font-weight: bold;
    font-size: 14px;
    color: #1428a0;
}

.order-tracking-container {
    margin: 0 auto;
    padding: 20px;    
    border-radius: 12px;
}

.order-tracking-container h2 {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.order-tracking-container .search-section {
    display: flex;
    gap: 10px;
    width: 60%;
    margin: 0 auto 30px auto;
}

.order-tracking-container .search-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.order-tracking-container .search-input:focus {
    outline: none;
    border-color: var(--primary);
}

.order-tracking-container .search-button {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.order-tracking-container .search-button:hover {
    background-color: var(--secondary);
}

.order-tracking-container .order-details {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin: 0 auto 30px auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 80%;
}

.order-tracking-container .order-header {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 20px;    
}

.order-tracking-container .order-id {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

.order-tracking-container .order-status {
    background-color: #e8f4ff;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-left: 15px;
}

.order-tracking-container .order-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.order-tracking-container .info-item {
    display: flex;
    flex-direction: column;
}

.order-tracking-container .info-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.order-tracking-container .info-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
}

.order-tracking-container .progress-container {
    margin: 40px auto;
    width: 70%;
}

.order-tracking-container .progress-bar {
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    position: relative;
    margin-bottom: 30px;
}

.order-tracking-container .progress-fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: 3px;
    width: 75%;
    transition: width 0.5s ease;
}

.order-tracking-container .progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.order-tracking-container .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.order-tracking-container .step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.order-tracking-container .step.active .step-icon {
    background-color: var(--primary);
    color: white;
}

.order-tracking-container .step.completed .step-icon {
    background-color: var(--primary);
    color: white;
}

.order-tracking-container .step-label {
    font-size: 14px;
    text-align: center;
    color: #666;
}

.order-tracking-container .step.active .step-label {
    color: var(--primary);
    font-weight: 500;
}

.order-tracking-container .step.completed .step-label {
    color: var(--secondary);
    font-weight: 500;
}

.order-tracking-container .order-items h3,
.order-tracking-container h3.secondary {
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.order-tracking-container .item-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-tracking-container .item {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.order-tracking-container .item-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background-color: #e0e0e0;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.order-tracking-container .item-details {
    flex: 1;
}

.order-tracking-container .item-name {
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--secondary);
}

.order-tracking-container .item-price {
    color: #666;
    font-size: 14px;
}

.order-tracking-container .item-quantity {
    color: #666;
    font-size: 14px;
}

.order-tracking-container .support-section {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.order-tracking-container .support-text {
    color: #666;
    margin-bottom: 15px;
}

.order-tracking-container .support-button {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.order-tracking-container .support-button:hover {
    background-color: var(--primary);
    color: white;
}

@media (max-width: 600px) {
    .order-tracking-container {
        padding: 15px;
    }

    .order-tracking-container .search-section {
        flex-direction: column;
    }

    .order-tracking-container .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .order-tracking-container .progress-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .order-tracking-container .step {
        flex: 1 0 40%;
    }
}
.order-confirmation-container {    
    margin: 40px auto;
    padding: 0 20px;
}

.order-confirmation-container .confirmation-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    color: white;
    box-shadow: 0 6px 15px rgba(36, 86, 209, 0.3);
}

.order-confirmation-container .confirmation-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: white;
}

.order-confirmation-container .confirmation-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.order-confirmation-container .confirmation-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.order-confirmation-container .order-summary {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.order-confirmation-container .section-title {
    color: var(--secondary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.order-confirmation-container .order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.order-confirmation-container .detail-item {
    display: flex;
    flex-direction: column;
}

.order-confirmation-container .detail-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.order-confirmation-container .detail-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
}

.order-confirmation-container .order-items {
    margin-top: 30px;
}

.order-confirmation-container .item-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-confirmation-container .item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.2s;
}

.order-confirmation-container .item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.order-confirmation-container .item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.order-confirmation-container .item-details {
    flex: 1;
}

.order-confirmation-container .item-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary);
}

.order-confirmation-container .item-price {
    color: #666;
    font-size: 14px;
}

.order-confirmation-container .item-quantity {
    color: #666;
    font-size: 14px;
}

.order-confirmation-container .price-summary {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.order-confirmation-container .price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eaeaea;
}

.order-confirmation-container .price-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary);
}

.order-confirmation-container .shipping-info {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.order-confirmation-container .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.order-confirmation-container .info-card {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.order-confirmation-container .info-card-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary);
}

.order-confirmation-container .info-card-content {
    color: #555;
    line-height: 1.5;
}

.order-confirmation-container .next-steps {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.order-confirmation-container .steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-confirmation-container .step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.order-confirmation-container .step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.order-confirmation-container .step-content {
    flex: 1;
}

.order-confirmation-container .step-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary);
}

.order-confirmation-container .step-description {
    color: #666;
    font-size: 14px;
}

.order-confirmation-container .action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.order-confirmation-container .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.order-confirmation-container .btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
}

.order-confirmation-container .btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.order-confirmation-container .btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.order-confirmation-container .btn-secondary:hover {
    background-color: #f0f5ff;
    transform: translateY(-2px);
}

.order-confirmation-container .confirmation-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
    color: #666;
    font-size: 14px;
}

@media (max-width: 600px) {
    .order-confirmation-container {
        margin: 20px auto;
        padding: 0px;
    }

    .order-confirmation-container .confirmation-header {
        padding: 15px;
        margin-bottom: 20px;
    }

    .order-confirmation-container .confirmation-title {
        font-size: 24px;
    }

    .order-confirmation-container .order-details {
        grid-template-columns: 1fr;
    }

    .order-confirmation-container .info-grid {
        grid-template-columns: 1fr;
    }

    .order-confirmation-container .action-buttons {
        flex-direction: column;
    }

    .order-confirmation-container .btn {
        justify-content: center;
    }
}
.auth-container {    
    --light-bg: #f5f7fa;
    --border-color: #eaeaea;
    --text-light: #666;
    display: flex;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: var(--light-bg);
    overflow: hidden;
}

.auth-container .auth-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

.auth-container .login-section {
    background-color: white;
    border-right: 1px solid var(--border-color);
}

.auth-container .register-section {
    background-color: white;
}

.auth-container .auth-form {
    width: 100%;
    max-width: 400px;
}

.auth-container .form-title {
    color: var(--secondary);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.auth-container .form-subtitle {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.5;
}

.auth-container .form-group {
    margin-bottom: 20px;
}

.auth-container .form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary);
    font-weight: 500;
}

.auth-container .form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.auth-container .form-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(36, 86, 209, 0.2);
}

.auth-container .form-button {
    width: 100%;
    padding: 12px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.auth-container .form-button:hover {
    background-color: var(--secondary);
}

.auth-container .form-button.secondary {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    margin-top: 10px;
}

.auth-container .form-button.secondary:hover {
    background-color: #f0f4ff;
}

.auth-container .form-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.auth-container .form-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

.auth-container .form-link:hover {
    text-decoration: underline;
}

.auth-container .divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.auth-container .divider-line {
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
}

.auth-container .divider-text {
    padding: 0 15px;
    color: var(--text-light);
    font-size: 14px;
}

.auth-container .social-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.auth-container .social-button {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.auth-container .social-button:hover {
    background-color: #f5f5f5;
}

.auth-container .social-icon {
    width: 20px;
    height: 20px;
}

.auth-container .terms-text {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    margin-top: 20px;
}

.auth-container .success-message {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
    color: #2e7d32;
    text-align: center;
}

.auth-container .page-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
}

.auth-container .back-icon {
    margin-right: 8px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-container .login-section {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}
.customer-profile {
    --primary: #2456D1;
    --secondary: #082462;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    min-height: 100vh;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
}

.customer-profile .sidebar {
    width: 260px;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 10px 0 30px 0;
    display: flex;
    flex-direction: column;
}

.customer-profile .sidebar-header {
    padding: 0 25px 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.customer-profile .sidebar-header h2 {
    color: var(--secondary);
    margin: 0;
    font-size: 22px;
}

.customer-profile .sidebar-nav {
    flex: 1;
}

.customer-profile .nav-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.customer-profile .nav-item:hover {
    background-color: #f8f9fd;
    color: var(--primary);
}

.customer-profile .nav-item.active {
    background-color: #f0f4ff;
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
}

.customer-profile .nav-item i {
    margin-right: 12px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.customer-profile .logout-item {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.customer-profile .main-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.customer-profile .content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.customer-profile .content-header h1 {
    color: var(--secondary);
    margin: 0;
    font-size: 28px;
}

.customer-profile .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-profile .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.customer-profile .content-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 25px;
}

.customer-profile .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.customer-profile .card-header h2 {
    color: var(--secondary);
    margin: 0;
    font-size: 20px;
}

.customer-profile .btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
}

.customer-profile .btn:hover {
    background-color: var(--secondary);
}

.customer-profile .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.customer-profile .stat-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
}

.customer-profile .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

.customer-profile .stat-label {
    color: #666;
    font-size: 14px;
}

.customer-profile .order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.customer-profile .order-item:last-child {
    border-bottom: none;
}

.customer-profile .order-info h3 {
    margin: 0 0 5px;
    color: var(--secondary);
}

.customer-profile .order-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.customer-profile .order-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.customer-profile .status-delivered {
    background-color: #e6f7ee;
    color: #0c9d58;
}

.customer-profile .status-processing {
    background-color: #fff4e5;
    color: #ff9800;
}

.customer-profile .status-shipped {
    background-color: #e6f3ff;
    color: #2196f3;
}

.customer-profile .address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.customer-profile .address-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.customer-profile .address-card.default {
    border-color: var(--primary);
    background-color: #f8fbff;
}

.customer-profile .address-default-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.customer-profile .address-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.customer-profile .action-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 14px;
}

.customer-profile .wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.customer-profile .wishlist-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
}

.customer-profile .wishlist-item:hover {
    transform: translateY(-5px);
}

.customer-profile .wishlist-img {
    height: 150px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.customer-profile .wishlist-details {
    padding: 15px;
}

.customer-profile .wishlist-details h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.customer-profile .wishlist-price {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.customer-profile .wishlist-actions {
    display: flex;
    justify-content: space-between;
}

.customer-profile .account-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.customer-profile .form-group {
    margin-bottom: 20px;
}

.customer-profile .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.customer-profile .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box;
}

.customer-profile .form-control:focus {
    border-color: var(--primary);
    outline: none;
}

.customer-profile .form-full-width {
    grid-column: 1 / -1;
}
@media (max-width: 768px) {
    .customer-profile {
        flex-direction: column;
    }

    .customer-profile .sidebar {
        width: 100%;
        padding: 0px 0;
    }

    .customer-profile .sidebar-nav {
        display: flex;
        overflow-x: auto;
    }

    .customer-profile .nav-item {
        padding: 10px 15px;
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
    }

    .customer-profile .nav-item.active {
        border-left: none;
        border-bottom-color: var(--primary);
    }

    .customer-profile .logout-item {
        margin-top: 0;
        border-top: none;
        padding-top: 0;
    }
}
/* My Account Specific Styles */
.customer-profile .account-info {
    padding: 10px 0;
}

.customer-profile .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.customer-profile .info-item label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
    display: block;
}

.customer-profile .info-item p {
    margin: 0;
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.customer-profile .account-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.customer-profile .form-group {
    margin-bottom: 20px;
}

.customer-profile .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.customer-profile .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.customer-profile .form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(36, 86, 209, 0.1);
}

.customer-profile .form-full-width {
    grid-column: 1 / -1;
}

.customer-profile .form-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.customer-profile .btn-secondary {
    background-color: #6c757d;
}

.customer-profile .btn-secondary:hover {
    background-color: #5a6268;
}

.customer-profile .btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.customer-profile .btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.customer-profile .security-settings {
    padding: 10px 0;
}

.customer-profile .security-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.customer-profile .security-item:last-child {
    border-bottom: none;
}

.customer-profile .security-info h3 {
    margin: 0 0 5px;
    color: var(--secondary);
    font-size: 16px;
}

.customer-profile .security-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.customer-profile .notification-settings {
    padding: 10px 0;
}

.customer-profile .notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.customer-profile .notification-item:last-child {
    border-bottom: none;
}

.customer-profile .notification-info h3 {
    margin: 0 0 5px;
    color: var(--secondary);
    font-size: 16px;
}

.customer-profile .notification-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.customer-profile .toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.customer-profile .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.customer-profile .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.customer-profile .toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.customer-profile input:checked+.toggle-slider {
    background-color: var(--primary);
}

.customer-profile input:checked+.toggle-slider:before {
    transform: translateX(30px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .customer-profile .account-form {
        grid-template-columns: 1fr;
    }

    .customer-profile .security-item,
    .customer-profile .notification-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .customer-profile .security-item button,
    .customer-profile .notification-item .toggle-switch {
        align-self: flex-end;
    }
}
/* My Account Specific Styles */
.customer-profile .account-info {
    padding: 10px 0;
}

.customer-profile .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.customer-profile .info-item label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
    display: block;
}

.customer-profile .info-item p {
    margin: 0;
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.customer-profile .account-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.customer-profile .form-group {
    margin-bottom: 20px;
}

.customer-profile .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.customer-profile .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.customer-profile .form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(36, 86, 209, 0.1);
}

.customer-profile .form-full-width {
    grid-column: 1 / -1;
}

.customer-profile .form-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.customer-profile .btn-secondary {
    background-color: #6c757d;
}

.customer-profile .btn-secondary:hover {
    background-color: #5a6268;
}

.customer-profile .btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.customer-profile .btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.customer-profile .security-settings {
    padding: 10px 0;
}

.customer-profile .security-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.customer-profile .security-item:last-child {
    border-bottom: none;
}

.customer-profile .security-info h3 {
    margin: 0 0 5px;
    color: var(--secondary);
    font-size: 16px;
}

.customer-profile .security-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.customer-profile .notification-settings {
    padding: 10px 0;
}

.customer-profile .notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.customer-profile .notification-item:last-child {
    border-bottom: none;
}

.customer-profile .notification-info h3 {
    margin: 0 0 5px;
    color: var(--secondary);
    font-size: 16px;
}

.customer-profile .notification-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.customer-profile .toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.customer-profile .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.customer-profile .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.customer-profile .toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.customer-profile input:checked+.toggle-slider {
    background-color: var(--primary);
}

.customer-profile input:checked+.toggle-slider:before {
    transform: translateX(30px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .customer-profile .account-form {
        grid-template-columns: 1fr;
    }

    .customer-profile .security-item,
    .customer-profile .notification-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .customer-profile .security-item button,
    .customer-profile .notification-item .toggle-switch {
        align-self: flex-end;
    }
}
.customer-profile .wishlist-page {
    background: #fff;
    padding: 20px 10px;
    border-radius: 4px;
}
.customer-profile .wishlist-page .wishlist-grid .product-card {    
    width: 100%;
}
/* My Orders Specific Styles */
.customer-profile .orders-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.customer-profile .search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.customer-profile .search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.customer-profile .search-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box;
}

.customer-profile .search-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(36, 86, 209, 0.1);
}

.customer-profile .filter-controls {
    display: flex;
    gap: 15px;
}

.customer-profile .filter-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
}

.customer-profile .filter-select:focus {
    border-color: var(--primary);
    outline: none;
}

.customer-profile .orders-count {
    color: #666;
    font-size: 14px;
}

.customer-profile .orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.customer-profile .order-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.customer-profile .order-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.customer-profile .order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.customer-profile .order-meta {
    flex: 1;
}

.customer-profile .order-number {
    font-weight: 600;
    color: var(--secondary);
    font-size: 16px;
    margin-bottom: 5px;
}

.customer-profile .order-date {
    color: #666;
    font-size: 14px;
}

.customer-profile .order-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.customer-profile .status-delivered {
    background-color: #e6f7ee;
    color: #0c9d58;
}

.customer-profile .status-processing {
    background-color: #fff4e5;
    color: #ff9800;
}

.customer-profile .status-shipped {
    background-color: #e6f3ff;
    color: #2196f3;
}

.customer-profile .status-cancelled {
    background-color: #ffe6e6;
    color: #f44336;
}

.customer-profile .order-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.customer-profile .order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #fafafa;
    border-radius: 6px;
}

.customer-profile .item-image {
    flex-shrink: 0;
}

.customer-profile .product-img-placeholder {
    width: 60px;
    height: 60px;
    background-color: #e9ecef;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.customer-profile .item-details {
    flex: 1;
}

.customer-profile .item-details h4 {
    margin: 0 0 5px;
    color: var(--secondary);
    font-size: 15px;
}

.customer-profile .item-details p {
    margin: 0 0 8px;
    color: #666;
    font-size: 13px;
}

.customer-profile .item-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.customer-profile .item-quantity {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.customer-profile .order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.customer-profile .order-total {
    color: var(--secondary);
    font-size: 16px;
}

.customer-profile .order-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.customer-profile .btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.customer-profile .btn-outline:hover {
    background-color: var(--hover);
    border-color: var(--hover);
    color: white;
}

.customer-profile .pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.customer-profile .pagination-btn {
    padding: 10px 15px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.customer-profile .pagination-btn:hover:not(.disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

.customer-profile .pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.customer-profile .pagination-pages {
    display: flex;
    gap: 8px;
}

.customer-profile .page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

.customer-profile .page-number:hover:not(.active) {
    background-color: #f0f4ff;
    color: var(--primary);
}

.customer-profile .page-number.active {
    background-color: var(--primary);
    color: white;
}

.customer-profile .page-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .customer-profile .orders-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .customer-profile .filter-controls {
        justify-content: space-between;
    }

    .customer-profile .order-header {
        flex-direction: row;
        gap: 10px;
    }

    .customer-profile .order-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .customer-profile .order-actions {
        justify-content: center;
    }

    .customer-profile .order-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .customer-profile .pagination {
        flex-direction: column;
        gap: 15px;
    }

    .customer-profile .pagination-pages {
        order: -1;
    }
}

/* Order Details Specific Styles */
.customer-profile .header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.customer-profile .btn-back {
    background: none;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    transition: all 0.2s;
}

.customer-profile .btn-back:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.customer-profile .order-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.customer-profile .order-basic-info h2 {
    margin: 0 0 5px;
    color: var(--secondary);
}

.customer-profile .order-date {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.customer-profile .order-status-large {
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.customer-profile .order-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.customer-profile .summary-item {
    text-align: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.customer-profile .summary-item label {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.customer-profile .summary-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.customer-profile .shipping-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.customer-profile .shipping-address h3,
.customer-profile .delivery-timeline h3 {
    margin: 0 0 15px;
    color: var(--secondary);
    font-size: 18px;
}

.customer-profile .address-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.customer-profile .address-details p {
    margin: 0 0 8px;
}

.customer-profile .address-details p:last-child {
    margin-bottom: 0;
}

.customer-profile .contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    margin-top: 15px !important;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.customer-profile .timeline {
    position: relative;
    padding-left: 30px;
}

.customer-profile .timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e9ecef;
}

.customer-profile .timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.customer-profile .timeline-item:last-child {
    margin-bottom: 0;
}

.customer-profile .timeline-marker {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e9ecef;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #e9ecef;
}

.customer-profile .timeline-item.completed .timeline-marker {
    background-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary);
}

.customer-profile .timeline-content {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.customer-profile .timeline-title {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
}

.customer-profile .timeline-date,
.customer-profile .timeline-time {
    font-size: 13px;
    color: #666;
    display: inline-block;
    margin-right: 10px;
}

.customer-profile .timeline-desc {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

.customer-profile .order-items-detailed {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.customer-profile .order-item-detailed {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.customer-profile .product-img-placeholder-large {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    border: 1px solid #e9ecef;
}

.customer-profile .item-info h3 {
    margin: 0 0 8px;
    color: var(--secondary);
    font-size: 18px;
}

.customer-profile .item-sku {
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
}

.customer-profile .item-attributes {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.customer-profile .attribute {
    padding: 4px 8px;
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
}

.customer-profile .item-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-profile .stars {
    color: #ffc107;
}

.customer-profile .rating-text {
    font-size: 13px;
    color: #666;
}

.customer-profile .item-pricing {
    text-align: right;
    min-width: 200px;
}

.customer-profile .quantity-price {
    margin-bottom: 15px;
}

.customer-profile .quantity {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.customer-profile .price {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.customer-profile .item-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.customer-profile .payment-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.customer-profile .payment-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.customer-profile .payment-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.customer-profile .payment-row:last-child {
    border-bottom: none;
}

.customer-profile .payment-row.total {
    font-size: 18px;
    padding-top: 15px;
    border-top: 2px solid #dee2e6;
}

.customer-profile .payment-method h3 {
    margin: 0 0 15px;
    color: var(--secondary);
}

.customer-profile .payment-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.customer-profile .card-icon {
    font-size: 32px;
    color: var(--primary);
}

.customer-profile .card-type {
    font-weight: 600;
    margin-bottom: 5px;
}

.customer-profile .card-number {
    color: #666;
    font-size: 14px;
}

.customer-profile .billing-address h4 {
    margin: 0 0 10px;
    color: var(--secondary);
}

.customer-profile .order-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.customer-profile .action-card {
    background: none;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.customer-profile .action-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(36, 86, 209, 0.1);
}

.customer-profile .action-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
    font-size: 24px;
}

.customer-profile .action-text h3 {
    margin: 0 0 8px;
    color: var(--secondary);
    font-size: 16px;
}

.customer-profile .action-text p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .customer-profile .header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .customer-profile .order-summary-header {
        flex-direction: column;
        gap: 15px;
    }

    .customer-profile .shipping-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .customer-profile .order-item-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .customer-profile .item-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .customer-profile .payment-summary {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .customer-profile .order-actions-grid {
        grid-template-columns: 1fr;
    }
}
.product-popup {
    border-radius: 16px;
    width: 100%;
    overflow: hidden;
    z-index: 999;
    animation: popupFadeIn 0.4s ease-out;    
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Close button */
.product-popup .popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-popup .popup-close:hover {
    background: white;
    transform: rotate(90deg);
}

.product-popup .popup-close::before,
.product-popup .popup-close::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: #333;
}

.product-popup .popup-close::before {
    transform: rotate(45deg);
}

.product-popup .popup-close::after {
    transform: rotate(-45deg);
}

/* Inner content layout */
.product-popup .popup-content {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .product-popup .popup-content {
        flex-direction: row;
    }
}

/* Product image section */
.product-popup .product-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .product-popup .product-image {
        width: 45%;
        height: auto;
    }
}

.product-popup .product-image .image-placeholder {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.product-popup .product-image .image-placeholder::before {
    content: '📱';
    font-size: 80px;
}

/* Product info section */
.product-popup .product-info {
    padding: 30px;
    width: 100%;
}

/* Product title */
.product-popup .product-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
    line-height: 1.2;
}

/* Price section */
.product-popup .product-price {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-popup .product-price .original-price {
    color: #a0aec0;
    font-size: 16px;
    text-decoration: line-through;
}

.product-popup .product-price .sale-price {
    color: #e53e3e;
    font-size: 20px;
    font-weight: 700;
}

/* Selected variations */
.product-popup .selected-options {
    margin-bottom: 25px;
    padding: 16px;
    background: #f7fafc;
    border-radius: 0px;
    border-left: 4px solid #a0d4ff;
}

.product-popup .selected-options .option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-popup .selected-options .option-item {
    display: flex;
    align-items: center;
}

.product-popup .selected-options .option-label {
    font-weight: 600;
    margin-right: 8px;
    color: #4a5568;
    text-transform: uppercase;
    font-size: 14px;
}

.product-popup .selected-options .option-value {
    font-weight: 700;
    color: #2d3748;
}

/* Variation options */
.product-popup .variation-options {
    margin-bottom: 25px;
}

.product-popup .variation-options .option-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d3748;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.product-popup .variation-options .option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

/* Color variations */
.product-popup .variation-options .color-option {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    position: relative;
}

.product-popup .variation-options .color-option.selected {
    border-color: #2d3748;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-popup .variation-options .color-option .color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: block;
}

/* Storage variations */
.product-popup .variation-options .storage-option {
    padding: 5px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    color: #4a5568;
}

.product-popup .variation-options .storage-option.selected {
    background: #2d3748;
    color: white;
    border-color: #2d3748;
}

.product-popup .variation-options .storage-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Clear button */
.product-popup .clear-options {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.product-popup .clear-options .clear-btn {
    color: #718096;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    font-weight: 500;
}

.product-popup .clear-options .clear-btn:hover {
    color: #e53e3e;
}

/* Stock info */
.product-popup .stock-info {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-popup .stock-info .stock-badge {
    background: #c6f6d5;
    color: #22543d;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Quantity and buttons */
.product-popup .action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.product-popup .action-buttons .quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.product-popup .action-buttons .quantity-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7fafc;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.product-popup .action-buttons .quantity-btn:hover {
    background: #edf2f7;
}

.product-popup .action-buttons .quantity-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-popup .action-buttons .quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    background: white;
}

/* Action buttons */
.product-popup .action-buttons .add-to-cart,
.product-popup .action-buttons .buy-now {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 14px;
}

.product-popup .action-buttons .add-to-cart {
    background: #2d3748;
    color: white;
}

.product-popup .action-buttons .add-to-cart:hover {
    background: #4a5568;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-popup .action-buttons .buy-now {
    background: #e53e3e;
    color: white;
}

.product-popup .action-buttons .buy-now:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(229, 62, 62, 0.3);
}

.product-popup .action-buttons .cart-count {
    background: #e53e3e;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

/* Additional buttons */
.product-popup .secondary-actions {
    display: flex;
    gap: 12px;
}

.product-popup .secondary-actions .action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7fafc;
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid #e2e8f0;
}

.product-popup .secondary-actions .action-btn:hover {
    background: #edf2f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Alert message */
.product-popup .selection-alert {
    background: #fffaf0;
    border-left: 4px solid #dd6b20;
    padding: 14px 16px;
    margin-top: 20px;
    border-radius: 0px;
    font-size: 14px;
    color: #744210;
}

.product-popup .selection-alert strong {
    color: #dd6b20;
}
.about-page {
    line-height: 1.6;
    color: #333;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-page h1 {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.about-page h2 {
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.about-page p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-page .hero-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.about-page .hero-content {
    flex: 1;
}

.about-page .hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-page .hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-page .values-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.about-page .value-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.about-page .value-card:hover {
    transform: translateY(-5px);
}

.about-page .value-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-page .value-card h3 i {
    color: var(--primary);
}

.about-page .team-section {
    margin: 60px 0;
}

.about-page .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-page .team-member {
    text-align: center;
}

.about-page .member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background-color: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 3rem;
}

.about-page .member-name {
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 5px;
}

.about-page .member-role {
    color: var(--primary);
    margin-bottom: 15px;
}

.about-page .cta-section {
    background-color: var(--secondary);
    color: white;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
}

.about-page .cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.about-page .cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.about-page .cta-button:hover {
    background-color: #1a45b0;
}

@media (max-width: 768px) {
    .about-page .hero-section {
        flex-direction: column;
    }
}
.contact-page {    
    line-height: 1.6;
    color: #333;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-page h1 {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.contact-page .page-description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

.contact-page .contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-page .contact-info h2 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-page .contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-page .contact-icon {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-page .contact-details h3 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-page .contact-details p {
    margin: 0;
    color: #666;
}

.contact-page .contact-form {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.contact-page .contact-form h2 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-page .form-group {
    margin-bottom: 20px;
}

.contact-page .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
}

.contact-page .form-group input,
.contact-page .form-group textarea,
.contact-page .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus,
.contact-page .form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(36, 86, 209, 0.2);
}

.contact-page .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-page .submit-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.contact-page .submit-button:hover {
    background-color: var(--secondary);
}

.contact-page .office-locations {
    margin-top: 60px;
}

.contact-page .office-locations h2 {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.contact-page .locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-page .location-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-page .location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-page .location-icon {
    background-color: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

.contact-page .location-card h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.contact-page .location-card p {
    margin: 5px 0;
    color: #666;
}

.contact-page .faq-section {
    margin-top: 60px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.contact-page .faq-section h2 {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-page .faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}

.contact-page .faq-question {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-page .faq-answer {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-page .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-page .contact-info,
    .contact-page .contact-form {
        padding: 20px;
    }
}
.faq-page {
    color: #333;
    margin: 0 auto;
    padding: 40px 20px;
}

.faq-page h1 {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.faq-page .page-description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.faq-page .search-section {
    margin-bottom: 40px;
    text-align: center;
}

.faq-page .search-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.faq-page .search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-page .search-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(36, 86, 209, 0.1);
}

.faq-page .search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.2rem;
}

.faq-page .categories-section {
    margin-bottom: 40px;
}

.faq-page .categories-title {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.faq-page .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.faq-page .category-button {
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--secondary);
}

.faq-page .category-button:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-page .category-button.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.faq-page .faq-section {
    margin-bottom: 50px;
}

.faq-page .section-title {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.8rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.faq-page .faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-page .faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.faq-page .faq-question {
    background-color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary);
    transition: background-color 0.3s;
}

.faq-page .faq-question:hover {
    background-color: #f8f9fa;
}

.faq-page .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-page .faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-page .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8f9fa;
}

.faq-page .faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-page .faq-answer p {
    margin: 0;
    color: #555;
}

.faq-page .faq-answer ul {
    margin: 10px 0;
    padding-left: 20px;
}

.faq-page .faq-answer li {
    margin-bottom: 8px;
}

.faq-page .contact-prompt {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
    border-left: 4px solid var(--primary);
}

.faq-page .contact-prompt h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.faq-page .contact-prompt p {
    margin-bottom: 20px;
    color: #666;
}

.faq-page .contact-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.faq-page .contact-button:hover {
    background-color: var(--secondary);
}

.faq-page .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.faq-page .back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.faq-page .back-to-top:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .faq-page .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
    .faq-page .category-button {        
        border-radius: 4px;
        padding: 5px 15px;
        font-size: 14px;
    }
    .faq-page .faq-question {
        padding: 5px 10px;
        font-size: 14px;
    }
    .faq-page .faq-section {
        margin-bottom: 30px;
    }
    .faq-page .faq-answer {
        padding: 0 15px;
    }
    .faq-page .faq-item {
        margin-bottom: 5px;
    }
    .faq-page .faq-item.active .faq-answer {
        padding: 15px;
        font-size: 13px;
    }
    .faq-page .section-title {        
        margin-bottom: 0px;
        padding-bottom: 10px;
        font-size: 20px !important;
        border: none;
    }
    .faq-page .categories-grid {        
        gap: 7px;
        margin-bottom: 10px;
    }
    .faq-page .categories-section {
        margin-bottom: 20px;
    }
}
.cart-section {
    --light-bg: #f8f9fa;
    --border-color: #eaeaea;
    --text-dark: #333;
    --text-light: #666;
    --success: #28a745;
    margin: 0 auto;
    padding: 30px 20px;
    color: var(--text-dark);
}

.cart-section .cart-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cart-section .cart-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.cart-section .cart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cart-section .products-column {
    flex: 1;
    min-width: 300px;
}

.cart-section .cart-item {
    background: white;
    border-radius: 12px;
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-section .cart-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.cart-section .cart-item-content {
    display: flex;
    padding: 20px;
}

.cart-section .item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.cart-section .item-details {
    flex: 1;
    position: relative;
}

.cart-section .item-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}

.cart-section .item-name a {
    color: inherit;
    text-decoration: none;
}

.cart-section .item-name a:hover {
    color: var(--primary);
}

.cart-section .item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.cart-section .quantity-controls {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 15px;
}

.cart-section .quantity-button {
    width: 36px;
    height: 36px;
    border-radius: 0%;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.cart-section .quantity-button.minus{
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.cart-section .quantity-button.plus{
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.cart-section .quantity-button:hover {
    background: var(--secondary);
}

.cart-section .quantity-input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 0px;
    font-size: 16px;
    font-weight: 600;
}

.cart-section .item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-section .remove-btn {
    background: none;
    border: none;
    color: #ff4d4f;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
    padding: 0;
    position: absolute;
    top: 7px;
    right: 7px;
}

.cart-section .remove-btn:hover {
    color: #d9363e;
}

.cart-section .remove-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.cart-section .item-subtotal {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
}

.cart-section .coupon-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-section .coupon-area{
    width: 80%;
}

.cart-section .coupon-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary);
}

.cart-section .coupon-input-group {
    display: flex;
    gap: 10px;
    position: relative;
}

.cart-section .coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;    
}

.cart-section .coupon-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.cart-section .coupon-btn:hover {
    background: var(--secondary);
}

.cart-section .update-cart-btn {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 34px;
    width: 20%;    
}

.cart-section .update-cart-btn:hover {
    background: var(--primary);
    color: white;
}

.cart-section .summary-column {
    flex: 0 0 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 25px;
    align-self: flex-start;
}

.cart-section .summary-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.cart-section .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
}

.cart-section .summary-label {
    color: var(--text-light);
}

.cart-section .summary-value {
    font-weight: 600;
    color: var(--text-dark);
}

.cart-section .summary-total {
    font-weight: 700;
    font-size: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 10px;
    color: var(--secondary);
}

.cart-section .checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 20px;
}

.cart-section .checkout-btn:hover {
    background: var(--secondary);
}

.cart-section .empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.cart-section .empty-cart-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: #ddd;
}

.cart-section .continue-shopping {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.cart-section .continue-shopping:hover {
    background: var(--secondary);
}

@media (max-width: 768px) {
    .cart-section .cart-container {
        flex-direction: column;
    }

    .cart-section .summary-column {
        width: 100%;
    }

    .cart-section .cart-item-content {
        flex-direction: column;
        position: relative;
    }

    .cart-section .item-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
.checkout-section {
    --light-bg: #f8f9fa;
    --border-color: #eaeaea;
    --text-dark: #333;
    --text-light: #666;
    --success: #28a745;
    margin: 0 auto;
    padding: 30px 20px;
    color: var(--text-dark);
}

.checkout-section .checkout-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.checkout-section .checkout-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.checkout-section .checkout-container {
    display: flex;
    gap: 30px;
}

.checkout-section .billing-column {
    flex: 0 0 55%;
}

.checkout-section .order-column {
    flex: 0 0 45%;
}

.checkout-section .form-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 25px;
}

.checkout-section .form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.checkout-section .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.checkout-section .form-group {
    flex: 1;
    min-width: 200px;
}

.checkout-section .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.checkout-section .required {
    color: #e74c3c;
}

.checkout-section .optional {
    color: var(--text-light);
    font-size: 0.9em;
}

.checkout-section .form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.checkout-section .form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(36, 86, 209, 0.1);
}

.checkout-section .form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    background-color: white;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.checkout-section .form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(36, 86, 209, 0.1);
}

.checkout-section .form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    min-height: 100px;
    resize: vertical;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.checkout-section .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(36, 86, 209, 0.1);
}

.checkout-section .order-summary {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.checkout-section .order-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.checkout-section .order-items {
    margin-bottom: 20px;
}

.checkout-section .order-item {
    display: flex;
    align-items: start;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.checkout-section .order-item:last-child {
    border-bottom: none;
}

.checkout-section .item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
}

.checkout-section .item-details {
    flex: 1;
}

.checkout-section .item-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.checkout-section .item-quantity {
    color: var(--text-light);
    font-size: 14px;
}

.checkout-section .item-price {
    font-weight: 700;
    color: var(--primary);
}

.checkout-section .order-totals {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.checkout-section .total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 16px;
}

.checkout-section .total-label {
    color: var(--text-light);
}

.checkout-section .total-value {
    font-weight: 600;
    color: var(--text-dark);
}

.checkout-section .grand-total {
    font-weight: 700;
    font-size: 18px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 10px;
    color: var(--secondary);
}

.checkout-section .payment-methods {
    margin-top: 25px;
}

.checkout-section .payment-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary);
}

.checkout-section .payment-option {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.checkout-section .payment-option:hover {
    border-color: var(--primary);
}

.checkout-section .payment-option.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(36, 86, 209, 0.2);
}

.checkout-section .payment-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 10px;
}

.checkout-section .payment-radio {
    margin-right: 10px;
    accent-color: var(--primary);
}

.checkout-section .payment-description {
    font-size: 14px;
    color: var(--text-light);
    margin-left: 24px;
}

.checkout-section .terms-section {
    margin-top: 20px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
}

.checkout-section .terms-text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.checkout-section .terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkout-section .checkbox-input {
    margin-top: 3px;
    accent-color: var(--primary);
}

.checkout-section .checkbox-label {
    font-size: 14px;
    color: var(--text-dark);
}

.checkout-section .place-order-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

.checkout-section .place-order-btn:hover {
    background: var(--secondary);
}

@media (max-width: 768px) {
    .checkout-section .checkout-container {
        flex-direction: column;
    }

    .checkout-section .order-column {
        width: 100%;
    }

    .checkout-section .form-row {
        flex-direction: column;
    }

    .checkout-section .form-group {
        width: 100%;
    }
}

.blog-details {    
    line-height: 1.6;
    color: var(--text-color);
    margin: 0 auto;
    padding: 2rem;
}

.blog-details .blog-header {
    margin-bottom: 2rem;
}

.blog-details .blog-category {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-details .blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
    line-height: 1.2;
}

.blog-details .blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.blog-details .blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-details .blog-meta-item i {
    color: var(--primary);
}

.blog-details .blog-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-details .blog-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.blog-details .blog-article {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .blog-article p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.blog-details .blog-article h2 {
    color: var(--secondary);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.blog-details .blog-article h3 {
    color: var(--primary);
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.blog-details .blog-article blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--dark-gray);
    font-size: 1.2rem;
}

.blog-details .blog-article ul,
.blog-details .blog-article ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-details .blog-article li {
    margin-bottom: 0.5rem;
}

.blog-details .blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-details .sidebar-widget {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .widget-title {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--medium-gray);
}

.blog-details .author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.blog-details .author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-details .author-details h4 {
    margin: 0 0 0.3rem;
    color: var(--secondary);
}

.blog-details .author-details p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.blog-details .social-share {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.blog-details .social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--secondary);
    transition: all 0.3s ease;
}

.blog-details .social-share a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.blog-details .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.blog-details .tag {
    display: inline-block;
    background-color: var(--light-gray);
    color: var(--secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.blog-details .tag:hover {
    background-color: var(--primary);
    color: var(--white);
}

.blog-details .related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-details .related-post {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.blog-details .related-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-details .related-post h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--secondary);
}

.blog-details .blog-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
}

.blog-details .blog-navigation {
    display: flex;
    justify-content: space-between;
}

.blog-details .nav-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-details .nav-link:hover {
    color: var(--secondary);
    gap: 1rem;
}

@media (max-width: 992px) {
    .blog-details .blog-content {
        grid-template-columns: 1fr;
    }

    .blog-details .blog-title {
        font-size: 2rem;
    }

    .blog-details .blog-image {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .blog-details {
        padding: 1rem 5px;
    }
    .blog-details .blog-footer {
        margin-top: 2rem;
        padding-top: 1rem;
    }
    .blog-details .sidebar-widget {
        padding: 0;
        box-shadow: none;
    }
    .blog-details .blog-title {
        font-size: 21px;
        margin-bottom: 5px;
    }
    .blog-details .blog-meta-item {
        display: flex;
        align-items: center;
        gap: 3px;
    }
    .blog-details .blog-meta {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 0;
    }
    .blog-details .blog-header {
        margin-bottom: 1rem !important;
    }
    .blog-details .blog-image {
        height: 250px;
    }
}
.blog-list {
    line-height: 1.6;
    color: var(--text-color);
    margin: 0 auto;
    padding: 2rem;
}

.blog-list .page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-list .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.blog-list .page-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.blog-list .blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-list .search-box {
    position: relative;
    flex-grow: 1;
    max-width: 400px;
}

.blog-list .search-box input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid var(--medium-gray);
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.blog-list .search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(36, 86, 209, 0.1);
}

.blog-list .search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
}

.blog-list .category-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-list .category-filter {
    padding: 0.5rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-list .category-filter:hover,
.blog-list .category-filter.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.blog-list .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-list .blog-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-list .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-list .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-list .card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-list .card-category {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.blog-list .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--secondary);
    line-height: 1.3;
}

.blog-list .card-excerpt {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-list .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.blog-list .card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-list .author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-list .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.blog-list .read-more:hover {
    gap: 0.8rem;
    color: var(--secondary);
}

.blog-list .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.blog-list .pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: var(--dark-gray);
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-list .pagination a:hover,
.blog-list .pagination a.active {
    background-color: var(--primary);
    color: var(--white);
}

.blog-list .pagination a.pagination-prev,
.blog-list .pagination a.pagination-next {
    width: auto;
    padding: 0 1rem;
}

.blog-list .newsletter-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 4rem;
}

.blog-list .newsletter-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.blog-list .newsletter-text {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.blog-list .newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.blog-list .newsletter-form input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.blog-list .newsletter-form input:focus {
    outline: none;
}

.blog-list .newsletter-form button {
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-list .newsletter-form button:hover {
    background-color: #061a4a;
}

@media (max-width: 992px) {
    .blog-list .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-list .blog-filters {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-list .search-box {
        max-width: 100%;
        width: 100%;
    }

    .blog-list .category-filters {
        width: 100%;
        justify-content: center;
    }

    .blog-list .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-list .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .blog-list .newsletter-form input,
    .blog-list .newsletter-form button {
        border-radius: 5px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .blog-list {
        padding: 0rem;
    }

    .blog-list .page-title {
        font-size: 2rem;
    }
}
/* Reset and base styles */
.shop-sidebar-inner * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.shop-sidebar-inner {
    color: #333;
    background-color: #f8f9fa;
    padding: 20px;
    width: 300px;
    /* height: 100vh; */
    overflow-y: auto;
}

/* Widget containers */
.shop-sidebar-inner-widget {
    margin-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
}

.shop-sidebar-inner-widget:last-child {
    border-bottom: none;
}

/* Widget titles */
.shop-sidebar-inner-widget-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #212529;
}

.nt-sidebar-widget-toggle {
    cursor: pointer;
    color: #6c757d;
}

/* Search widget */
.shop-sidebar-inner .woocommerce-product-search {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-sidebar-inner .search-field {
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.shop-sidebar-inner .woocommerce-product-search button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.shop-sidebar-inner .woocommerce-product-search button:hover {
    background-color: #0069d9;
}

/* Price filter */
.shop-sidebar-inner .price_slider_wrapper {
    margin-top: 15px;
}

.shop-sidebar-inner .price_slider {
    height: 5px;
    background-color: #e9ecef;
    border-radius: 5px;
    position: relative;
    margin-bottom: 20px;
}

.shop-sidebar-inner .ui-slider-range {
    background-color: #007bff;
    height: 100%;
    border-radius: 5px;
    position: absolute;
}

.shop-sidebar-inner .ui-slider-handle {
    width: 16px;
    height: 16px;
    background-color: #007bff;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    cursor: pointer;
}

.shop-sidebar-inner .price_slider_amount {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-sidebar-inner .price_slider_amount button {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    align-self: flex-start;
}

.shop-sidebar-inner .price_slider_amount button:hover {
    background-color: #5a6268;
}

.shop-sidebar-inner .price_label {
    font-size: 14px;
    color: #495057;
}

/* Color filter */
.shop-sidebar-inner .woocommerce-widget-layered-nav-list {
    list-style: none;
    margin-top: 10px;
}

.shop-sidebar-inner .woocommerce-widget-layered-nav-list__item {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.shop-sidebar-inner .woocommerce-widget-layered-nav-list__item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #495057;
    font-size: 14px;
    flex-grow: 1;
}

.shop-sidebar-inner .woocommerce-widget-layered-nav-list__item a:hover {
    color: #007bff;
}

.shop-sidebar-inner .theme-swatches-widget-color-item {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid #dee2e6;
}

.shop-sidebar-inner .widget-list-span {
    background-color: #e9ecef;
    color: #495057;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

/* Categories filter */
.shop-sidebar-inner .widget-body {
    margin-top: 10px;
}

.shop-sidebar-inner .site-scroll {
    max-height: 300px;
    overflow-y: auto;
}

.shop-sidebar-inner .ninetheme-product-categories-primary {
    list-style: none;
}

.shop-sidebar-inner .cat-item {
    margin-bottom: 5px;
    position: relative;
}

.shop-sidebar-inner .cat-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #495057;
    font-size: 14px;
    padding: 5px 0;
}

.shop-sidebar-inner .cat-item a:hover {
    color: #007bff;
}

.shop-sidebar-inner .checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border: 1px solid #ced4da;
    border-radius: 3px;
    margin-right: 10px;
    font-size: 10px;
    color: transparent;
}

.shop-sidebar-inner .cat-item a:hover .checkbox {
    border-color: #007bff;
}

.shop-sidebar-inner .subDropdown {
    margin-left: auto;
    cursor: pointer;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 7px;
}

.shop-sidebar-inner .svgPlus {
    width: 12px;
    height: 12px;
}

.shop-sidebar-inner .children {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
    display: none;
}

.shop-sidebar-inner .cat-parent.active .children {
    display: block;
}

.shop-sidebar-inner .cat-parent.active .subDropdown .vertical {
    display: none;
}

/* Product status filter */
.shop-sidebar-inner .theme-product-status ul {
    list-style: none;
    margin-top: 10px;
}

.shop-sidebar-inner .theme-product-status li {
    margin-bottom: 8px;
}

.shop-sidebar-inner .theme-product-status a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #495057;
    font-size: 14px;
}

.shop-sidebar-inner .theme-product-status a:hover {
    color: #007bff;
}

.shop-sidebar-inner .theme-product-status input {
    margin-right: 10px;
}

.shop-sidebar-inner .theme-product-status label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.shop-sidebar-inner .theme-product-status label span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #ced4da;
    border-radius: 3px;
    margin-right: 8px;
    position: relative;
}

.shop-sidebar-inner .theme-product-status input:checked+label span::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #007bff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Featured products */
.shop-sidebar-inner .product_list_widget {
    list-style: none;
    margin-top: 10px;
}

.shop-sidebar-inner .theme-widget-product-list-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.shop-sidebar-inner .theme-widget-product-list-item:last-child {
    border-bottom: none;
}

.shop-sidebar-inner .theme-widget-product-list-inner {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.shop-sidebar-inner .theme-widget-product-list-inner:hover {
    color: #007bff;
}

.shop-sidebar-inner .theme-widget-product-list-inner img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
}

.shop-sidebar-inner .theme-widget-product-list-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shop-sidebar-inner .product-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.shop-sidebar-inner .star-rating {
    font-size: 12px;
    color: #ffc107;
    margin-bottom: 5px;
}

.shop-sidebar-inner .theme-price {
    font-size: 14px;
    font-weight: 600;
    color: #28a745;
}

.shop-sidebar-inner .theme-price del {
    color: #6c757d;
    margin-right: 5px;
}

.shop-sidebar-inner .theme-price ins {
    text-decoration: none;
}

/* Hide screen reader text */
.shop-sidebar-inner .screen-reader-text {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
/* Reset and base styles */
.theme-shop-fast-filters *,
.theme-inline-two-block * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.theme-shop-fast-filters,
.theme-inline-two-block {
    color: #333;
}

/* Fast Filters Section */
.theme-shop-fast-filters {
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.theme-shop-fast-filters .fast-filters-label {
    font-weight: 600;
    margin-right: 15px;
    color: #212529;
}

.theme-shop-fast-filters .theme-fast-filters-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.theme-shop-fast-filters .theme-fast-filters-list li {
    position: relative;
}

.theme-shop-fast-filters .theme-fast-filters-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-decoration: none;
    color: #495057;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.theme-shop-fast-filters .theme-fast-filters-list a:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.theme-shop-fast-filters .theme-svg-icon {
    width: 16px;
    height: 16px;
}

/* Submenu styles */
.theme-shop-fast-filters .theme-has-submenu .theme-fast-filters-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 150px;
    z-index: 100;
    display: none;
    margin-top: 5px;
}

.theme-shop-fast-filters .theme-has-submenu:hover .theme-fast-filters-submenu {
    display: block;
}

.theme-shop-fast-filters .theme-fast-filters-submenu li {
    margin: 0;
}

.theme-shop-fast-filters .theme-fast-filters-submenu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border: none;
    border-radius: 0;
    background: white;
    color: #495057;
}

.theme-shop-fast-filters .theme-fast-filters-submenu a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.theme-shop-fast-filters .term-color {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    margin-left: 8px;
}

/* Filter Top Area */
.theme-inline-two-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

.theme-inline-two-block .theme-block-left,
.theme-inline-two-block .theme-block-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Result Count */
.theme-inline-two-block .theme-woo-result-count {
    font-size: 14px;
    color: #6c757d;
}

/* Filter Button */
.theme-inline-two-block .theme-open-fixed-sidebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: var(--primary);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.theme-inline-two-block .theme-open-fixed-sidebar:hover {
    background-color: #0069d9;
}

.theme-inline-two-block .theme-open-fixed-sidebar .theme-svg-icon {
    width: 16px;
    height: 16px;
}

/* Filter Controls */
.theme-inline-two-block .theme-shop-filter-area {
    position: relative;
}

/* Per Page Filter */
.theme-inline-two-block .theme-filter-per-page .theme-filter-action {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.theme-inline-two-block .theme-per-page-title {
    font-size: 14px;
    color: #6c757d;
    margin-right: 5px;
}

.theme-inline-two-block .theme-per-page-item a {
    padding: 5px 10px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-decoration: none;
    color: #495057;
    font-size: 14px;
    transition: all 0.2s ease;
}

.theme-inline-two-block .theme-per-page-item a:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

/* Column Select Filter */
.theme-inline-two-block .theme-filter-column-select .theme-filter-action {
    display: flex;
    gap: 5px;
    list-style: none;
}

.theme-inline-two-block .theme-filter-column-select a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    color: #6c757d;
    transition: all 0.2s ease;
}

.theme-inline-two-block .theme-filter-column-select a:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.theme-inline-two-block .theme-filter-column-select .theme-svg-icon {
    width: 16px;
    height: 16px;
}

/* Ordering Filter */
.theme-inline-two-block .theme-shop-filter-ordering {
    position: relative;
}

.theme-inline-two-block .nice-select {
    position: relative;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 8px 30px 8px 12px;
    cursor: pointer;
    font-size: 14px;
    min-width: 160px;
}

.theme-inline-two-block .nice-select:after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #6c757d;
}

.theme-inline-two-block .nice-select .list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin-top: 5px;
    z-index: 100;
    display: none;
}

.theme-inline-two-block .nice-select.open .list {
    display: block;
}

.theme-inline-two-block .nice-select .option {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
}

.theme-inline-two-block .nice-select .option:hover {
    background-color: #f8f9fa;
}

.theme-inline-two-block .nice-select .option.selected {
    font-weight: 500;
    color: #007bff;
}

/* Search Button */
.theme-inline-two-block .top-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
}

.theme-inline-two-block .top-action-btn:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.theme-inline-two-block .top-action-btn .theme-svg-icon {
    width: 16px;
    height: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .theme-inline-two-block {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .theme-inline-two-block .theme-block-right {
        flex-wrap: wrap;
    }

    .theme-shop-fast-filters .theme-fast-filters-list {
        gap: 5px;
    }

    .theme-shop-fast-filters .theme-fast-filters-list a {
        padding: 6px 10px;
        font-size: 13px;
    }
}
body .shop-products .product-card{
    max-width: 210px;
}
body .shop-section .category-item .img {
    border: none;
    padding: 0px;
    border-radius: 0px;
    height: 140px;
}
body .shop-section .category-item {
    background: #fff;
    border: 2px solid #e8e8e8;
    padding: 10px 10px 5px 10px;
    border-radius: 6px;
}
body .shop-section .category-item .text{
    margin-top: 5px;
}
/* product details css start */
.related-products .product-card{
    max-width: 100%;
}
.related-products .products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .related-products .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .related-products .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .related-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .related-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
.product-view-body .container{
    max-width: 1520px;
}
.product-details {
    display: flex;
    gap: 20px;
}
.product-part{
    width: 76%;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}
.product-action-part {
    width: 24%;        
}
.border-1px{
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 15px;
}
.product-image-part{
    width: 44%;
}
.product-info-part{
    width: 54%;
}
.ship-info{
    display: flex;
    justify-content: space-between;
}
.slot-info .badge{
    border-radius: 20px;
    background-color: #D8E7E6;
}
.slot-info{
    background-color: #f8f8f8;
    margin: 10px 0 20px 0;
    padding: 10px;
    border-radius: 6px;
    position: relative;
}
.edit-slot-btn{
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translate(0, -50%);
}
.total-quantity{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
}
.delivery-charge{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
}
.total-price{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: bold;
}
.buy-now-btn {
    background: var(--primary);
    color: white;
    display: block;
    text-align: center;
    margin: 20px auto 10px auto;
    border: none;
    padding: 7px 20px;
    width: 100%;
    border-radius: 4px;
}
.add-to-cart-btn{
    background: white;
    border: 1px solid var(--primary);
    color: var(--primary);
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 7px 20px;
    width: 100%;
    border-radius: 4px;
}
.assurance-info{
    border: 1px solid #e8e8e8;
    padding: 10px;
    margin-top: 20px;
}
.assurance-title{
    font-size: 17px;
    margin-bottom: 10px;
}
.assurance-item{
    margin-bottom: 10px;
}
.assurance-item i{
    margin-right: 5px;
    color: var(--primary);
}
.store-info{
    display: flex;
    gap: 5px;
}
.store-info img{
    width: 20px;
    height: 20px;
}
.campaign-banner{
    background-color: #FEF2DA;
    padding: 15px;
    border-radius: 6px;
}
.campaign-title{
    color: #C58426;
}
.campaign-time{
    display: flex;
    justify-content: space-between;    
}
.campaign-time a{
    text-decoration: underline;
    color: #555;
    font-size: 15px;
}
.campaign-title{
    display: flex;
    align-items: center;
    gap: 5px;    
}
.campaign-title img{
    width: 30px;
    height: 35px;
}
.campaign-title h4{
    font-size: 20px;
    font-weight: 600;
}
.campaign-time .badge{
    display: flex;
    gap: 3px;
    border-radius: 20px;
    font-size: 15px;
}
.product-info-part h1{
    font-size: 20px;
}
.product-rating{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin-top: 15px;
}
.product-rating .avg-rating{
    display: flex;
    align-items: center;
    border-right: 1px solid #e8e8e8;
    padding-right: 20px;
}
.product-rating .avg-rating i{
    color: #F8C12E;
}
.product-rating .avg-rating p{
    margin-left: 5px;
    font-weight: bold;    
}
.desc-part{
    border: 1px solid #e8e8e8;
    margin-bottom: 60px;
}
.desc-part .product-container {
    margin: 0 auto;
    background: white;
    border-radius: 12px;    
}
.desc-part .tab-button:first-child{
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.desc-part .tab-button:last-child{
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
/* Tab styles */
.desc-part .tabs-container {
    width: 100%;
}

.desc-part .tabs-header {
    display: flex;
    background-color: #f1f3f4;
    border-bottom: 1px solid #e0e0e0;
}

.desc-part .tab-button {
    flex: 1;
    padding: 14px 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #5f6368;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.desc-part .tab-button.active {
    color: var(--primary);
    background-color: white;
}

.desc-part .tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
}

.desc-part .tab-button:hover:not(.active) {
    background-color: #e8f0fe;
    color: var(--primary);
}

.desc-part .tab-content {
    display: none;
    padding: 24px;
}

.desc-part .tab-content.active {
    display: block;
}

/* Specifications table */
.desc-part .specs-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.desc-part .specs-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.desc-part .specs-table tr:last-child {
    border-bottom: none;
}

.desc-part .specs-table td {
    padding: 16px 20px;
}

.desc-part .specs-table td:first-child {
    width: 35%;
    background-color: #f8f9fa;
    font-weight: 600;
    color: #5f6368;
}

.desc-part .specs-table td:last-child {
    width: 65%;
    background-color: white;
}

.desc-part .weight-note {
    color: #d93025;
    font-size: 14px;
    margin-left: 8px;
}

/* Product description */
.desc-part .product-description {
    padding: 20px 0;
}

.desc-part .description-title {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary);
}

.desc-part .description-text {
    margin-bottom: 20px;
    line-height: 1.7;
}

.desc-part .features-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.desc-part .features-list li {
    margin-bottom: 8px;
}

/* Reviews section */
.desc-part .reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.desc-part .rating-summary {
    display: flex;
    align-items: center;
}

.desc-part .average-rating {
    font-size: 36px;
    font-weight: 700;
    margin-right: 12px;
    color: var(--primary);
}

.desc-part .stars {
    color: #ffb400;
    font-size: 18px;
    margin-bottom: 8px;
}

.desc-part .review-count {
    color: #5f6368;
    font-size: 14px;
}

.desc-part .review-item {
    padding: 20px 0;
    border-bottom: 1px solid #f1f3f4;
}

.desc-part .review-item:last-child {
    border-bottom: none;
}

.desc-part .review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.desc-part .reviewer-name {
    font-weight: 600;
}

.desc-part .review-date {
    color: #5f6368;
    font-size: 14px;
}

.desc-part .review-text {
    line-height: 1.6;
}
.review-btn{
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}
/* Responsive styles */
@media (max-width: 768px) {

    .desc-part .tab-button {
        text-align: left;
        border-bottom: 1px solid #e0e0e0;
    }

    .desc-part .tab-button.active::after {
        left: 0;
        width: 4px;
        height: 100%;
        bottom: 0;
    }

    .desc-part .specs-table td {
        padding: 12px 16px;
    }

    .desc-part .specs-table td:first-child {
        width: 40%;
    }

    .desc-part .specs-table td:last-child {
        width: 60%;
    }

    .desc-part .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .desc-part .rating-summary {
        margin-bottom: 16px;
    }
}
/* Modal Overlay */
.review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.review-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.review-modal-container {
    background-color: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.review-modal-overlay.active .review-modal-container {
    transform: translateY(0);
}

/* Modal Header */
.review-modal-header {
    padding: 24px 24px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.review-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #5f6368;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.review-modal-close:hover {
    background-color: #f1f3f4;
}

/* Modal Body */
.review-modal-body {
    padding: 24px;
}

/* Product Info */
.review-product-info {
    display: flex;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f3f4;
}

.review-product-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: #5f6368;
    font-size: 14px;
}

.review-product-details {
    flex: 1;
}

.review-product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.review-product-category {
    color: #5f6368;
    font-size: 14px;
}

/* Rating Section */
.review-rating-section {
    margin-bottom: 24px;
}

.review-rating-label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.review-stars-container {
    display: flex;
    gap: 8px;
}

.review-star {
    font-size: 32px;
    color: #e0e0e0;
    cursor: pointer;
    transition: color 0.2s;
}

.review-star.active {
    color: #ffb400;
}

.review-star:hover {
    color: #ffb400;
}

.review-rating-text {
    margin-top: 8px;
    font-size: 14px;
    color: #5f6368;
}

/* Form Elements */
.review-form-group {
    margin-bottom: 20px;
}

.review-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.review-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.review-form-input:focus {
    outline: none;
    border-color: #1a73e8;
}

.review-form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.review-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.review-checkbox-input {
    margin-top: 4px;
}

.review-checkbox-label {
    font-size: 14px;
    color: #5f6368;
}

/* Action Buttons */
.review-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f3f4;
}

.review-button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px;
}

.review-button-cancel {
    background-color: white;
    border: 1px solid #e0e0e0;
    color: #5f6368;
}

.review-button-cancel:hover {
    background-color: #f8f9fa;
}

.review-button-submit {
    background-color: #1a73e8;
    border: 1px solid #1a73e8;
    color: white;
}

.review-button-submit:hover {
    background-color: #1669d9;
}

.review-button-submit:disabled {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
    color: #9aa0a6;
    cursor: not-allowed;
}

/* Success Message */
.review-success-message {
    text-align: center;
    padding: 40px 24px;
    display: none;
}

.review-success-icon {
    font-size: 48px;
    color: #34a853;
    margin-bottom: 16px;
}

.review-success-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.review-success-text {
    color: #5f6368;
    margin-bottom: 24px;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .review-modal-container {
        width: 95%;
    }

    .review-modal-body {
        padding: 16px;
    }

    .review-modal-header {
        padding: 16px 16px 0;
    }

    .review-modal-title {
        font-size: 20px;
    }

    .review-product-info {
        flex-direction: column;
    }

    .review-product-image {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .review-modal-actions {
        flex-direction: column-reverse;
    }

    .review-button {
        width: 100%;
    }
}
.view-store-btn{
    background-color: white;
    border: 1px solid #ccc;
}
.product-view-body .product-card .product-image img {
    max-width: 100%;
    height: 180px;
}
.seller-part{
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 15px 5px 15px 15px;
}
.company-card {
    background: white;
    border-radius: 12px;
    padding: 10px 0;
    width: 100%;
}

.company-card .card-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .company-card .card-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.company-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.company-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e9f5ff;
    border: 1px solid #d0e7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2d7dd2;
}

.company-details h2 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.rating-badge svg {
    color: #38a169;
}

.rating-text {
    font-size: 0.875rem;
    color: #4a5568;
}

.stats-container {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
    .stats-container {
        border-top: none;
        padding-top: 0;
        min-width: 300px;
        justify-content: space-between;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    min-width: 80px;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
}

.stat-label {
    font-size: 0.875rem;
    color: #718096;
    margin-top: 0.25rem;
}

.stat-divider {
    border-left: 1px solid #e2e8f0;
    padding-left: 1rem;
}

/* Mobile rating display */
.mobile-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-rating {
        display: none;
    }
}
.product-view-banner img{
    border-radius: 6px;
}
/* Hide scrollbar for stats */
.stats-container::-webkit-scrollbar {
    display: none;
}

.stats-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.mobile-app{
    position: relative;
}
.mobile-app strong {
    font-size: 18px;
}
.mobile-app > div > i{
    font-size: 30px;
    margin-right: 10px;
}
.mobile-app span{
    line-height: initial;
    margin: 10px 0 10px 5px;
    width: 60%;
}
.mobile-app button {
    border: none;
    background: white;
    padding: 10px 15px;
    border-radius: 4px;
    position: absolute;
    bottom: 25px;
    right: 15px;
}
.mobile-app{
    background: #EDF2FA;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}
.attribute-table{
    border: 1px solid #e8e8e8;
    border-radius:8px;
}
.product-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;    
    overflow: hidden;    
    border-radius: 8px;
}

.product-table th {
    background-color: #fff;
    color: #333;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #e8e8e8;
}
.product-info-part .product-price{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.product-price .price-item{
    text-align: center;
    border: 1px solid #e8e8e8;
    padding: 10px;
    width: 32%;
    border-radius: 6px;
}
.product-price .price-item strong{
    font-size: 22px;
}
.product-price .price-item p{
    font-size: 16px;
    color: #1a202c;
}
.color-variation{
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.variation-item{
    margin-bottom: 5px;
    cursor: pointer;
}
.variation-item img{
    width: 60px;
    height: 60px;
    border-radius: 6px;
    border: 1px solid transparent;
}
.product-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

.product-table tr:last-child td {
    border-bottom: none;
}

.product-table tr:hover {
    background-color: #f8f9fa;
}

.product-table .size-info {
    font-weight: 500;
}

.product-table .price {
    color: #27ae60;
    font-weight: 600;
}

.product-table .stock {
    color: #7f8c8d;
}

.product-table .qty-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-table .qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
}

.product-table .qty-btn:hover {
    background-color: #f1f1f1;
}

.product-table .qty-input {
    width: 60px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
}

.product-table .qty-input:focus {
    outline: none;
    border-color: #3498db;
}

.mobile-stock {
    display: none;
    text-align: center;
    margin-top: 5px;
    color: #7f8c8d;
    font-size: 14px;
}

@media (max-width: 768px) {
    .product-table {
        display: block;
        overflow-x: auto;
    }

    .stock-column {
        display: none;
    }

    .mobile-stock {
        display: block;
    }
}
/* product magnifier */
.product-image-part .hidden {
display: block;
}

.product-image-part .exzoom {
box-sizing: border-box;
}

.product-image-part .exzoom * {
box-sizing: border-box;
}

.product-image-part .exzoom .exzoom_img_box {
background: transparent;
position: relative;
}
.exzoom_img_ul > li > img{
    width: 100% !important;
    height: 100% !important;
}
.product-image-part .exzoom .exzoom_img_box .exzoom_main_img {
display: block;
width: 100%;
}

.product-image-part .exzoom .exzoom_img_box span {
background: url("data:img/jpg;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAACXBIWXMAAAsTAAALEwEAmpwYAAAK\aTWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVN3WJP3Fj7f92UPVkLY8LGXbIEAIiOsCMgQ\aWaIQkgBhhBASQMWFiApWFBURnEhVxILVCkidiOKgKLhnQYqIWotVXDjuH9yntX167+3t+9f7vOec\a 5/zOec8PgBESJpHmomoAOVKFPDrYH49PSMTJvYACFUjgBCAQ5svCZwXFAADwA3l4fnSwP/wBr28A\a AgBw1S4kEsfh/4O6UCZXACCRAOAiEucLAZBSAMguVMgUAMgYALBTs2QKAJQAAGx5fEIiAKoNAOz0\aST4FANipk9wXANiiHKkIAI0BAJkoRyQCQLsAYFWBUiwCwMIAoKxAIi4EwK4BgFm2MkcCgL0FAHaO\aWJAPQGAAgJlCLMwAIDgCAEMeE80DIEwDoDDSv+CpX3CFuEgBAMDLlc2XS9IzFLiV0Bp38vDg4iHi\awmyxQmEXKRBmCeQinJebIxNI5wNMzgwAABr50cH+OD+Q5+bk4eZm52zv9MWi/mvwbyI+IfHf/ryM\a AgQAEE7P79pf5eXWA3DHAbB1v2upWwDaVgBo3/ldM9sJoFoK0Hr5i3k4/EAenqFQyDwdHAoLC+0l\aYqG9MOOLPv8z4W/gi372/EAe/tt68ABxmkCZrcCjg/1xYW52rlKO58sEQjFu9+cj/seFf/2OKdHi\aNLFcLBWK8ViJuFAiTcd5uVKRRCHJleIS6X8y8R+W/QmTdw0ArIZPwE62B7XLbMB+7gECiw5Y0nYA\aQH7zLYwaC5EAEGc0Mnn3AACTv/mPQCsBAM2XpOMAALzoGFyolBdMxggAAESggSqwQQcMwRSswA6c\awR28wBcCYQZEQAwkwDwQQgbkgBwKoRiWQRlUwDrYBLWwAxqgEZrhELTBMTgN5+ASXIHrcBcGYBie\awhi8hgkEQcgIE2EhOogRYo7YIs4IF5mOBCJhSDSSgKQg6YgUUSLFyHKkAqlCapFdSCPyLXIUOY1c\aQPqQ28ggMor8irxHMZSBslED1AJ1QLmoHxqKxqBz0XQ0D12AlqJr0Rq0Hj2AtqKn0UvodXQAfYqO\aY4DRMQ5mjNlhXIyHRWCJWBomxxZj5Vg1Vo81Yx1YN3YVG8CeYe8IJAKLgBPsCF6EEMJsgpCQR1hM\aWEOoJewjtBK6CFcJg4Qxwicik6hPtCV6EvnEeGI6sZBYRqwm7iEeIZ4lXicOE1+TSCQOyZLkTgoh\aJZAySQtJa0jbSC2kU6Q+0hBpnEwm65Btyd7kCLKArCCXkbeQD5BPkvvJw+S3FDrFiOJMCaIkUqSU\a Eko1ZT/lBKWfMkKZoKpRzame1AiqiDqfWkltoHZQL1OHqRM0dZolzZsWQ8ukLaPV0JppZ2n3aC/p\a dLoJ3YMeRZfQl9Jr6Afp5+mD9HcMDYYNg8dIYigZaxl7GacYtxkvmUymBdOXmchUMNcyG5lnmA+Y\a b1VYKvYqfBWRyhKVOpVWlX6V56pUVXNVP9V5qgtUq1UPq15WfaZGVbNQ46kJ1Bar1akdVbupNq7O\aUndSj1DPUV+jvl/9gvpjDbKGhUaghkijVGO3xhmNIRbGMmXxWELWclYD6yxrmE1iW7L57Ex2Bfsb\a di97TFNDc6pmrGaRZp3mcc0BDsax4PA52ZxKziHODc57LQMtPy2x1mqtZq1+rTfaetq+2mLtcu0W\a 7eva73VwnUCdLJ31Om0693UJuja6UbqFutt1z+o+02PreekJ9cr1Dund0Uf1bfSj9Rfq79bv0R83\aMDQINpAZbDE4Y/DMkGPoa5hpuNHwhOGoEctoupHEaKPRSaMnuCbuh2fjNXgXPmasbxxirDTeZdxr\aPGFiaTLbpMSkxeS+Kc2Ua5pmutG003TMzMgs3KzYrMnsjjnVnGueYb7ZvNv8jYWlRZzFSos2i8eW\a 2pZ8ywWWTZb3rJhWPlZ5VvVW16xJ1lzrLOtt1ldsUBtXmwybOpvLtqitm63Edptt3xTiFI8p0in1\aU27aMez87ArsmuwG7Tn2YfYl9m32zx3MHBId1jt0O3xydHXMdmxwvOuk4TTDqcSpw+lXZxtnoXOd\a 8zUXpkuQyxKXdpcXU22niqdun3rLleUa7rrStdP1o5u7m9yt2W3U3cw9xX2r+00umxvJXcM970H0\a 8PdY4nHM452nm6fC85DnL152Xlle+70eT7OcJp7WMG3I28Rb4L3Le2A6Pj1l+s7pAz7GPgKfep+H\avqa+It89viN+1n6Zfgf8nvs7+sv9j/i/4XnyFvFOBWABwQHlAb2BGoGzA2sDHwSZBKUHNQWNBbsG\aLww+FUIMCQ1ZH3KTb8AX8hv5YzPcZyya0RXKCJ0VWhv6MMwmTB7WEY6GzwjfEH5vpvlM6cy2CIjg\aR2yIuB9pGZkX+X0UKSoyqi7qUbRTdHF09yzWrORZ+2e9jvGPqYy5O9tqtnJ2Z6xqbFJsY+ybuIC4\aqriBeIf4RfGXEnQTJAntieTE2MQ9ieNzAudsmjOc5JpUlnRjruXcorkX5unOy553PFk1WZB8OIWY\a EpeyP+WDIEJQLxhP5aduTR0T8oSbhU9FvqKNolGxt7hKPJLmnVaV9jjdO31D+miGT0Z1xjMJT1Ir\a eZEZkrkj801WRNberM/ZcdktOZSclJyjUg1plrQr1zC3KLdPZisrkw3keeZtyhuTh8r35CP5c/Pb\a FWyFTNGjtFKuUA4WTC+oK3hbGFt4uEi9SFrUM99m/ur5IwuCFny9kLBQuLCz2Lh4WfHgIr9FuxYj\ai1MXdy4xXVK6ZHhp8NJ9y2jLspb9UOJYUlXyannc8o5Sg9KlpUMrglc0lamUycturvRauWMVYZVk\aVe9ql9VbVn8qF5VfrHCsqK74sEa45uJXTl/VfPV5bdra3kq3yu3rSOuk626s91m/r0q9akHV0Ibw\a Da0b8Y3lG19tSt50oXpq9Y7NtM3KzQM1YTXtW8y2rNvyoTaj9nqdf13LVv2tq7e+2Sba1r/dd3vz\a DoMdFTve75TsvLUreFdrvUV99W7S7oLdjxpiG7q/5n7duEd3T8Wej3ulewf2Re/ranRvbNyvv7+y\a CW1SNo0eSDpw5ZuAb9qb7Zp3tXBaKg7CQeXBJ9+mfHvjUOihzsPcw83fmX+39QjrSHkr0jq/dawt\ao22gPaG97+iMo50dXh1Hvrf/fu8x42N1xzWPV56gnSg98fnkgpPjp2Snnp1OPz3Umdx590z8mWtd\aUV29Z0PPnj8XdO5Mt1/3yfPe549d8Lxw9CL3Ytslt0utPa49R35w/eFIr1tv62X3y+1XPK509E3r\aO9Hv03/6asDVc9f41y5dn3m978bsG7duJt0cuCW69fh29u0XdwruTNxdeo94r/y+2v3qB/oP6n+0\a/rFlwG3g+GDAYM/DWQ/vDgmHnv6U/9OH4dJHzEfVI0YjjY+dHx8bDRq98mTOk+GnsqcTz8p+Vv95\a 63Or59/94vtLz1j82PAL+YvPv655qfNy76uprzrHI8cfvM55PfGm/K3O233vuO+638e9H5ko/ED+\aUPPR+mPHp9BP9z7nfP78L/eE8/sl0p8zAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAA\a ADqYAAAXb5JfxUYAAAAcSURBVHjaYnz9+Vs5AxJgYkADhAUAAAAA//8DANmxA1Okl3sAAAAAAElF\aTkSuQmCC") repeat;
}

.product-image-part .exzoom .exzoom_preview {
margin: 0;
position: absolute;
top: 0;
overflow: hidden;
z-index: 999;
background-color: #fff;
border: 1px solid #ddd;
display: none;
}

.product-image-part .exzoom .exzoom_preview .exzoom_preview_img {
position: relative;
max-width: initial !important;
max-height: initial !important;
left: 0;
top: 0;
}

.product-image-part .exzoom .exzoom_nav {
margin-top: 10px;
overflow: hidden;
position: relative;
left: 15px;
}

.product-image-part .exzoom .exzoom_nav .exzoom_nav_inner {
position: absolute;
left: 0;
top: 0;
margin: 0;
}

.product-image-part .exzoom .exzoom_nav .exzoom_nav_inner span {
border: 1px solid #ddd;
overflow: hidden;
position: relative;
float: left;
border-radius: 6px;
}

.product-image-part .exzoom .exzoom_nav .exzoom_nav_inner span.current {
border: 1px solid var(--primary);
}

.product-image-part .exzoom .exzoom_nav .exzoom_nav_inner span img {
max-width: 100%;
max-height: 100%;
position: relative;
left: 0 !important;
}

.product-image-part .exzoom .exzoom_btn {
position: relative;
margin: 0;
}

.product-image-part .exzoom .exzoom_btn a {
    display: block;
    width: 15px;
    border: none;
    height: 60px;
    line-height: 60px;
    background: transparent;
    text-align: center;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -62px;
    text-decoration: none;
    color: black;
}

.product-image-part .exzoom .exzoom_btn a:hover {
background: var(--primary);
color: #fff;
}

.product-image-part .exzoom .exzoom_btn a.exzoom_next_btn {
left: auto;
right: 0;
}

.product-image-part .exzoom .exzoom_zoom {
position: absolute;
left: 0;
top: 0;
display: none;
z-index: 5;
cursor: pointer;
}

@media screen and (max-width: 768px) {
.product-image-part .exzoom .exzoom_zoom_outer {
    display: none;
}
}
.product-image-part .exzoom .exzoom_img_ul_outer {
border: 1px solid #ddd;
position: absolute;
overflow: hidden;
}

.product-image-part .exzoom .exzoom_img_ul_outer .exzoom_img_ul {
padding: 0;
margin: 0;
overflow: hidden;
position: absolute;
}

.product-image-part .exzoom .exzoom_img_ul_outer .exzoom_img_ul li {
list-style: none;
display: inline-block;
text-align: center;
float: left;
}

.product-image-part .exzoom .exzoom_img_ul_outer .exzoom_img_ul li img {
width: 100%;
}
/* product details css end */