  /* ===== HEADER NEW STYLE ===== */

.header-actions{
    display:flex;
    align-items:center;
    gap:25px;
}

/* search */
.header-search{
    position:relative;
    width:580px;
}

.header-search input{
    width:100%;
    padding:12px 40px 12px 18px;
    border-radius:10px;
    border:1px solid #ddd;
    outline:none;
}

.header-search i{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    color:#555;
}

/* account & cart */
.header-account,
.header-cart{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#222;
}

.circle{
    width:40px;
    height:40px;
    background:#F59E0B;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.small{
    font-size:12px;
    color:#777;
}

.bold{
    font-weight:600;
    font-size:14px;
}

.arrow{
    font-size:12px;
}
.header-account{
    position:relative;
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
}

/* hidden by default */
.account-menu{
    position:absolute;
    top:55px;
    right:0;
    width:160px;
    background:#fff;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    padding:10px 0;
    display:none;
    z-index:999;
}

.account-menu a{
    display:block;
    padding:10px 15px;
    color:#333;
    text-decoration:none;
    font-size:14px;
}

.account-menu a:hover{
    background:#f5f5f5;
}
.header-account.active .account-menu{
    display:block;
}
.search-item{
    display:flex;
    gap:10px;
    padding:10px;
    text-decoration:none;
    color:#222;
    align-items:center;
    border-bottom:1px solid #eee;
}

.search-item img{
    width:45px;
    height:45px;
    object-fit:cover;
    border-radius:5px;
}

.search-item:hover{
    background:#f9f9f9;
}

.search-item .name{
    font-size:14px;
    font-weight:600;
}

.search-item .price{
    font-size:13px;
    color:#e63946;
}

.no-result{
    padding:10px;
    font-size:14px;
    color:#888;
}
.shop-category{
    background:#f5f5f5;
    padding:40px 0;
}

.shop-category__top h2{
    font-size:28px;
    font-weight:700;
}

.shop-category__top p{
    color:#666;
    margin-bottom:25px;
}

.category-slider{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding-bottom:10px;
}

/* hide scrollbar */
.category-slider::-webkit-scrollbar{
    display:none;
}

.cat-item{
    min-width:150px;
    text-align:center;
}

.cat-item a{
    text-decoration:none;
    color:#222;
}

.cat-img{
    background:#fff;
    border-radius:15px;
    padding:10px;
    height:150px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 6px rgba(0,0,0,0.05);
    transition:0.3s;
}

.cat-img img{
    max-height:100px;
    object-fit:contain;
}

.cat-item:hover .cat-img{
    transform:translateY(-5px);
    box-shadow:0 5px 12px rgba(0,0,0,0.15);
}

.cat-item h4{
    margin-top:10px;
    font-size:15px;
    font-weight:600;
}
.product-grid{
    margin-top:30px;
}

.product-card{
    background:#fff;
    border-radius:12px;
    padding:12px;
    position:relative;
    box-shadow:0 2px 6px rgba(0,0,0,0.05);
    transition:0.3s;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 18px rgba(0,0,0,0.15);
}

.discount-badge{
    position:absolute;
    top:10px;
    left:10px;
    background:#e53935;
    color:#fff;
    font-size:12px;
    padding:4px 8px;
    border-radius:5px;
    font-weight:600;
}

.product-img{
    text-align:center;
    padding:10px;
}

.product-img img{
    max-height:140px;
    object-fit:contain;
}

.product-info h4{
    font-size:14px;
    margin:10px 0;
    height:40px;
    overflow:hidden;
}

.product-info a{
    color:#222;
    text-decoration:none;
}

.rating{
    font-size:13px;
    color:#f5a623;
}

.rating span{
    color:#777;
    margin-left:5px;
}

.price{
    font-size:16px;
    font-weight:700;
    margin-top:5px;
}

.price span{
    text-decoration:line-through;
    color:#888;
    font-weight:400;
    font-size:13px;
    margin-left:6px;
}

.product-actions{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
}

.wish{
    width:35px;
    height:35px;
    border-radius:50%;
    border:1px solid #ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#e53935;
}

.cart-btn{
    background:#0d6efd;
    color:#fff;
    padding:7px 12px;
    border-radius:6px;
    font-size:13px;
}

.sellzy-footer {
    background: #1270b3;
    color: #fff;
    padding: 60px 0 20px;
}

.sellzy-footer a {
    color: #d6f5f3;
    text-decoration: none;
}

.sellzy-footer a:hover {
    color: #fff;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;
}

.footer-desc {
    margin: 15px 0;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
}

.footer-app img {
    height: 40px;
    margin-right: 10px;
    margin-top: 10px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;
}

.footer-payments img {
    margin-top: 15px;
    max-width: 220px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    /* margin-top: 40px; */
    padding-top: 15px;
}

/* ===============================
   Trusted Section
=================================*/

.trusted-section {
    background: #9ee872;
    margin: 80px auto;
    border-radius: 40px;
    position: relative;
    padding: 120px 0px 60px;
    max-width: 1400px;
}

/* White scoop top */
.trusted-top {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: #f3f3f3;
    padding: 30px 60px;
    border-radius: 0 0 40px 40px;
    text-align: center;
    width: fit-content;
    max-width: 90%;
}

.trusted-top h2 {
    margin: 0;
    font-size: 28px;
}

.trusted-top p {
    margin: 5px 0 0;
    color: #666;
}

/* ===============================
   Slider Wrapper
=================================*/

#reviewSlider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    margin: auto;
}

#reviewSlider::-webkit-scrollbar {
    display: none;
}

/* ===============================
   Review Card
=================================*/

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 25px;
    flex: 0 0 auto;
    width: 420px;
    max-width: 90%;
}

/* Review Head */
.review-head {
    display: flex;
    gap: 15px;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    background: #ddd;
    border-radius: 50%;
}

.review-head h4 {
    margin: 0;
}

.review-head span {
    font-size: 13px;
    color: #777;
}

/* Rating */
.review-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a4f45;
}

.review-rating {
    margin: 18px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.verified {
    color: #1e7d2b;
    font-weight: 500;
}
#reviewSlider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px;
}

.review-card {
    scroll-snap-align: center;
}

/* ===============================
   Navigation
=================================*/

.trusted-nav {
    text-align: center;
    margin-top: 30px;
}

.trusted-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #fff;
    margin: 0 10px;
    cursor: pointer;
    font-size: 18px;
}

/* ===============================
   Mobile Responsive
=================================*/

@media (max-width: 768px) {

.trusted-section {
    background: #9ee872;
    margin: 30px 15px;
    border-radius: 28px;
    padding: 120px 0px 60px;
    position: relative;
}

    .trusted-top {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: #f3f3f3;
    padding: 20px 25px;
    border-radius: 0 0 25px 25px;
    text-align: center;
    width: 85%;
    max-width: 320px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.trusted-top h2 {
    font-size: 18px;
    margin-bottom: 6px;
}

.trusted-top p {
    font-size: 13px;
    line-height: 1.5;
}

.review-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 24px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.review-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a4f45;
}

.review-rating {
    margin: 18px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.verified {
    color: #1e7d2b;
    font-weight: 500;
}

    .review-head h4 {
        font-size: 16px;
    }

    .review-head span {
        font-size: 12px;
    }

    .review-rating {
        font-size: 13px;
    }

    .trusted-nav button {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* page background */
.signup-wrapper{
    background:#f3f4f6;
    padding:60px 15px;
}

/* card */
.signup-card{
    max-width:480px;
    margin:auto;
    background:#fff;
    border-radius:22px;
    padding:40px 35px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

/* title */
.signup-card h2{
    text-align:center;
    font-weight:700;
    margin-bottom:30px;
    font-size:28px;
}

/* labels */
.signup-card label{
    font-weight:600;
    margin-bottom:8px;
    display:block;
}

/* inputs */
.signup-card input{
    width:100%;
    height:52px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    padding:0 15px;
    font-size:15px;
    margin-bottom:18px;
    transition:all .3s;
}

.signup-card input:focus{
    border-color:#1d4ed8;
    box-shadow:0 0 0 3px rgba(29,78,216,.1);
    outline:none;
}

/* availability text */
.signup-card span{
    font-size:13px;
    margin-top:-10px;
    margin-bottom:10px;
    display:block;
}

/* button */
.signup-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:12px;
    background:#1d4ed8;
    color:#fff;
    font-weight:600;
    font-size:16px;
    transition:.3s;
}

.signup-btn:hover{
    background:#163bb3;
}

/* login text */
.login-link{
    text-align:center;
    margin-top:18px;
    font-size:15px;
}

.login-link a{
    color:#1d4ed8;
    font-weight:600;
}

.auth-bg{
    background:#f3f4f6;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.auth-card{
    width:100%;
    max-width:480px;
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.auth-card h2{
    text-align:center;
    font-weight:700;
    margin-bottom:30px;
}

/* labels */
.auth-card label{
    font-weight:600;
    margin-bottom:8px;
    display:block;
}

/* inputs */
.auth-card input{
    width:100%;
    height:52px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    padding:0 15px;
    font-size:15px;
    margin-bottom:0px;
    transition:.3s;
}

.auth-card input:focus{
    border-color:#1d4ed8;
    box-shadow:0 0 0 3px rgba(29,78,216,.1);
    outline:none;
}

/* button */
.auth-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:12px;
    background:#2b50d8;
    color:#fff;
    font-weight:600;
    font-size:16px;
    transition:.3s;
}

.auth-btn:hover{
    background:#1f3fb3;
}

/* footer link */
.auth-footer{
    text-align:center;
    margin-top:18px;
}

.auth-footer a{
    color:#2b50d8;
    font-weight:600;
}
/* password eye */
.password-wrap{
    position:relative;
}
.toggle-pass{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    font-size:14px;
    color:#666;
}

/* remember + forgot row */


.auth-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:12px 0 18px;
    font-size:14px;
}

/* left side */
.remember-me{
    display:flex;
    align-items:center;
    gap:8px;
}

.remember-me input[type="checkbox"]{
    width:16px;
    height:16px;
    cursor:pointer;
}

.remember-me label{
    margin:0;
    cursor:pointer;
}

.auth-options a{
    color:#2b50d8;
    font-weight:600;
    text-decoration:none;
}

/*--------------------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------------------*/
.no-slider .swiper-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.no-slider .swiper-slide {
    width: auto !important;
}

.no-slider .swiper-button-next,
.no-slider .swiper-button-prev,
.no-slider .swiper-pagination {
    display: none !important;
}

/* Main Swiper Container */
.categorySwiper {
    position: relative;
    padding: 40px 0 60px;
}

/* ===== Navigation Row (Arrows + Dots) ===== */
.categorySwiper .custom-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

/* Reset default swiper positioning */
.categorySwiper .swiper-button-prev,
.categorySwiper .swiper-button-next {
    position: static !important;
    width: 40px;
    height: 40px;
    margin: 0;
}

/* Arrow icon size */
.categorySwiper .swiper-button-prev::after,
.categorySwiper .swiper-button-next::after {
    font-size: 18px;
}

/* Remove absolute pagination positioning */
.categorySwiper .swiper-pagination {
    position: static !important;
    width: auto;
}

/* Grid fix */
.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
    align-items: stretch;
}

.categorySwiper .swiper-slide {
    height: auto;
}

/* Card spacing */
.cat-item {
    padding: 10px;
}





/* Arrow Background */
.categorySwiper .swiper-button-prev,
.categorySwiper .swiper-button-next {
    width: 42px;
    height: 42px;
    background: #ffffff;
    min-width: 42px;
    min-height: 42px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;   /* 🔥 ensures perfect circle */
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Arrow Icon Size */
.categorySwiper .swiper-button-prev::after,
.categorySwiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Hover Effect */
.categorySwiper .swiper-button-prev:hover,
.categorySwiper .swiper-button-next:hover {
    background: #2b6cb0;  /* change to your theme color */
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.categorySwiper .swiper-button-prev:hover::after,
.categorySwiper .swiper-button-next:hover::after {
    color: #fff;
}

/*---------------------------------------------------------------------------------------------*/

@media (max-width: 768px) {

    /* Reduce overall card padding */
    .cat-item {
        padding: 8px;
    }

    /* Make cards shorter */
    .cat-item a {
        padding: 15px 10px;
        border-radius: 20px;
    }

    /* Reduce image container height */
    .cat-img {
        height: 100px;  /* reduce from desktop size */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cat-img img {
        max-height: 70px;
        width: auto;
    }

    /* Reduce title spacing */
    .cat-item h4 {
        font-size: 14px;
        margin-top: 8px;
    }

}

/*---------------------------------------------------------------------------------------------------------------*/
.fa-shopping-bag:before {
    content: "\f290";
}

.site-footer {
    background: #ffffff;
    /* border-radius: 20px 20px 0 0; */
    padding: 60px 0 30px;
    font-family: "Segoe UI", sans-serif;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #6c7a82 !important;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #6c757d;
    font-size: 15px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #6f42c1;
}

.footer-top {
    padding-bottom: 30px;
}

.site-footer hr {
    border-color: #e5e5e5;
    margin: 30px 0;
}

/* Payment */
.payment-icons img {
    height: 30px;
    margin-right: 8px;
}

/* Social Icons */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-left: 8px;
    color: #fff;
    font-size: 14px;
}

.footer-social a:nth-child(1) { background: #3b5998; }
.footer-social a:nth-child(2) { background: #1da1f2; }
.footer-social a:nth-child(3) { background: #bd081c; }
.footer-social a:nth-child(4) { background: #ff0000; }
.footer-social a:nth-child(5) { background: #e4405f; }
.footer-social a:nth-child(6) { background: #0077b5; }

.footer-social a:hover {
    opacity: 0.85;
}

/* Copyright */
.copyright {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.product-card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:all .3s;
margin-bottom:25px;
}

.product-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.product-img{
position:relative;
overflow:hidden;
}

.product-img img{
width:100%;
height:230px;
object-fit:cover;
transition:.4s;
}

.product-card:hover img{
transform:scale(1.05);
}

.discount-badge{
position:absolute;
top:10px;
left:10px;
background:#ff3c00;
color:#fff;
padding:4px 10px;
font-size:12px;
border-radius:6px;
font-weight:600;
}

.product-info{
padding:15px;
}

.product-info h4{
font-size:16px;
font-weight:600;
margin-bottom:6px;
}

.rating-row{
display:flex;
align-items:center;
gap:6px;
font-size:13px;
color:#f7b500;
margin-bottom:6px;
}

.price-row{
display:flex;
justify-content:space-between;
align-items:center;
margin-top:5px;
}

.current{
font-size:18px;
font-weight:700;
color:#111;
}

.old{
text-decoration:line-through;
font-size:13px;
color:#888;
margin-left:6px;
}

.save-badge{
font-size:12px;
color:#1e7e34;
font-weight:600;
}

.cart-btn{
display:block;
text-align:center;
background:#0d6efd;
color:#fff;
padding:8px;
border-radius:6px;
margin-top:10px;
font-size:14px;
transition:.3s;
}

.cart-btn:hover{
background:#0b5ed7;
color:#fff;
}
.product-filter-bar{
display:flex;
justify-content:space-between;
align-items:center;
background:#fff;
padding:15px 20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.06);
margin-bottom:25px;
flex-wrap:wrap;
gap:15px;
}

.search-box{
position:relative;
}

.search-box i{
position:absolute;
left:10px;
top:50%;
transform:translateY(-50%);
color:#888;
}

.search-box input{
padding:8px 10px 8px 30px;
border:1px solid #ddd;
border-radius:6px;
width:220px;
}

.sort-select{
padding:8px 12px;
border-radius:6px;
border:1px solid #ddd;
}
.styled-pagination{
margin-top:30px;
}

.styled-pagination li{
display:inline-block;
margin:0 5px;
}

.styled-pagination a{
display:inline-block;
padding:8px 14px;
background:#fff;
border-radius:6px;
border:1px solid #ddd;
transition:.3s;
}

.styled-pagination a:hover{
background:#0d6efd;
color:#fff;
}