/* DEFAULT */

.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.head h2 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

.head .btn-one {
    padding: 12px 40px;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    gap: 10px;
    transition: ease-in .3s;
}

.head .btn-one span {
    font-size: 15px;
    font-weight: 400;
    color: var(--primary-color-font);
    text-transform: uppercase;
}


.head .btn-one svg {
    width: 19px;
    stroke: var(--primary-color-font);
}

.head .btn-one:hover {
    background-color: var(--secondary-color);
}

.head .btn-one:hover span {
    color: var(--secondary-color-font);
}

.head .btn-one:hover svg {
    stroke: var(--secondary-color-font);
}

@media (max-width:768px) {
    .head h2 {
        font-size: 15px;
    }

    .head {
        margin-bottom: 15px;
    }

    .head .btn-one {
        padding: 10px 20px;
    }

    .head .btn-one span {
        font-size: 12px;
    }

    .head .btn-one svg {
        width: 15px;
    }
}
@media (min-width:768px) {
  .top-sticky{
    position: sticky;
    top: 50px;
  }
}
/*HEADER */


/* ==========================
   HEADER TOPBAR MARQUEE
   ========================== */
.header-topbar-marquee {
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  height: 28px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

/* Marquee animation */
.header-topbar-marquee .marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  animation: marqueeMove 22s linear infinite;
  padding-left: 100%;
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Each message item */
.header-topbar-marquee .marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color-font);
font-weight: 400;
font-size: 12px;
}

/* Icon styling */
.header-topbar-marquee .marquee-content i {
  color: var(--primary-color-font);
  font-size: 10px;
}

/* Hover pause effect */
.header-topbar-marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .header-topbar-marquee {
    font-size: 0.85rem;
    height: 36px;
  }
  .header-topbar-marquee .marquee-content {
    gap: 40px;
    animation-duration: 28s;
  }
}


header {
    width: 100%;
    position: relative;
}

header .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    background: #fff;
    padding-top: 8px;
}

header .header-top .logo img {
    height: 60px;
}

header .header-top .right ul li:nth-child(2) svg {
    transform: rotate(-45deg);
}

header .header-top .right ul {
    display: flex;
    gap: 10px;
    cursor: pointer;
}

header .header-top .right ul li a svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-color);
    color: var(--primary-color);
}

header .header-top .right ul li a {
    display: block;
    width: 35px;
    height: 35px;
    text-align: center;
    padding: 7px;
    border-radius: 50%;
    border: solid 1px #737373;
    transition: .4s ease;
}

header .header-top .right ul li a:hover {
    background-color: var(--primary-color);
    color: var(--primary-color-font);
    border: solid 1px var(--primary-color);
}

header .header-top .right ul li a:hover svg {
    stroke: var(--primary-color-font);
    color: var(--primary-color-font);
}



.menu-sidebar .sidebar-menu.cloned-from-header {
    list-style: none;
    padding: 0;
}

.menu-sidebar .sidebar-menu.cloned-from-header li {
    margin-bottom: 10px;
}

.menu-sidebar .sidebar-menu.cloned-from-header a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: block;
}
.menu-sidebar .actions {
    margin: 20px 0px;
}
.menu-sidebar .actions ul{
    display: flex;
    flex-flow: row wrap;
    gap: 12px;
}
.menu-sidebar .actions ul li a svg{
    width: 15px;
    height: 15px;
    color: var(--primary-color);
}
.menu-sidebar .actions ul li a {
        border: solid 1px var(--primary-color);
    width: 32px;
    height: 33px;
    display: block;
    padding: 6px;
    border-radius: 50%;
    text-align: center;
}

header .header-bottom {
    padding: 5px 0px;
}

header .header-bottom .nav {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

header .header-bottom .nav>li {
    position: relative;
}

header .header-bottom .nav>li>a {
    display: block;
    padding: 10px 20px;
    color: #000000;
    text-decoration: none;
    font-size: 15px;
}

header .header-bottom .nav>li:hover>a {
    color: var(--primary-color);
}

header .header-bottom .nav>li>a i {
    font-size: 12px;
}

header .header-bottom .nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 180px;
    padding: 0;
    margin: 0;
}

header .header-bottom .nav li ul li a {
    padding: 10px 15px;
    display: block;
    color: #222;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header-bottom .nav li ul li a i {
    font-size: 12px;
}

header .header-bottom .nav li ul li a:hover {
    background: #f3f3f3;
}

header .header-bottom .nav li:hover ul {
    display: block;
}

/* Ensure parent li is relative */
header .header-bottom .nav li {
    position: relative;
}

/* Base dropdown (first-level) */
header .header-bottom .nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 230px;
    padding: 0;
    margin: 0;
    z-index: 999;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

/* Show first-level dropdown */
header .header-bottom .nav li:hover>ul {
    display: block;
}

/* Dropdown items */
header .header-bottom .nav li ul li {
    position: relative;
}

header .header-bottom .nav li ul li a {
    display: flex;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    background: #fff;
    transition: all 0.2s ease;
}

header .header-bottom .nav li ul li a:hover {
    background: #ebebeb;
    /* your theme yellow highlight */
    color: #000;
}

/* Sub-dropdown (second level) */
header .header-bottom .nav li ul.sub-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    /* open to right side */
    background: #fff;
    max-width: 230px;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1000;
}

/* Show sub-dropdown on hover */
header .header-bottom .nav li ul li:hover>.sub-dropdown {
    display: block;
}

/* Optional: arrow styling */
header .header-bottom .nav li a i {
    margin-left: 6px;
    font-size: 0.8rem;
}


@media (max-width:768px) {
    header .header-bottom {
        display: none;
    }

    header .header-top {
        padding: 7px 0px;
    }

    header .header-top .logo img {
        height: 40px;
    }

    header .header-top .right ul li:nth-child(2) {
        display: none;
    }
}

/* SIDEBAR */


header .header-top .menu-button {
    display: block;
    position: relative;
    width: 2.3rem;
    height: 2.3rem;
    font-size: 24px;
    border-radius: 8px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

header .header-top .menu-button svg {
    color: var(--color-one);
    font-size: 30px;
}

.menu-sidebar .menu-button:hover {
    transition: 0.3s ease;
    cursor: pointer;
}

.menu-sidebar .menu-button:focus {
    transition: 0.3s ease;
    cursor: pointer;
}

.sidebar .menu-button:hover {
    transition: 0.3s ease;
    cursor: pointer;
}

.sidebar .menu-button:focus {
    transition: 0.3s ease;
    cursor: pointer;
}

@keyframes MenuSidebarIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes MenuSidebarOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.menu-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    flex-direction: column;
    width: 300px;
    height: 100%;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.15);
    z-index: 1100000;
    background-color: white;
    padding: 15px;
    overflow-y: auto;
}

.menu-sidebar .follow-us {
    margin-top: 20px;
}

.menu-sidebar .follow-us h3 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 400;
}

.menu-sidebar .follow-us ul {
    display: flex;
    gap: 5px;
}

.menu-sidebar .follow-us ul li a {
    display: block;
    width: 40px;
    height: 40px;
    padding: 8px;
    text-align: center;
    color: black;
    background-color: #EDEDED;
    transition: ease-in .3s;
}

.menu-sidebar .follow-us ul li a:hover {
    background-color: black;
    color: white;
}

.menu-sidebar .follow-us ul li a i {
    font-size: 12px;
}

.menu-sidebar .sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
    border-bottom: solid 1px #E4E4E4;
}

.menu-sidebar .sidebar-header .login a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-sidebar .sidebar-header .login .icon {
    display: block;
    width: 35px;
    height: 35px;
    text-align: center;
    padding: 8px;
    border-radius: 50%;
    border: solid 1px #737373;
}

.menu-sidebar .sidebar-header .login .icon svg {
    width: 16px;
    stroke: var(--primary-color);
}

.menu-sidebar .sidebar-header .login h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.menu-sidebar .sidebar-header .close-button {
    width: 2.3rem;
    height: 2.3rem;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    color: #000000;
    background-color: transparent;
}

.menu-sidebar .sidebar-header .close-button:hover {
    transition: 0.3s ease;
    cursor: pointer;
}

.menu-sidebar .sidebar-header .close-button:focus {
    transition: 0.3s ease;
    cursor: pointer;
}

.menu-sidebar .sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}


.menu-sidebar .sidebar-menu>li {
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

/* Normal links */
.menu-sidebar .sidebar-menu li a {
    font-size: 15px;
    padding: 15px 0;
    display: inline-block;
    /* only take text width */
    color: #141414;
    text-decoration: none;
}

.menu-sidebar .sidebar-menu .has-dropdown .dropdown-title {
    display: flex;
    justify-content: space-between;
}

/* Dropdown toggle (icon only) */
.menu-sidebar .sidebar-menu .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Submenu */
.menu-sidebar .sidebar-menu .dropdown-menu {
    list-style: none;
    padding-left: 15px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.menu-sidebar .sidebar-menu .dropdown-menu a {
    display: block;
    padding: 10px;
    font-size: 15px;
    color: #444;
    text-decoration: none;
}

.menu-sidebar .sidebar-menu .dropdown-menu a:hover {
    background: #f5f5f5;
}

/* When open */
.menu-sidebar .sidebar-menu .dropdown-open>.dropdown-menu {
    max-height: 500px;
}

.menu-sidebar .sidebar-menu .dropdown-open>.dropdown-toggle i {
    transform: rotate(180deg);
}


.menu-sidebar .search-box {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 10px 0px;
    background-color: #F5F5F5;
    position: relative;
}

.menu-sidebar .search-box i {
    font-size: 14px;
    color: var(--primary-color);
    position: absolute;
    left: 8px;
    top: 14px;
}

.menu-sidebar .search-box input {
    flex: 1;
    border: none;
    font-size: 14px;
    outline: none;
    background-color: transparent;
    padding: 12px 12px 12px 35px;
}

/* CATEGORY */

.category-sec .category-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
}

.category-sec .category-card .image {
    position: relative;
    aspect-ratio: 5/7;
}

.category-sec .category-card .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-sec .category-card .image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(1deg, black, transparent);
    z-index: 1;
}

.category-sec .category-card .image h3 {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    letter-spacing: 1px;
}

/* BANNER SEC */

.banner-main .image {
    max-height: 85vh;
    aspect-ratio: 12/7;
    width: 100%;
}

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

/*LATEST PRODUCTS  &  BEST SELLER */

.latest-products:nth-child(even){
    background-color: #f1f1f1;
}
.latest-products {
    padding-bottom: 30px;
}

.best-seller {
    background-color: #f1f1f1;
}

.product-list-one {
    padding: 30px 0;
}

.product-list-one .swiper-nav {
    display: flex;
    gap: 10px;
}

.product-list-one .swiper-button-next,
.product-list-one .swiper-button-prev {
    position: relative;
    top: 8px;
    left: 0;
    width: 60px;
    height: 35px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color-font);
    transition: all 0.3s ease;
}

.product-list-one .swiper-button-next svg,
.product-list-one .swiper-button-prev svg {
    width: 20px;
    height: 20px;
}

.product-list-one .swiper-button-next:hover,
.product-list-one .swiper-button-prev:hover {
    background: var(--secondary-color);
    color: var(--secondary-color-font);
}

.product-list-one .swiper-button-next::after,
.product-list-one .swiper-button-prev::after {
    content: none !important;
}


@media (max-width:768px) {

    .product-list-one .swiper-button-next,
    .product-list-one .swiper-button-prev {
        width: 42px;
    }
    .category-sec .category-card .image h3{
        font-size: 12px;
        font-weight: 400;
        bottom: 14px;
        transform: translate(-50%, -5px);
    }
    .product-list-one{
        padding: 5px 0px;
    }
}

/* PRODUCT CARDS */

.product-card {
    margin-bottom: 35px;
}

.product-card .image {
    position: relative;
    aspect-ratio: 7/9;
}

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

.product-card .image .wishlist-icon i {
    position: absolute;
    color: var(--primary-color);
    top: 0;
    right: 0;
    padding: 16px;
    height: 50px;
    width: 50px;
    background-color: transparent;
    transition: ease-in .3s;
}

.product-card .image .wishlist-icon i:hover {
    background-color: #00000014;
}

.product-card .details {
    margin-top: 10px;
}

.product-card .details h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.product-card .price-details {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.product-card .price-details .price {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.product-card .price-details span {
    font-size: 13px;
    color: #00741F;
}

.product-card .price-details .price h4 {
    font-size: 16px;
    font-weight: 400;
}

.product-card .price-details .price .price-new {
    color: var(--primary-color);
}

.product-card .price-details .price .price-old {
    color: rgb(99, 99, 99);
    text-decoration: line-through;
}

/*wishlist  */
.product-card .details .actions {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.product-card .details .actions button {
    height: 38px;
    padding: 10px 6px;
}

.product-card .details .actions button.delete {
    border: solid 1px var(--secondary-color);
    color: var(--secondary-color);
    width: 30%;
    margin-right: 10px;
    background-color: transparent;
    transition: .3s ease;
}
.product-card .details .actions button.delete:hover{
    background-color: var(--secondary-color);
    color: var(--secondary-color-font);
}
.product-card .details .actions button.delete i {
    font-size: 15px;
}

.product-card .details .actions button.add-cart {
    display: flex;
    gap: 5px;
    justify-content: center;
    border: none;
    align-items: center;
    background-color: var(--primary-color);
    border: solid 1px var(--primary-color);
    color: var(--primary-color-font);
    width: 100%;
    transition: .3s ease;
}
.product-card .details .actions button.add-cart:hover{
    background-color: var(--secondary-color);
    color: var(--secondary-color-font);
    border-color: var(--secondary-color);
}
.product-card .details .actions button.add-cart span {
    font-size: 14px;
    text-transform: uppercase;
}

.product-card .details .actions button.add-cart i {
    font-size: 12px;
}

@media (max-width:768px) {
    .product-card .details h3 {
        -webkit-line-clamp: 2;
    }

    .product-card .price-details .price h4 {
        font-size: 13px;
    }

    .product-card .price-details {
        flex-flow: row wrap;
        gap: 10px;
    }

    .product-card .price-details span {
        font-size: 12px;
    }

    .product-card .details .actions button.delete i {
        font-size: 12px;
    }

    .product-card .details .actions button.add-cart i {
        font-size: 10px;
    }

    .product-card .details .actions button.add-cart span {
        font-size: 12px;
    }

    .product-card .details .actions button {
        height: 32px;
        padding: 6px !important;
    }
}

/* BRANDS */

.our-brands {
    padding: 0px 0px 30px 0px;
}

.our-brands .brand-logo-card .image {
    aspect-ratio: 6/3;
    border: solid 1px rgba(0, 0, 0, 0.137);
    text-align: center;
    background-color: transparent;
}

.our-brands .brand-logo-card .image img {
    padding: 10px;
    width: auto;
    height: 100%;
    object-fit: cover;

}

/* FOOTER */

footer {
    padding-top: 60px;
    background-color: #F3F3F3;
}

footer .row {
    padding-bottom: 40px;
}

footer .footer-logo-widget {
    max-width: 400px;
    margin-bottom: 30px;
}

footer .footer-logo-widget img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

footer .footer-logo-widget p {
    font-size: 15px;
    color: #605F5F;
}

footer .footer-logo-widget .subscribe {
    display: flex;
    align-items: center;
    max-width: 500px;
    border-bottom: 1px solid #333;
    margin: 10px 0px 20px 0px;
}

footer .footer-logo-widget .subscribe input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 10px;
    font-size: 16px;
    color: #555;
    background-color: transparent;
}

footer .footer-logo-widget .subscribe button svg {
    width: 20px;
}

footer .footer-logo-widget .subscribe button {
    background: #000000;
    border: none;
    color: #fff;
    width: 46px;
    height: 46px;
    font-size: 20px;
    cursor: pointer;
}

footer .footer-logo-widget .subscribe button:hover {
    background: var(--primary-color);
}

footer .footer-logo-widget ul {
    display: flex;
    gap: 10px;
}

footer .footer-logo-widget ul li a {
    display: block;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: solid 1px #bfbfbf;
    text-align: center;
}

footer .footer-logo-widget ul li a i {
    font-size: 14px;
}

footer .footer-logo-widget ul li a:hover {
    border: solid 1px var(--primary-color);
    background-color: var(--primary-color);
    color: var(--primary-color-font);
}

footer .footer-list-widget {
    margin-bottom: 30px;
}

footer .footer-list-widget h2 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

footer .footer-list-widget ul li {
    margin-bottom: 10px;
}

footer .footer-list-widget ul li a {
    font-size: 15px;
    color: #141414;
}

footer .footer-list-widget ul li a:hover {
    color: #555;
}

footer .copyright {
    padding: 20px 0px;
    border-top: solid 1px #0000002e;
}

footer .copyright p {
    text-align: center;
    color: #141414;
    font-size: 16px;
}

footer .copyright a {
    color: var(--primary-color);
    font-size: 16px;
}
@media (max-width:768px) {
    footer .footer-list-widget h2{
        font-size: 18px;
        margin-bottom: 10px;
    }
    footer .footer-list-widget{
        margin-bottom: 15px;
    }
}


/* BREADCRUMB ONE */


.breadcrumb-one .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    background-color: #F8F8F8;
}

.breadcrumb-one .left .breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    font-size: 15px;
}

.breadcrumb-one .left h1 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.breadcrumb-one .left .breadcrumb li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.breadcrumb-one .left .breadcrumb li svg {
    width: 16px;
}

.breadcrumb-one .left .breadcrumb li:last-child {
    color: var(--primary-color);
    padding-right: 0;
}

.breadcrumb-one .left .breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb-one .left .breadcrumb a {
    text-decoration: none;
    font-size: 15px;
}

.breadcrumb-one .left .breadcrumb a:hover {
    text-decoration: underline;
}


/* PRODUCT LIST PAGE */
.product-list {
    padding-bottom: 20px;
}

.product-list .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
    border-bottom: solid 1px #EFEFEF;
    margin-bottom: 20px;
}

.product-list .top .right .sort-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.product-list .top .left .filter-btn {
    background-color: #F8F8F8;
    border: none;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-list .top .left .filter-btn span {
    font-size: 14px;
    font-weight: 400;
}

.product-list .top .left .filter-btn svg {
    width: 15px;
}

.product-list .top .right .sort-dropdown select {
    padding: 8px 12px;
    border: none;
    background: #F8F8F8;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.product-list .top .right .sort-dropdown select::after {
    border: none;
}
@media (max-width:768px){
    .breadcrumb-one .container{
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
}

/* FILTER SIDEBAR */


.filter-sidebar .menu-button:hover {
    transition: 0.3s ease;
    cursor: pointer;
}

.filter-sidebar .menu-button:focus {
    transition: 0.3s ease;
    cursor: pointer;
}

@keyframes FilterSidebarIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes FilterSidebarOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.filter-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    flex-direction: column;
    width: 340px;
    height: 100%;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.15);
    z-index: 1100000;
    background-color: white;
    padding: 15px;
}

.filter-sidebar .sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
    border-bottom: solid 1px #E4E4E4;
}

.filter-sidebar .sidebar-header .login a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-sidebar .sidebar-header .login .icon {
    display: block;
    width: 35px;
    height: 35px;
    text-align: center;
    padding: 8px;
    border-radius: 50%;
    border: solid 1px #737373;
}

.filter-sidebar .sidebar-header .login .icon svg {
    width: 16px;
    fill: var(--primary-color);
}

.filter-sidebar .sidebar-header .login h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.filter-sidebar .sidebar-header .close-button {
    width: 2.3rem;
    height: 2.3rem;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    color: #000000;
    background-color: transparent;
    cursor: pointer;
}

.filter-sidebar .filter-lists {
    margin-top: 10px;
    overflow-y: auto;
    height: 100%;
    position: relative;
    padding-bottom: 55px;
}

.filter-sidebar .change-btn {
    position: fixed;
    bottom: 10px;
    display: flex;
    left: 10px;
    right: 10px;
    width: 100%;
}

.filter-sidebar .reset-btn {
    background: #ffffff;
    border: solid 1px black;
    padding: 15px 15px;
    cursor: pointer;
    width: 30%;
    margin-right: 5px;
}

.filter-sidebar .apply-btn {
    background: #000000;
    color: white;
    border: none;
    padding: 15px 15px;
    cursor: pointer;
    width: 60%;
}

.filter-sidebar .filter-item {
    border-bottom: 1px solid #eee;
}

.filter-sidebar .filter-toggle {
    background: none;
    border: none;
    width: 100%;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-sidebar .filter-content {
    display: none;
    font-size: 14px;
    padding: 10px 0px;
}

.filter-sidebar .filter-content label {
    display: block;
    margin-bottom: 0px;
    cursor: pointer;
    padding: 5px 0px;
}

.filter-sidebar .arrow {
    transition: transform 0.3s;
}

.filter-sidebar .filter-toggle.active .arrow {
    transform: rotate(180deg);
}


/* Chrome, Edge, Safari */
.filter-sidebar .filter-lists::-webkit-scrollbar {
    width: 3px;
}

.filter-sidebar .filter-lists::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.filter-sidebar .filter-lists::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.filter-sidebar .filter-lists::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* Firefox */
.filter-sidebar .filter-lists {
    scrollbar-width: thin;
    scrollbar-color: #999 #f1f1f1;
}


/* CART */

.cart-main .right {
    padding: 25px;
    border: solid 1px #EDEDED;
}

.cart-main .right h2 {
    font-size: 17px;
    text-transform: uppercase;
    border-bottom: solid 1px #EDEDED;
    padding-bottom: 5px;
    font-weight: 600;
    color: #141414;
}
.cart-main .right ul .cart-actions button{
    margin-bottom: 12px;
}
.cart-main .right ul {
    padding: 20px 0px;
    border-bottom: solid 1px #EDEDED;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
}

.cart-main .right ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-main .right ul li h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}

.cart-main .right ul li span {
    font-size: 16px;
}

.cart-main .right .total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-main .right .total h3 {
    font-size: 17px;
    font-weight: 500;
}

.cart-main .right .total span {
    font-size: 17px;
    font-weight: 500;
}

.cart-main .right a {
    background-color: var(--primary-color);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: var(--primary-color-font);
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    transition: ease-in .3s;
}

.cart-main .right a:hover {
    background-color: var(--secondary-color);
    color: var(--secondary-color-font);
}

.cart-main .left {
    margin-bottom: 20px;
}

.cart-main .left .cart-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-main .left .carlist-single {
    padding: 15px;
    border: 1px solid #ddd;
}

.cart-main .left .carlist-single .actions {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    margin-top: 12px;
}

.cart-main .left .carlist-single .actions button {
    background-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 2px;
    border: none;
    padding: 7px;
    transition: ease-in .3s;
    border: solid  1px #e7e7e7;
}

.cart-main .left .carlist-single .actions button:hover {
    background-color: #e1e1e1;
}

.cart-main .left .carlist-single .actions button i {
    font-size: 12px;
}

.cart-main .left .carlist-single .actions button span {
    font-size: 12px;
    text-transform: uppercase;
}

.cart-main .left .carlist-single .actions .remove {
    color: black;
}

.cart-main .left .carlist-single .actions .wishlist {
    color: var(--primary-color);
}

.cart-main .left .top-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-main .left .top-details .pricing {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cart-main .left .product-info {
    display: flex;
    align-items: center;
    gap: 15px;
    aspect-ratio: 7 / 10;
    max-width: 90px;
}

.cart-main .left .product-info img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-main .left .details .product-details h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.cart-main .left .details {
    display: grid;
    grid-template-columns: 3fr 1fr;
}

.cart-main .left .details .product-details .bottom {
    display: flex;
    gap: 20px;
}

.cart-main .left .details .product-details span {
    font-size: 14px;
    color: #555;
    display: flex;
    gap: 5px;
}

.cart-main .left .details .product-details span div {
    width: 20px;
    height: 20px;
    background-color: red;
}

.cart-main .left .total {
    font-size: 15px;
    font-weight: 500;
    color: #222;
}

.cart-main .left .quantity {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: solid 1px #ddd;
    padding: 5px 10px;
    width: max-content;
    border-radius: 4px;
}

.cart-main .left .quantity .qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    border-radius: 4px;
}

.cart-main .left .quantity input {
    width: 40px;
    border: none;
    text-align: center;
    font-size: 15px;
}



.cart-main .left .empty-cart {
    margin: 0 auto;
    background: #fff;
    padding: 3rem 2rem;
    border: solid 1px #dbdbdb;
    transition: .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cart-main .left .empty-cart:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cart-main .left .empty-cart i {
    font-size: 4rem;
    color: #d1d1d1;
    margin-bottom: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}


.cart-main .left .empty-cart h4 {
    font-weight: 600;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.cart-main .left .empty-cart p {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 1.5rem;
}

.cart-main .left .empty-cart .btn-one {
    padding: 12px 40px;
    background-color: var(--primary-color);
    gap: 10px;
    transition: ease-in .3s;
    display: flex;
    align-items: center;
}



@media (max-width:992px) {
    .cart-main .left .details {
        grid-template-columns: auto;
    }

    .cart-main .left .details .product-details h4 {
        -webkit-line-clamp: 2;
    }
    .cart-main .left .carlist-single .actions {
        margin-top: 0px;
    }
    .cart-main .left .top-details {
        padding: 0;
        gap: 8px;
    }
.cart-main .right{
    padding: 15px;
}
    .cart-main .left .details .product-details .bottom {
        margin-bottom: 10px;
        gap: 10px;
        flex-flow: row wrap;
    }

    .cart-main .left .details .product-details h4 {
        font-size: 14px;
        margin-bottom: 8px;
        font-weight: 400;
    }

    .cart-main .left .quantity .qty-btn {
        height: 20px;
        width: 20px;
    }

    .cart-main .left .top-details .pricing {
        justify-content: space-between;
    }

    .cart-main .left .details .product-details span div {
        height: 15px;
        width: 15px;
    }
    .cart-main .left .product-info{
        max-width: 80px;
    }
    .cart-main .left .carlist-single{
        padding: 10px;
    }
}



/* PRODUCT DETAILS */

.product-details-main .row {
    display: flex;
    align-items: flex-start;
}

.product-details-main .sticky-top {
    position: sticky;
    top: 40px;
}




/* ========== TAB GALLERY BASE ========== */
.product-details-main .left .tab-gallery {
  display: flex;
  gap: 15px;
  margin-bottom: 24px;
  position: relative;
}

.product-details-main .left .thumbnail-swiper {
  height: 550px;        
  overflow: hidden;
  flex-shrink: 0;
  padding:5px 0px 70px 0px;
}

.product-details-main .left .thumbnail-swiper .swiper-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-details-main .left .thumbnail-swiper .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 80px;
}

.product-details-main .left .thumbnail-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #c5c5c5;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.product-details-main .left .thumbnail-swiper img:hover,
.product-details-main .left .thumbnail-swiper img.active {
  border-color: var(--primary-color);
}

/* optional navigation arrows for thumbnail swiper */
.product-details-main .left .thumbnail-swiper .swiper-button-prev,
.product-details-main .left .thumbnail-swiper .swiper-button-next {
  background-color: #5a5a5a;
  color: #fff;
  width: 25px;
  height: 35px;
  border-radius: 2px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.product-details-main .left .thumbnail-swiper .swiper-button-prev:hover,
.product-details-main .left .thumbnail-swiper .swiper-button-next:hover {
  background-color: #000;
}

/* ========== MAIN IMAGE AREA ========== */
.product-details-main .left .tab-main-image {
  width: calc(100% - 90px); /* take remaining space */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-details-main .left .tab-main-image .mySlides {
  display: none;
  width: 100%;
  aspect-ratio: 6 / 7;
  border: 1px solid #e9e9e9;
  justify-content: center;
  align-items: center;
}

.product-details-main .left .tab-main-image .mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details-main .left .tab-main-image .prev,
.product-details-main .left .tab-main-image .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(90, 90, 90, 0.8);
  color: white;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 3px;
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}

.product-details-main .left .tab-main-image .prev:hover,
.product-details-main .left .tab-main-image .next:hover {
  background-color: black;
}

.product-details-main .left .tab-main-image .prev { left: 10px; }
.product-details-main .left .tab-main-image .next { right: 10px; }


/* right */
.product-details-main .right .topbar .breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.product-details-main .right .topbar .breadcrumb li {
    display: inline;
    max-width: 160px;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.product-details-main .right .topbar .breadcrumb li+li:before {
    content: "›";
    padding: 0 8px;
    color: #888;
}

.product-details-main .right .topbar .breadcrumb a {
    text-decoration: none;
    color: #585858;
    font-size: 14px;
}

.product-details-main .right .topbar .breadcrumb a:hover {
    text-decoration: underline;
}

.product-details-main .right .topbar h2 {
    font-size: 26px;
    font-weight: 600;
    margin: 15px 0px 10px 0px;
}

.product-details-main .right .topbar {
    border-bottom: solid 1px #E3E3E3;
}

.product-details-main .right .topbar .rating {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    justify-content: space-between;
    /* float: right; */
    align-items: center;
    margin-bottom: 15px;
}

.product-details-main .right .topbar .rating .icon {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background-color: #00741F;
    color: white;
}

.product-details-main .right .topbar .rating .icon span {
    font-size: 14px;
}

.product-details-main .right .topbar .rating .icon i {
    font-size: 12px;
}

.product-details-main .right .topbar .rating .count {
    color: #878484;
    font-size: 15px;
}

.product-details-main .right .middlebar {
    padding: 20px 0px;
    border-bottom: solid 1px #E3E3E3;
}

.product-details-main .right .middlebar .price-sec {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.product-details-main .right .middlebar .price-sec .price {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-details-main .right .middlebar .price-sec .price h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-color);
}

.product-details-main .right .middlebar .price-sec .price span {
    font-size: 18px;
    font-weight: 400;
    color: #858585;
    text-decoration: line-through;
}

.product-details-main .right .middlebar .price-sec .offer-percentage {
    color: #00741F;
    font-size: 15px;
}

.product-details-main .right .middlebar .color {
    margin-bottom: 18px;
}

.product-details-main .right .middlebar .color h4 {
    font-size: 12px;
    color: #878484;
    margin-bottom: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.product-details-main .right .middlebar .color ul {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-details-main .right .middlebar .color ul li a {
    display: inline-block;
    width: 35px;
    height: 35px;
    border: 1px solid transparent;
    padding: 2px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.product-details-main .right .middlebar .color ul li a.active {
    border-color: var(--primary-color);
}

.product-details-main .right .middlebar .color ul li a span {
    display: block;
    width: 100%;
    height: 100%;
}

.product-details-main .right .middlebar .color ul li a.color-1 span {
    background-color: #003807;
}

.product-details-main .right .middlebar .color ul li a.color-2 span {
    background-color: #00c2c2;
}

.product-details-main .right .middlebar .color ul li a.color-3 span {
    background-color: #960000;
}

.product-details-main .right .middlebar .select-size {
    margin-bottom: 30px;
}

.product-details-main .right .middlebar .select-size h4 {
    font-size: 12px;
    color: #878484;
    margin-bottom: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.product-details-main .right .middlebar .select-size ul {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-details-main .right .middlebar .select-size ul li a {
    display: inline-block;
    border: 1px solid rgb(165, 165, 165);
    padding: 8px 16px;
    transition: border-color 0.3s ease;
    font-size: 14px;
}

.product-details-main .right .middlebar .select-size ul li a.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.product-details-main .right .middlebar .select-size .size-chart {
    display: flex;
    margin-top: 10px;
}

.product-details-main .right .middlebar .select-size .size-chart a {
    font-size: 12px;
    color: #878484;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0px 15px 0px 0px;
    margin-right: 15px;
    border-right: 1px solid #878484;
}

.product-details-main .right .middlebar .select-size .size-chart a:last-child {
    border: none;
}

.product-details-main .right .middlebar .select-quantity {
    margin-bottom: 20px;
}

.product-details-main .right .middlebar .select-quantity h4 {
    font-size: 12px;
    color: #878484;
    margin-bottom: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.product-details-main .right .middlebar .select-quantity .quantity {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-details-main .right .middlebar .select-quantity .quantity .action {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    overflow: hidden;
}

.product-details-main .right .middlebar .select-quantity .quantity .action button {
    width: 35px;
    height: 35px;
    border: none;
    background: #f5f5f5;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.product-details-main .right .middlebar .select-quantity .quantity .action button:hover {
    background: var(--primary-color);
    color: #fff;
}

.product-details-main .right .middlebar .select-quantity .quantity .action input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 16px;
    font-weight: 500;
}

.product-details-main .right .middlebar .select-quantity .quantity .stock {
    font-size: 14px;
    color: green;
    font-weight: 500;
}

.product-details-main .right .middlebar .buttons {
    display: flex;
    gap: 15px;
}

.product-details-main .right .middlebar .buttons .button {
    padding: 15px;
    width: 50%;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

.product-details-main .right .middlebar .buttons .button:hover {
    opacity: .8;
    transition: ease-in-out .3s;
}

.product-details-main .right .middlebar .buttons .button i {
    font-size: 15px;
    color: var(--primary-color-font);
}

.product-details-main .right .middlebar .buttons .button span {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--primary-color-font);
}

.product-details-main .right .middlebar .buttons .wishlist {
    background-color: var(--secondary-color);
    color: var(--secondary-color-font) !important;
}

.product-details-main .right .middlebar .buttons .wishlist span,
.product-details-main .right .middlebar .buttons .wishlist i {
    color: var(--secondary-color-font) !important;
}

.product-details-main .right .middlebar .buttons .add-to-cart {
    background-color: var(--primary-color);
}

.product-details-main .right .bottombar {
    padding: 20px 0px;
}

.product-details-main .right .bottombar .offers {
    margin-bottom: 20px;
}

.product-details-main .right .bottombar .offers h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
    border-bottom: solid 1px #E3E3E3;
    padding-bottom: 3px;
}

.product-details-main .right .bottombar .offers ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-details-main .right .bottombar .offers ul li i {
    color: #00741F;
    font-size: 18px;
}

.product-details-main .right .bottombar .offers ul li span {
    font-size: 15px;
}

.product-details-main .right .bottombar .product-features {
    margin-bottom: 30px;
}

.product-details-main .right .bottombar .product-features .product-feature-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 11px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.product-details-main .right .bottombar .product-features .product-feature-card svg {
    width: 22px;
    height: 30px;
}

.product-details-main .right .bottombar .product-features .product-feature-card span {
    font-size: 12px;
    color: var(--primary-color);
}

.product-details-main .right .bottombar .product-features .swiper-nav {
    position: relative;
}

.product-details-main .right .bottombar .product-features .swiper-button-prev,
.product-details-main .right .bottombar .product-features .swiper-button-next {
    width: 35px;
    height: 35px;
    border: 1px solid var(--primary-color, #333);
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #333);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-details-main .right .bottombar .product-features .swiper-button-prev:hover,
.product-details-main .right .bottombar .product-features .swiper-button-next:hover {
    background: var(--primary-color, #333);
    color: #fff;
}

.product-details-main .right .bottombar .product-features .swiper-button-prev {
    left: -50px;
}

.product-details-main .right .bottombar .product-features .swiper-button-next {
    right: -50px;
}

.product-details-main .right .bottombar .about-product {
    margin-bottom: 20px;
}

.product-details-main .right .bottombar .about-product h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
    border-bottom: solid 1px #E3E3E3;
    padding-bottom: 3px;

}

.product-details-main .right .bottombar .about-product ul li {
    font-size: 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-details-main .right .bottombar .product-payment {
    margin-bottom: 20px;
}

.product-details-main .right .bottombar .product-payment h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
    border-bottom: solid 1px #E3E3E3;
    padding-bottom: 3px;
}

.product-details-main .right .bottombar .product-payment .payment-card-row {
    display: flex;
    gap: 10px;
    flex-flow: row wrap;
}

.product-details-main .right .bottombar .product-payment .payment-card-row .image {
    height: 40px;
    width: 70px;
    object-fit: cover;
    background-color: transparent;
    padding: 2px;
    display: flex;
    justify-content: center;
    border: solid 1px rgb(185, 185, 185);
    align-items: center;
}

.product-details-main .right .bottombar .product-payment .payment-card-row .image img {
    height: 20px;
    width: auto;
}

@media (max-width:768px) {
    .product-details-main .left .thumbnail-swiper {
        display: none;
    }
.product-details-main .left .tab-main-image{
    width: 100%;
}
.product-details-main .right .topbar h2{
    font-size: 20px;
    margin: 15px 0px;
}
.product-details-main .right .middlebar .price-sec .price h3{
    font-size: 20px;
}
.product-details-main .right .middlebar .price-sec .price span{
    font-size: 16px;
}
.product-details-main .right .topbar .rating .icon span{
    font-size: 12px;
}
.product-details-main .right .topbar .rating .icon i{
    font-size: 12px;
}
.product-details-main .right .bottombar .product-features .product-feature-card{
    padding: 5px;
}
.product-details-main .right .bottombar .product-features .product-feature-card span{
    font-size: 10px;
    text-align: center;
}
.product-details-main .right .middlebar .price-sec{
    margin-bottom: 10px;
}
.product-details-main .right .middlebar .buttons{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px;
    background-color: white;
    z-index: 999;
    box-shadow: 0px -7px 30px 0 rgb(0 0 0 / 10%);
}
.product-details-main .right .middlebar .buttons i,
.product-details-main .right .middlebar .buttons span{
    font-size: 12px !important;
}
.product-details-main .right .middlebar .buttons .button{
    padding: 12px;
    gap: 5px;
}

    .product-details-main .left .customization {
        margin-right: 0px;
    }

    .product-details-main .left .tab-gallery {
        margin-right: 0px;
    }

    .product-detail-mains .right .topbar h2 {
        font-size: 18px;
        margin: 5px 0px;
        line-height: 28px;
    }

    .product-details-main .left {
        margin-bottom: 20px;
    }
    .product-details-main .right .bottombar{
        padding: 10px 0px;
    }
    .product-details-main .right .middlebar{
        padding: 10px 0px;
    }
    .product-details-main .right .middlebar .select-quantity{
        margin-bottom: 0px;
    }
}

.product-details-main .product-description {
    margin-bottom: 30px;
}

.product-details-main .product-description .title {
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: solid 1px #e1e1e1;
    padding: 5px 0px;
    margin-bottom: 15px;
}

.product-details-main .product-description p {
    margin-bottom: 10px;
}

.product-details-main .product-description ul li {
    font-size: 15px;
    line-height: 30px;
}

.product-details-main .product-description .product-mockups {
    margin-top: 20px;
}

.product-details-main .product-description .product-mockups .swiper {
    width: 100%;
    overflow: hidden;
}

.product-details-main .product-description .product-mockups img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.product-details-main .product-description .product-mockups .swiper-button-next,
.product-details-main .product-description .product-mockups .swiper-button-prev {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
}

.product-details-main .product-description .product-mockups .swiper-button-next:hover,
.product-details-main .product-description .product-mockups .swiper-button-prev:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

.product-details-main .product-description .product-mockups .swiper-pagination-bullet {
    background: #333;
}

.product-details-main .product-description .product-mockups .swiper-button-next:after,
.product-details-main .product-description .product-mockups .swiper-button-prev:after {
    display: none;
}


.product-details-main .product-reviews .title {
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: solid 1px #e1e1e1;
    padding: 5px 0px;
    margin-bottom: 15px;
}



.product-details-main .product-reviews {
    margin-top: 40px;
}

.product-details-main .product-reviews .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-details-main .reviews .review-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.product-details-main .review-item .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-details-main .review-item .reviewer-name {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.product-details-main .review-item .review-date {
    font-size: 14px;
    color: #888;
}

.product-details-main .review-item .review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    background-color: #00741F;
    color: white;
    width: max-content;
    margin-bottom: 10px;
}

.product-details-main .review-item .review-rating span {
    font-size: 14px;
}

.product-details-main .review-item .review-rating i {
    font-size: 14px;
}

.product-details-main .review-item .review-item .review-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.review-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
    padding: 0;
    margin-top: 15px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    opacity: 0;
    background: #f9f9f9;
}

.review-form.open {
    max-height: 600px;
    padding: 20px;
    opacity: 1;
}

.review-form label {
    font-weight: 600;
    color: #555;
    display: block;
    margin-bottom: 8px;
}

.review-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    font-size: 14px;
    resize: vertical;
}

#rateButton {
    background-color: var(--primary-color);
    color: var(--primary-color-font);
    padding: 6px ;
    font-weight: 400;
    font-size: 12px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.custom-btn {
    background-color: var(--primary-color);
    color: var(--primary-color-font);
    padding: 10px 20px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.custom-btn:hover {
    background-color: var(--secondary-color);
}

/* Overlay background */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal box */
.modal-overlay .modal-content {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: fadeInUp 0.3s ease;
}

/* Close button */
.modal-overlay .close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  color: #555;
}

.modal-overlay .close-modal:hover {
  color: #000;
}

/* Star Rating */
#starRating {
  display: flex;
  gap: 8px;
  font-size: 26px;
  cursor: pointer;
}

.star {
  color: #ccc;
  transition: color 0.2s ease;
}

.star.hover,
.star.selected {
  color: #ffb400;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* CART */


.checkout-main .right {
    padding: 25px;
    border: solid 1px #EDEDED;
}

.checkout-main .right h2 {
    font-size: 17px;
    text-transform: uppercase;
    border-bottom: solid 1px #EDEDED;
    padding-bottom: 5px;
    font-weight: 600;
    color: #141414;
}

.checkout-main .right ul {
    padding: 20px 0px;
    border-bottom: solid 1px #EDEDED;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 20px;
}

.checkout-main .right ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-main .right ul li h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}

.checkout-main .right ul li span {
    font-size: 16px;
}

.checkout-main .right .total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkout-main .right .total h3 {
    font-size: 17px;
    font-weight: 500;
}

.checkout-main .right .total span {
    font-size: 17px;
    font-weight: 500;
}

.checkout-main .right a {
    background-color: var(--primary-color);
    width: 100%;
    display: block;
    padding: 12px;
    color: var(--primary-color-font);
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    transition: ease-in .3s;
}

.checkout-main .right a:hover {
    background-color: var(--secondary-color);
    color: var(--secondary-color-font);
}


.checkout-main .left .checkout-details {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
}

.checkout-main .left .checkout-details .main-heading {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.checkout-main .left .checkout-details .sub-heading {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #444;
}

.checkout-main .left .checkout-details .address-item {
    display: block;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s;
}

.checkout-main .left .checkout-details .address-item input[type="radio"] {
    display: none;
}

.checkout-main .left .checkout-details .address-item input[type="radio"]:checked+.checkout-main .left .checkout-details .address-item .address-content {
    border-left: 4px solid var(--primary-color);
    background: #f9fcff;
}

.checkout-main .left .checkout-details .address-item .address-content {
    display: flex;
    flex-direction: column;
}

.checkout-main .left .checkout-details .address-item .address-content .address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.checkout-main .left .checkout-details .address-item .address-content .address-header .name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-main .left .checkout-details .address-item .address-content .address-header h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.checkout-main .left .checkout-details .address-item .address-content .address-header .phone {
    font-size: 14px;
    color: #666;
}

.checkout-main .left .checkout-details .address-item .address-content .address-text {
    font-size: 14px;
    color: #444;
    margin: 5px 0 10px;
    line-height: 1.4;
}

.checkout-main .left .checkout-details .address-item .address-content .address-actions {
    display: flex;
    gap: 10px;
}

.checkout-main .left .checkout-details .address-item .radio-icon {
    font-size: 18px;
    color: #aaa;
    width: 20px;
    text-align: center;
}

.checkout-main .left .checkout-details .add-address a {
    border: solid 1px black;
    padding: 12px;
    width: 100%;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.checkout-main .left .checkout-details .add-address a i {
    font-size: 14px;
}

.checkout-main .left .checkout-details .add-address a span {
    font-size: 15px;
    text-transform: uppercase;
}

.checkout-main .left .checkout-details .address-item input[type="radio"] {
    display: none;
    /* hide native radio */
}

.checkout-main .left .checkout-details .address-item input[type="radio"]:checked~.address-content .radio-icon i {
    content: "\f192";
    font-weight: 900;
}

.checkout-main .left .checkout-details .address-item .address-content .address-actions button {
    padding: 8px 15px;
    border: none;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.checkout-main .left .checkout-details .address-item .address-content .address-actions button span {
    font-size: 14px;
    text-transform: uppercase;
}

.checkout-main .left .checkout-details .address-item .address-content .address-actions button i {
    font-size: 14px;
}

.checkout-main .left .checkout-details .address-item .address-content .address-actions .edit {
    background: var(--primary-color);
    color: var(--primary-color-font);
}

.checkout-main .left .checkout-details .address-item .address-content .address-actions .delete {
    background: var(--secondary-color);
    color: var(--secondary-color-font);
}

.checkout-main .left .checkout-details .address-item .address-content .address-actions button:hover {
    opacity: 0.85;
}

.checkout-main .right .checkout-products .single-product {
    padding-bottom: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: solid 1px #e1e1e1;
}
.checkout-main .right .checkout-products .single-product .image {
height: 75px;
    max-width: 60px;
    overflow: hidden;
    border: solid 1px;
}
.checkout-main .right .checkout-products .single-product .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-main .right .checkout-products .single-product .product-details h4 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.checkout-main .right .checkout-products .single-product .product-details .details {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkout-main .right .checkout-products .single-product .product-details .details span {
    color: #333333;
    text-transform: uppercase;
    border-right: solid 1px #333333;
    padding-right: 12px;
    margin-right: 12px;
    font-size: 13px;
    font-weight: 500;
}

.checkout-main .right .checkout-products .single-product .product-details .details span:last-child {
    border: none;
}

.checkout-main .right .checkout-products .single-product .product-details .details span .color {
    width: 15px;
    height: 15px;
    background-color: green;
}

.color-div {
    width: 27px;
    height: 27px;
    border-radius: 50%;

}

.checkout-main .right .checkout-products .single-product .price {
    color: var(--primary-color);
    font-size: 16px;
}


@media (max-width:768px) {
    .checkout-main .left .checkout-details{
        padding: 10px;
    }
    .checkout-main .left .checkout-details .address-item{
        padding: 10px;
    }
}

/* CATEGORIES */

.product-categories .category-card-main {
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}

.product-categories .category-card-main .image {
    position: relative;
    aspect-ratio: 5/7;
}

.product-categories .category-card-main .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-categories .category-card-main .image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000073;
    z-index: 1;
}

.product-categories .category-card-main .image h3 {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    letter-spacing: 1px;
}

@media (max-width:768px) {
    .product-categories .category-card-main .image h3 {
        font-size: 12px;
        line-height: 20px;
        transform: translate(-50%, 1px);
    }
}

/* ABOUT US */
/*
.about-us .container {
    max-width: 1000px !important;
}

.about-us img {
    width: 100%;
}

.about-us .about-content {
    margin-top: 20px;
}

.about-us .about-content .title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-us .about-content .content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 500;
}

.about-us .about-content .content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 500;
}

.about-us .about-content .content h4,
.about-us .about-content .content h5,
.about-us .about-content .content h6 {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 500;
}

.about-us .about-content .content p {
    font-size: 15px;
    line-height: 28px;
} */



/* BLOGS */

.blogs-sec {
    padding: 20px 0px;
}

.blogs-sec .left {
    background: #fff;
    padding: 15px;
    border: 1px solid #e1e1e1;
}

/* Search Box */
.blogs-sec .left .search-box {
    margin-bottom: 25px;
}

.blogs-sec .left .search-box form {
    display: flex;
}

.blogs-sec .left .search-box input[type="text"] {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.blogs-sec .left .search-box button {
    padding: 8px 12px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.blogs-sec .left .search-box button:hover {
    background: var(--primary-color);
}

/* Sidebar Headings */
.blogs-sec .left h3 {
    font-size: 16px;
    margin: 35px 0 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Categories */
.blogs-sec .left .categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blogs-sec .left .categories ul li {
    margin: 8px 0;
}

.blogs-sec .left .categories ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    background-color: #f9f9f9;
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
}

.blogs-sec .left .categories ul li a:hover {
    color: #000000;
}

/* Tags */
.blogs-sec .left .tags ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blogs-sec .left .tags ul li a {
    display: inline-block;
    padding: 5px 10px;
    background: #f1f1f1;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.blogs-sec .left .tags ul li a:hover {
    background: var(--primary-color);
    color: var(--primary-color-font);
}

/* Recent Posts */
.blogs-sec .left .recent-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blogs-sec .left .recent-posts ul li {
    margin: 8px 0;
}

.blogs-sec .left .recent-posts ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blogs-sec .left .recent-posts ul li a .recent-img img {
    width: 50px;
    height: 60px;
    object-fit: cover;
}

.blogs-sec .left .recent-posts ul li a .recent-blog-text h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.blogs-sec .left .recent-posts ul li a .recent-blog-text span {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    color: #939393;
}

.blogs-sec .right .blog-card img {
    max-height: 500px;
    object-fit: cover;
}

.blogs-sec .right .blog-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 5px 0px 8px 0px;
}

.blogs-sec .right .blog-card span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #939393;
}

.blogs-sec .right .blog-card:hover span {
    color: black;
    transition: ease-in-out .3s;
}

@media (max-width:768px) {
    .blogs-sec .right .blog-card h3 {
        font-size: 14px;
    }

    .blogs-sec .right .blog-card span {
        font-size: 13px;
    }

    .blogs-sec .right .blog-card h3 {
        margin: 2px 0px 0px 0px;
    }

    .blogs-sec .left .search-box {
        margin-bottom: 10px;
    }
}

/* BLOG DETAILS */

.blogs-details {
    padding: 30px 0px;
}

.blogs-details .right {
    max-width: 900px !important;
}

.blogs-details .right .blog-title h1 {
    margin: 15px 0px 20px 0px;
    font-size: 30px;
    font-weight: 500;
}

.blogs-details .right .blog-title .share-blog {
    margin: 15px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blogs-details .right .blog-title .share-blog ul {
    display: flex;
    gap: 8px;
}

.blogs-details .right .blog-title .share-blog span {
    font-size: 15px;
    background-color: black;
    color: white;
    padding: 8px 20px;
}

.blogs-details .right .blog-title .share-blog ul li a {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 3px;
    background-color: #d1d1d1;
    text-align: center;
}

.blogs-details .right .blog-title .share-blog ul li a i {
    font-size: 14px;
    color: black;
}

.blogs-details .right .blog-article h2,
.blogs-details .right .blog-article h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 20px;
}

.blogs-details .right .blog-article h4,
.blogs-details .right .blog-article h5,
.blogs-details .right .blog-article h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 20px;
}

.blogs-details .right .blog-article p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}


/* ERROR */

.error-page {
    position: relative;
    background-image: url(../images/error.webp);
    height: 100vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* overlay */
    z-index: 1;
}

.error-page .error-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    padding: 20px;
}

.error-page .error-content h1 {
    font-size: 150px;
    margin: 0;
    font-weight: 800;
    color: #ffffff;
    /* highlight color */
}

.error-page .error-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.error-page .error-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: white;
}

.error-page .error-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--primary-color-font);
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease;
}

.error-page .error-btn:hover {
    background: var(--secondary-color);
    color: var(--secondary-color-font);
}


/* CONTACT US */



.contact-us .contact-left {
    height: 100%;
    padding: 30px;
}

.contact-us .left .contact-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-us .left .contact-info h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.contact-us .left .contact-info p {
    color: #555;
    margin-bottom: 15px;
}

.contact-us .left .contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-us .left .contact-info ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #444;
}

.contact-us .left .contact-info ul li a {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.contact-us .left .contact-info ul li a i {
    font-size: 10px;
    background-color: var(--primary-color);
    color: var(--primary-color-font);
    padding: 10px;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.contact-us .left .contact-info ul li a span {
    font-size: 15px;

}

.contact-us .right {
    padding: 30px;
    height: 100%;
    border: solid 1px #EAEAEA;
}

.contact-us .right h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 500;
}

.contact-us .right .form-group {
    margin-bottom: 15px;
}

.contact-us .right .form-control {
    padding: 12px;
    font-size: 16px;
    width: 100%;
    border: solid 1px #EAEAEA;
    font-size: 14px;
}

.contact-us .right .submit-btn {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--primary-color-font);
    text-align: center;
    border: none;
    transition: .3s ease-in-out;
}

.contact-us .right .submit-btn:hover {
    background-color: var(--secondary-color);
    color: var(--secondary-color-font);
}

@media (max-width:768px) {
    .contact-us .right {
        padding: 15px;
    }

}


/* BRANDS */


.top-brands .brand-logo-card {
    margin-bottom: 15px;
}

.top-brands .brand-logo-card .image img {
    background-color: #F6F6F6;
    padding: 40px;
    height: 110px;
    object-fit: cover;
}



/* FAQ */


.faq-page .title {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

.faq-page .faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-page .faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-page .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-page .faq-answer {
    display: none;
    padding: 0 15px 15px;
    color: #555;
}

.faq-page .faq-item.active .faq-answer {
    display: block;
}



/* LOGIN  | REGISTER | OTP */

.login-sec {
    padding: 20px;
    overflow: hidden;
}

.login-sec .container {
    height: 100%;
}

.login-sec .row {
    height: 100%;
}

.login-sec .left-contain {
    display: flex;
    justify-content: center;
}

.login-sec .left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
}

.login-sec .left .title {
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: solid 1px #e4e4e4;
}

.login-sec .left .title img {
    height: 70px;
    width: auto;
    padding: 10px;
    border: solid 1px #e4e4e4;
    border-radius: 8px;
}

.login-sec .left .title h2 {
    font-size: 32px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 15px 0px;
}

.login-sec .left .title p {
    font-size: 16px;
    color: #656565;
}

.login-sec .left .form-group {
    margin-bottom: 12px;
    position: relative;
}

.login-sec .left .form-group label {
    font-size: 14px;
    color: #242424;
}

.login-sec .left .form-group .country-code {
    position: absolute;
    left: 3px;
    display: flex;
    align-items: center;
    bottom: 4%;
    gap: 5px;
    background-color: aliceblue;
    padding: 9px 5px;
}

.login-sec .left .form-group .form-control {
    width: 100%;
    border: solid 1px #e4e4e4;
    padding: 12px;
    border-radius: 8px;
    margin-top: 0px;
    font-size: 14px;
}
#resend-otp-btn {
    cursor: pointer;
    width: 100%;
    border: solid 1px #e4e4e4;
    padding: 12px;
    border-radius: 8px;
    margin-top: 0px;
    font-size: 14px;
}
#resend-otp-btn :hover{
    color: var(--primary-color);
    background-color: var(--primary-color-font);
}
.login-sec .left .form-group .register-submit {
    width: 100%;
    border: solid 1px #e4e4e4;
    padding: 12px;
    border-radius: 8px;
    margin-top: 5px;
    font-size: 14px;
    color: var(--primary-color-font);
    background-color: var(--primary-color-font);
}

.login-sec .left .form-group .form-control[type="tel"] {
    padding-left: 78px;
}

.login-sec .left .form-group .form-control::placeholder {
    color: #656565;
}

.login-sec .left .form-group a {
    font-size: 14px;
    color: var(--primary-color);
}

.login-sec .left .form-group button {
    background-color: var(--primary-color) !important;
    color: var(--primary-color-font) !important;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    padding: 12px;
    transition: .3s ease-in;
}

.login-sec .left .form-group button:hover {
    color: var(--secondary-color-font) !important;
    background-color: var(--secondary-color) !important;
}

.login-sec .left .form-sec .bottom-title {
    text-align: center;
    font-size: 16px;
    color: #3f3f3f;
    margin-top: 20px;
}

.login-sec .left .form-sec .bottom-title a {
    color: var(--primary-color);
    font-size: 16px;
}

.login-sec .right {
    height: 100%;
    width: 100%;
}

.login-sec .right img {
    height: 95vh;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

@media (max-width:768px) {
    .login-sec {
        height: auto;
    }
.login-sec .right{
    display: none;
}
    .login-sec .right img {
        height: auto;
        max-height: 300px;
        width: 100%;
        object-fit: cover;
        margin-top: 20px;
    }

    .login-sec .left .title h2 {
        font-size: 25px;
    }
}


.login-sec .left .otp-group .otp-inputs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    /* justify-content: center; */
}

.login-sec .left .otp-group .otp-input {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
}

/* .login-sec .left .otp-group{
    text-align: center;
} */



/* MY ORDERS */

.my-orders {
    padding: 40px 0;
}
.my-orders .orders-wrapper .top-sec{
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.my-orders .orders-tabs {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.my-orders .orders-tabs .tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.my-orders .orders-tabs .tab.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.my-orders .orders-content .tab-pane {
    display: none;
}

.my-orders .orders-content .tab-pane.active {
    display: block;
}


.my-orders .card {
    background: #fff;
    border-radius: 12px;
    border: solid 1px #e4e4e4;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    display: block;
}

.my-orders .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.my-orders .order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.my-orders .order-header h4 {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
    color: #222;
}

.my-orders .status {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 500;
    text-transform: capitalize;
}

.my-orders .status.delivered {
    background: #e6f8ed;
    color: #1a7f37;
}

.my-orders .status.processing {
    background: #fff6e5;
    color: #d17b00;
}

.my-orders .status.cancelled {
    background: #fdeaea;
    color: #c62828;
}

.my-orders .order-id {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.my-orders .price-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.my-orders .price-sec h4 {
    font-size: 14px;
    margin: 0;
    color: #444;
}

.my-orders .price-sec span {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}



/* POLICY PAGE */

/* Policy Page */
.policy-page {
    padding: 60px 0;
    background: #f9f9f9;
    font-family: "Poppins", sans-serif;
}

.policy-page .content-main {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.policy-page .title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #222;
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.policy-page .content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

.policy-page .content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 12px;
    color: #333;
}

.policy-page .content ul {
    margin: 0 0 20px 20px;
    padding: 0;
    list-style: disc;
    color: #555;
}

.policy-page .content li {
    margin-bottom: 10px;
    font-size: 15px;
}

.policy-page .content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}

.policy-page .content a:hover {
    text-decoration: underline;
}


/* ORDER DETAILS */


.order-details .right {
    padding: 25px;
    border: solid 1px #EDEDED;
}

.order-details .right h2 {
    font-size: 17px;
    text-transform: uppercase;
    border-bottom: solid 1px #EDEDED;
    padding-bottom: 5px;
    font-weight: 600;
    color: #141414;
}

.order-details .right ul {
    padding: 20px 0px;
    border-bottom: solid 1px #EDEDED;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
}

.order-details .right ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-details .right ul li h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}

.order-details .right ul li span {
    font-size: 16px;
}

.order-details .right .total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.order-details .right .total h3 {
    font-size: 17px;
    font-weight: 500;
}

.order-details .right .total span {
    font-size: 17px;
    font-weight: 500;
}



.order-details .right a {
    background-color: var(--primary-color);
    width: 100%;
    display: block;
    padding: 12px;
    color: var(--primary-color-font);
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    transition: ease-in .3s;
}

.order-details .right a:hover {
    background-color: var(--secondary-color);
    color: var(--secondary-color-font);
}

.error-span {
    color: red !important;
}

.form-group #login-submit {
    background-color: var(--primary-color);
    color: var(--primary-color-font);
}


.section-header h5 {
    font-size: 18px;
    font-weight: 600;
}

/* Table */
.table th,
.table td {
    font-size: 14px;
    vertical-align: middle;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    line-height: 1.2;
    white-space: nowrap;
}

/* Status Colors */
.badge-warning {
    background-color: #ffc107;
    color: #000;
}

.badge-info {
    background-color: #35bcd0;
    color: #fff;
}
.badge-primary-subtle {
    background-color: #6859ee;
    color: #fff;
}

.badge-primary {
    background-color: #0d6efd;
    color: #fff;
}

.badge-secondary {
    background-color: #6c757d;
    color: #fff;
}

.badge-success {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    line-height: 1.2;
    white-space: nowrap;
    background-color: #28a745;
    color: #fff;
}

.badge-danger {
    background-color: #dc3545;
    color: #fff;
}

.badge-dark {
    background-color: #343a40;
    color: #fff;
}

.badge-light {
    background-color: #e9ecef;
    color: #212529;
    border: 1px solid #d6d8db;
}

.address-card {
    background: #ffffff;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.default-card {
    background: #d2edd1 !important;
    border: 1px solid #1acc14 !important;
}

.address-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Header */
.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.address-header .name {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.address-header .badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* Body */
.address-body p {
    margin: 6px 0;
    font-size: 14px;
    color: #555;
}

.address-body .icon {
    margin-right: 6px;
    color: var(--primary-color);
}

/* Footer Buttons */
.address-footer {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.address-footer .btn {
    padding: 6px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

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

.edit-btn:hover {
    background-color: #0056b3;
}

.remove-btn {
    background-color: #dc3545;
    color: #fff;
}

.remove-btn:hover {
    background-color: #a71d2a;
}

.default-btn {
    background-color: #28a745;
    /* Green */
    color: #fff;
}

.default-btn:hover {
    background-color: #1e7e34;
}

/* Add New Address Button */
.add-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--primary-color-font);
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.add-btn:hover {
    background-color: var(--secondary-color);
    color: var(--secondary-color-font);
}

/* Layout adjustments for buttons in footer */
.address-footer {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    /* allow buttons to wrap on smaller screens */
}

.address-footer .btn {
    padding: 6px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.customer-edit-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 15px;
}

.customer-card {
    background: #ffffff;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 30px 25px;
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    max-width: 700px;
    width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.customer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.customer-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    color: #222;
}

.customer-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
}

.form-group .optional {
    font-weight: 400;
    font-size: 0.85rem;
    color: #888;
    margin-left: 4px;
}

.form-group input {
    padding: 10px 12px;
    font-size: 0.95rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

/* FOOTER BUTTONS */
.customer-footer {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
}

.btn-action {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s ease;
}

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

.btn-save:hover {
    background: var(--secondary-color);
    color: var(--secondary-color-font);
}

.coupon-section {
    margin-top: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

/* Coupon Input & Button */
.coupon-section .form-control {
    border-radius: 5px;
    padding: 10px;
    font-size: 0.95rem;
}

.coupon-section #applyCouponBtn {
    background-color: var(--primary-color);
    color: var(--primary-color-font);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.coupon-section #applyCouponBtn:hover {
    background-color: var(--secondary-color);
    color: var(--secondary-color-font);
}

/* Coupon Messages */
#couponMessage,
#couponError {
    font-size: 0.9rem;
    margin-top: 5px;
}

#couponMessage {
    color: #28a745;
}

#couponError {
    color: #dc3545;
}

/* Available Coupons List */
.available-coupons ul.list-group {
    padding: 0;
    margin-top: 15px;
    list-style: none;
}

.available-coupons ul.list-group li {
    background-color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    margin-bottom: 8px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.available-coupons ul.list-group li:hover {
    background-color: #ffffff;
    border-color: var(--primary-color);
}

.copyCouponBtn {
    background-color: var(--secondary-color);
    color: var(--secondary-color-font);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.copyCouponBtn:hover {
    background: var(--primary-color);
    color: var(--primary-color-font);
}

.order-details-card {
    border: 1px solid #ddd;
    padding: 20px;
    margin: 20px auto;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.order-details-card .card-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-details-card .card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.order-details-card .badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
}

.order-details-card .row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.order-details-card .col-md-6,
.order-details-card .col-12 {
    flex: 1 1 50%;
    padding: 5px 10px;
}

.order-details-card .col-12 {
    flex: 1 1 100%;
}

.order-details-card h6 {
    font-size: 13px;
    font-weight: 500;
    color: #888;
    margin-bottom: 5px;
}

.order-details-card p {
    font-size: 15px;
    color: #333;
    margin: 0;
}

.btn-cancel {
    padding: 8px 16px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

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

.btn-confirm {
    background: var(--primary-color);
    color: var(--primary-color-font);
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.btn-confirm:hover {
    background: var(--secondary-color);
    color: var(--secondary-color-font);
}

.btn-notnow {
    background: var(--secondary-color);
    color: var(--secondary-color-font);
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.btn-notnow:hover {
    background: var(--primary-color);
    color: var(--primary-color-font);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px 25px;
    border-radius: 10px;
    max-width: 90%;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow: auto;
}

.modal-content h3 {
    margin-top: 0;
}

.modal-content textarea {
    width: 100%;
    height: 100px;
    margin: 10px 0 20px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #b1b1b1;
    outline : 1px solid #b1b1b1;
    font-size: 14px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

@media (max-width:1000px) {
    .modal-content {
        max-width: 90% !important;
    }
}

@media (max-width:768px) {
    .modal-content {
        padding: 10px;
    }

    .modal-body {
        padding: 0px !important;
    }
}

/* Close icon */
.close {
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--primary-color);
}

.return-modal .return-products {
    margin-top: 15px;
    max-width: 60%;
}


.return-details select,
.return-details input,
.return-details textarea {
    width: 100%;
    padding: 8px;
}

.modal-actions {
    text-align: right;
}

#price-slider {
    margin-top: 10px;
}

.price-slider-wrapper {
    padding: 0px 13px;
    margin-top: 30px;
}

.noUi-connect {
    background: var(--primary-color) !important;
}

.noUi-horizontal {
    height: 8px !important;
}

.noUi-handle {
    background: var(--primary-color);
    border: none;
}

.noUi-horizontal .noUi-handle {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50%;
    right: -10px !important;
}

.noUi-horizontal .noUi-tooltip {
    background: transparent;
    border: none;
    box-shadow: none;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none !important;
}

/* Responsive */
@media (max-width: 767px) {
    .menu-card {
        flex: 1 1 100%;
    }

    .account-sidebar {
        margin-bottom: 30px;
    }
}


#starRating .star {
    font-size: 25px;
    cursor: pointer;
    color: #ccc;
    transition: color 0.2s;
}

#starRating .star.selected,
#starRating .star.hover {
    color: gold;
}

.cart-link {
    position: relative;
}

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

/* PAGINATION */

/* Pagination container */
#pagination-links nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

/* Hide the mobile view version for consistency */
#pagination-links .sm\:hidden {
    display: none !important;
}

/* Pagination number container */
#pagination-links .inline-flex.items-center {
    border: 1px solid #ddd;
    background: var(--primary-color-font);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    margin: 0 3px;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Hover effect */
#pagination-links .inline-flex.items-center:hover:not(.cursor-default) {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color-font);
}

/* Active/current page */
#pagination-links [aria-current="page"] .inline-flex {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color-font) !important;
    font-weight: 600;
}

/* Disabled (Previous/Next when inactive) */
#pagination-links [aria-disabled="true"] .inline-flex {
    background: #f5f5f5;
    color: #aaa;
    border-color: #e0e0e0;
    cursor: not-allowed;
}

/* Arrow SVGs */
#pagination-links svg {
    width: 16px;
    height: 12px;
}

/* Info text (e.g., “Showing 1 to 4 of 6 results”) */
#pagination-links p {
    color: var(--primary-color-font);
    font-size: 13px;
    text-align: center;
    margin-bottom: 8px;
}


/* PRICE SELECT */

/* Base noUiSlider styling */
.noUi-target {
    height: 6px;
    border-radius: 4px;
    background: #eaeaea;
    border: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Filled range (connect) */
.noUi-connect {
    background: var(--primary-color);
    border-radius: 4px;
    transition: background 0.3s ease;
}

/* Handles */
.noUi-handle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 2px solid var(--primary-color);
    cursor: grab;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.noUi-handle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.noUi-handle:active {
    cursor: grabbing;
    transform: scale(1.1);
}

/* Hide the little handle bars */
.noUi-handle::before,
.noUi-handle::after {
    display: none;
}

/* Tooltip styling */
.noUi-tooltip {
    background: var(--primary-color);
    color: var(--secondary-color-font);
    border: none;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    transform: translateY(-150%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Price label text (below slider) */
.price-slider-wrapper .d-flex span {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.3px;
}

.price-slider-wrapper .d-flex {
    margin-top: 10px;
    padding: 0;
    justify-content: space-between;
}


/* POLICY */
/* ====== Policy Page Styling ====== */
.about-us {
    padding: 80px 0;
    background-color: #fff;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.about-us .about-content {
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Headings */
.about-us h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-us h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color, #0d6efd);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.about-us h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Paragraphs */
.about-us p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

/* Lists */
.about-us ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-us ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 10px;
}

.about-us ul li::marker {
    color: var(--primary-color, #0d6efd);
}

/* Horizontal line */
.about-us hr {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 2rem 0;
}

/* Strong emphasis */
.about-us strong {
    color: #000;
    font-weight: 600;
}

/* Links */
.about-us a {
    color: var(--primary-color, #0d6efd);
    text-decoration: none;
    transition: 0.3s;
}

.about-us a:hover {
    text-decoration: underline;
}

/* Contact Info block */
.about-us p:last-of-type {
    margin-top: 1.5rem;
    font-weight: 500;
}

/* ====== Responsive Styles ====== */
@media (max-width: 992px) {
    .about-us {
        padding: 60px 0;
    }

    .about-us .about-content {
        padding: 0 20px;
    }

    .about-us h2 {
        font-size: 1.8rem;
    }

    .about-us h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .about-us {
        padding: 50px 0;
    }

    .about-us .about-content {
        padding: 0 15px;
    }

    .about-us h2 {
        font-size: 1.6rem;
    }

    .about-us h3 {
        font-size: 1.1rem;
    }

    .about-us p,
    .about-us li {
        font-size: 0.95rem;
    }
}


/* MY ACCOUNT */




/* Sidebar */
.my-account-section .account-sidebar {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border: solid 1px #a1a1a178;
    transition: 3s ease;
}

.my-account-section .account-sidebar:hover {
    box-shadow: 0 0px 12px rgb(0 0 0 / 10%);
}

.my-account-section .account-sidebar .user-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.my-account-section .account-sidebar .greeting {
    color: #999;
    margin-bottom: 4px;
}

.my-account-section .account-sidebar .user-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.my-account-section .account-sidebar .user-details p {
    color: #555;
    font-size: 0.9rem;
    margin: 6px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.my-account-section .account-sidebar .user-details i {
    color: var(--primary-color);
}

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.my-account-section .menu-card {
    background: #fff;
    padding: 15px;
    text-align: center;
    border: solid 1px #a1a1a178;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.my-account-section .menu-card svg {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    display: block;
    padding: 12px;
    background-color: #f1f1f1;
    border-radius: 5px;
}

.my-account-section .menu-card h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #222;
}

.my-account-section .menu-card p {
    font-size: 0.9rem;
    color: #666;
}

.my-account-section .menu-card:hover {
    box-shadow: 0 0px 12px rgb(0 0 0 / 10%);
}

/* Responsive */
@media (max-width: 768px) {

    .my-account-section .account-sidebar {
        margin-bottom: 0;
        padding: 10px;
    }

    .account-layout {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .menu-grid {
        gap: 10px;
        grid-template-columns: auto auto;
    }

    .my-account-section .menu-card {
        padding: 15px 6px;
        margin-bottom: 0;
        gap: 5px;
    }

    .my-account-section .menu-card h6 {
        font-size: 12px;
    }
}



/* ===============================
   ORDER SUCCESS (SINGLE BOX)
   =============================== */
.order-success {
  background-color: #f8fafc;
  padding: 80px 20px;
  font-family: "Inter", "Poppins", sans-serif;
}

.order-success .container {
  max-width: 700px;
  margin: 0 auto;
}

.order-success .order-success-box {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
    flex-direction: column;
    align-items: center;
}

/* Success Header */
.order-success .order-success-box .success-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order-success .order-success-box .icon-circle {
  width: 90px;
  height: 90px;
  background-color: #22c55e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.order-success .order-success-box h2 {
  font-size: 26px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.order-success .order-success-box .thankyou-text {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 25px;
}

/* Order Details */
.order-success .order-success-box .order-details {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  max-width: 500px;
}

.order-success .order-success-box .order-details p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 8px;
}

.order-success .order-success-box .order-details strong {
  color: #111827;
  font-weight: 500;
}

/* Redirect + Button */
.order-success .order-success-box .redirect-text {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.order-success .order-success-box .redirect-text strong {
  color: #111827;
}
.order-success .order-success-box .redirect-text strong{
    color: var(--primary-color);
}
.order-success .order-success-box .btn-view-order {
  display: inline-block;
  background-color: #22c55e;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.order-success .order-success-box .btn-view-order:hover {
  background-color: #16a34a;
}

/* ===============================
   Responsive Design
   =============================== */
@media (max-width: 576px) {
  .order-success {
    padding: 60px 15px;
  }

  .order-success .order-success-box {
    padding: 40px 25px;
  }

  .order-success .order-success-box h2 {
    font-size: 22px;
  }

  .order-success .order-success-box .order-details p {
    font-size: 14px;
  }
}



/* CANCEL MODAL */

#cancelModal .modal-content h3{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}
#cancelModal .modal-content p{
    margin-bottom: 20px;
}


/* PAGINATION CLEAN STYLE */
nav[role="navigation"][aria-label="Pagination Navigation"] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 0;
  background-color: #fff;
  font-family: "Inter", "Poppins", sans-serif;
}

/* Hide the result summary text */
nav[role="navigation"] p {
  display: none;
}

/* Mobile visibility handling */
nav[role="navigation"] .sm\\:hidden {
  display: none;
}
nav[role="navigation"] .hidden.sm\\:flex {
  display: flex;
}

@media (max-width: 640px) {
  nav[role="navigation"] .sm\\:hidden {
    display: flex !important;
    justify-content: space-between;
    width: 100%;
  }
  nav[role="navigation"] .hidden.sm\\:flex {
    display: none !important;
  }
}

/* Pagination outer container */
nav[role="navigation"] .inline-flex {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  font-size: 13px;
  padding: 0; /* Removed extra padding */
}

/* Pagination items */
nav[role="navigation"] .inline-flex a,
nav[role="navigation"] .inline-flex span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 5px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  background: #fff;
  transition: all 0.2s ease-in-out;
  border: solid 1px #f1f1f1;
}


nav[role="navigation"] .inline-flex a{
    margin: 0px 5px;
}


/* Hover & focus states */
nav[role="navigation"] .inline-flex a:hover {
  background-color: #f3f4f6;
  color: #000;
}

/* Active page number */
nav[role="navigation"] .inline-flex span[aria-current="page"] {
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  border: none;
}
nav[role="navigation"] .inline-flex span[aria-current="page"] span{
    background-color: var(--primary-color);
    color: var(--primary-color-font);
}
/* Disabled buttons */
nav[role="navigation"] [aria-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
}
nav[role="navigation"] [aria-disabled="true"] span{
      border: solid 1px #c5c5c5;
}
nav[role="navigation"] .flex.justify-between.flex-1.sm\:hidden {
  display: none !important;
}

/* SVG icon size */
nav[role="navigation"] .inline-flex svg {
  width: 14px;
  height: 14px;
  padding: 0px !important;
}

/* Make Previous/Next buttons slightly wider */
nav[role="navigation"] .inline-flex a[rel="prev"],
nav[role="navigation"] .inline-flex a[rel="next"] {
  padding: 0 14px;
}



/* ===================================================
   RETURN ORDERS MODAL - FULL CSS
   =================================================== */

/* ===== Modal Overlay ===== */
#returnModal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    transition: opacity 0.3s ease;
}

/* ===== Modal Box ===== */
#returnModal .modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 1000px;
    margin: 60px auto;
    padding: 30px 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInScale 0.3s ease;
    overflow: visible !important; /* Fix clipped focus border */
}

/* ===== Modal Animation ===== */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== Header ===== */
#returnModal h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #222;
}

#returnModal p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* ===== Close Button ===== */
#returnModal .close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
}
#returnModal .close:hover {
    color: #000;
}

/* ===== Layout ===== */
.return-modal-body {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* ===== Left Side: Products ===== */


/* ===== Return Item Card ===== */
.return-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 0;
    background: #fff;
    margin-bottom: 15px;
    position: relative;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.return-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* Checkbox */
.return-item__checkbox {
    position: absolute;
    right: 12px;
    height: 20px;
    bottom: 14px;
}

.return-item__checkbox input {
    opacity: 0;
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.return-item__checkbox .checkmark {
    width: 20px;
    height: 20px;
    background-color: #f1f1f1;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s;
}

.return-item__checkbox input:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    position: relative;
}

.return-item__checkbox input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Image */
.return-item__image img {
    width: 70px;
    height: 85px;
    object-fit: cover;
    border-radius: 8px;
}

/* Details */
.return-item__details {
    flex: 1;
}

.return-item__title {
    font-size: 15px;
    font-weight: 400;
      display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
    color: #222;
    margin-bottom: 8px;
}

.return-item__meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 8px;
    color: #555;
}

.return-item__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.color-div {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.size-label {
    font-weight: 500;
    color: #333;
}

/* Quantity */
.return-item__quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.return-item__quantity input {
    width: 60px;
    padding: 4px 6px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}



/* ===== Right Side: Return Form ===== */
.return-details {
    flex: 1;
    padding-left: 10px;
}

.return-details .form-group {
    margin-bottom: 15px;
}

.return-details label {
    display: block;
    font-weight: 500;
    color: #222;
    margin-bottom: 0;
}

.return-details select,
.return-details input,
.return-details textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    transition: border 0.2s, box-shadow 0.2s;
    background: #fff;
}

.return-details select:focus,
.return-details input:focus,
.return-details textarea:focus {
    outline: none;
    position: relative;
    z-index: 10;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* ===== Refund Fields ===== */
#refund-fields {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}


.form-group.checkbox label input{
    width: 20px;
    height: 20px;
}
.form-group.checkbox label{
    display: flex;
    gap: 10px;
}
.form-group.checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
    font-size:14px ;
}

/* ===== Submit Button ===== */
.modal-actions {
    text-align: right;
    margin-top: 20px;
}

.btn-confirm {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
}
.btn-confirm:hover {
    background: #333;
    transform: scale(1.02);
}

/* ===== Scrollbar Styling (Optional, for clean UI) ===== */
.return-products::-webkit-scrollbar {
    width: 6px;
}
.return-products::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.return-products::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    #returnModal .modal-content {
        max-width: 90%;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .return-modal-body {
        flex-direction: column;
    }
    .return-products {
        max-width: 100%;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #eee;
        margin-bottom: 20px;
        max-height: none;
    }
    .return-details {
        padding-left: 0;
    }
}







.modal-body{
  padding: 0px;
}


/* Form styling in modal */
.modal-body form .form-group {
    margin-bottom: 1rem;
}
.modal-body form .form-check{
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 0px;
}
.modal-body form label {
    display: block;
    margin-bottom: 0px;
    font-weight: 400;
    font-size: 13px;
    color: #495057;
}

.modal-body form input,
.modal-body form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    font-size:14px;
}
.modal-body form input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  margin-right: 8px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;    
  margin-bottom: 0;
}

.modal-body form input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-color) inset;
}


.modal-body form input:focus,
.modal-body form select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}



/* ===== Modal ===== */


/* ===== Modal Base ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.modal-container {
  background: #fff;
  width: 100%;
  max-width: 700px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* ===== Header ===== */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
 padding-bottom: 25px;
}

.modal-header h5 {
  margin: 0;
  font-weight: 600;
  color: #333;
}

.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #666;
  transition: color 0.2s ease;
}
.close-btn:hover {
  color: #000;
}

/* ===== Body ===== */
.modal-body {
  overflow-y: auto;
  max-height: 70vh;
}