@import url(../css/plugin.css);

/* HEADER */

/* ======================
   TOPBAR
====================== */

.gamkart-header .topbar {
    background: #f3f5fa;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.gamkart-header .marquee-wrapper {
    width: 100%;
}

.gamkart-header .marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 22s linear infinite;
}

.gamkart-header .marquee-item span {
    white-space: nowrap;
    padding: 8px 40px;
    font-size: 13px;
    font-weight: 500;
    color: #222;
}

.gamkart-header .marquee-item strong {
    color: var(--primary);
}

.gamkart-header .marquee-icon {
    font-size: 14px;
    color: var(--primary);
    opacity: 0.9;
}

.gamkart-header .marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.gamkart-header .topbar::before,
.gamkart-header .topbar::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.gamkart-header .topbar::before {
    left: 0;
    background: linear-gradient(to right, #f5f5f5, transparent);
}

.gamkart-header .topbar::after {
    right: 0;
    background: linear-gradient(to left, #f5f5f5, transparent);
}

/* ======================
   MAIN HEADER
====================== */

.gamkart-header .site-header {
    padding: 22px 60px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid var(--border);
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.gamkart-header .site-logo img {
    height: 44px;
}

.gamkart-header .header-search {
    flex: 1;
    display: flex;
    border: 1px solid var(--border);
    border-radius: 3px;
    /* overflow: hidden; Removed to allow absolute autocomplete dropdown to show */
}

.gamkart-header .header-search input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    outline: none;
}

.gamkart-header .header-search button {
    width: 55px;
    border: none;
    background: none;
    color: var(--primary);
    cursor: pointer;
}

.gamkart-header .header-support {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.gamkart-header .header-support i {
    font-size: 22px;
    color: var(--primary);
}

.gamkart-header .header-support .text {
    display: flex;
    flex-direction: column;
}

.gamkart-header .header-support span {
    font-size: 11px;
    color: var(--text-muted);
}

.gamkart-header .header-support strong {
    font-size: 14px;
}

.gamkart-header .header-support strong a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gamkart-header .header-support strong a:hover {
    color: var(--primary);
}

.gamkart-header .header-actions {
    display: flex;
    gap: 18px;
}

.gamkart-header .header-actions .user-name {
    font-size: 14px;
    font-weight: 500;
    color: black;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gamkart-header .header-actions .user-name span {
    max-width: 150px;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.gamkart-header .header-actions a {
    position: relative;
    font-size: 20px;
    color: var(--secondary);
}

.gamkart-header .header-actions a:hover {
    color: var(--primary);
}

.gamkart-header .header-actions .badge span {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ======================
   BOTTOM (NAV + MOBILE)
====================== */

.gamkart-header .main-nav {
    background: var(--secondary);
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.gamkart-header .categories-btn {
    color: var(--white);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    justify-content: space-between;
    width: 280px;
}

.gamkart-header .categories-btn svg {
    width: 20px;
    height: 20px;
}

.gamkart-header .nav-menu {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.gamkart-header .nav-menu>li>a {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 15px 12px;
}

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

.gamkart-header .nav-menu li {
    position: relative;
}

.gamkart-header .nav-menu .has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gamkart-header .nav-menu .has-dropdown i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.gamkart-header .nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    list-style: none;
    padding: 0px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
}

.gamkart-header .nav-menu .dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #000000;
    white-space: nowrap;
    font-weight: 500;
    border-bottom: solid 1px #e4e4e4;
}

.gamkart-header .nav-menu .dropdown-menu li:last-child a {
    border-bottom: none;
}

.gamkart-header .nav-menu .dropdown-menu li a:hover {
    background: #d6d6d6;
    color: var(--primary);
}

.gamkart-header .nav-menu .has-dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gamkart-header .nav-menu .dropdown-menu .has-dropdown>.dropdown-menu {
    top: 0;
    left: 100%;
    transform: translateX(10px);
}

.gamkart-header .nav-menu .dropdown-menu .has-dropdown:hover>.dropdown-menu {
    transform: translateX(0);
}

.gamkart-header .nav-menu .dropdown-menu .has-dropdown>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.gamkart-header .nav-menu .has-dropdown:hover>a i {
    transform: rotate(180deg);
}

.gamkart-header .nav-menu .dropdown-menu .has-dropdown:hover>a i {
    transform: rotate(-90deg);
}

.gamkart-header .categories-btn {
    position: relative;
}

.gamkart-header .categories-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.gamkart-header .categories-btn:hover .categories-dropdown {
    display: block;
}

.gamkart-header .categories-list {
    list-style: none;
    max-height: 400px;
    overflow-y: auto;
}

.gamkart-header .categories-list li {
    border-bottom: 1px solid #eee;
}

.gamkart-header .categories-list li:last-child {
    border-bottom: none;
}

.gamkart-header .categories-list li a {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gamkart-header .categories-list li a:hover {
    background: #dfdfdf;
    color: var(--primary);
}

/* MOBILE MENU */
.gamkart-header .mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    margin-right: -5px;
    transition: color 0.3s ease;
}

.gamkart-header .mobile-menu-btn:hover {
    color: var(--primary);
}

.gamkart-header .mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100%;
    background: var(--secondary);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    transition: left 0.4s ease;
    overflow-y: auto;
}

.gamkart-header .mobile-menu.active {
    left: 0;
}

.gamkart-header .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.gamkart-header .close-menu {
    cursor: pointer;
    font-size: 24px;
    padding: 5px;
    transition: transform 0.3s ease;
}

.gamkart-header .close-menu:hover {
    transform: rotate(90deg);
    color: var(--primary);
}

.gamkart-header .mobile-menu ul {
    list-style: none;
}

.gamkart-header .mobile-menu>ul>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gamkart-header .mobile-menu ul li a {
    display: block;
    padding: 12px 0;
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
}

.gamkart-header .mobile-menu .menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gamkart-header .mobile-menu .menu-link {
    flex: 1;
    padding: 12px 0;
    color: var(--white);
    font-size: 16px;
}

.gamkart-header .mobile-menu .submenu-toggle {
    background: none;
    border: none;
    color: var(--white);
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gamkart-header .mobile-menu .submenu-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.gamkart-header .mobile-menu .submenu {
    max-height: 0;
    overflow: hidden;
    padding-left: 15px;
    background: rgba(0, 0, 0, 0.15);
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gamkart-header .mobile-menu .submenu li {
    border-bottom: none;
}

.gamkart-header .mobile-menu .has-submenu.active>.submenu {
    max-height: 2000px;
}

.gamkart-header .mobile-menu .submenu li {
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.gamkart-header .mobile-menu .has-submenu.active .submenu li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for submenu items */
.gamkart-header .mobile-menu .has-submenu.active .submenu li:nth-child(1) {
    transition-delay: 0.1s;
}

.gamkart-header .mobile-menu .has-submenu.active .submenu li:nth-child(2) {
    transition-delay: 0.15s;
}

.gamkart-header .mobile-menu .has-submenu.active .submenu li:nth-child(3) {
    transition-delay: 0.2s;
}

.gamkart-header .mobile-menu .has-submenu.active .submenu li:nth-child(4) {
    transition-delay: 0.25s;
}

.gamkart-header .mobile-menu .has-submenu.active .submenu li:nth-child(5) {
    transition-delay: 0.3s;
}

.gamkart-header .mobile-menu .has-submenu.active .submenu li:nth-child(6) {
    transition-delay: 0.35s;
}

.gamkart-header .mobile-menu .has-submenu.active .submenu-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 992px) {

    .gamkart-header .header-search,
    .gamkart-header .header-support,
    .gamkart-header .main-nav {
        display: none;
    }

    .gamkart-header .mobile-menu-btn {
        display: block;
        padding: 10px;
    }

    .gamkart-header .site-header {
        padding: 16px 20px;
        justify-content: space-between;
    }

    .gamkart-header .header-actions .user-name span {
        display: none;
    }

    .gamkart-header .header-actions a {
        font-size: 18px !important;
    }
}

/* BANNER */

.main-banner {
    position: relative;
    overflow: hidden;
    background: #000;
}


.slide-img {
    width: 100%;
    max-height: 50vh;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    filter: blur(8px);

    transition:
        opacity 1s ease,
        transform 2s ease,
        filter 1.5s ease;
}

.swiper-slide-active .slide-img {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.swiper-slide-prev .slide-img {
    opacity: 0.4;
    filter: blur(4px);
}

.main-banner img,
.main-banner video {
    max-height: 50vh;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* VIDEO */

.video-scroll-section {
    height: 220vh;
    /* more scroll room */
    position: relative;
}

/* Sticky wrapper */
.video-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    transform: scale(0.6);
    transform-origin: center center;
    will-change: transform;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .video-scroll-section {
        height: 100%;
    }

    .video-wrapper {
        position: relative;
        top: auto;
        height: 100%;
        width: 100%;
        transform: scale(1) !important;
        border-radius: 0;
    }

    .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* CATEGORY */

.category-swiper-section {
    background-color: #f5f5f5;
}

.product-cat {
    position: relative;
    text-align: center;
    padding-top: 30px;
    /* space for overflow image */
}

.category-product-image {
    position: relative;
    width: 100%;
    height: 130px;
}

.category-product-image .back {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 3px;
    /* background-image: url(../img/category/bg-1.png); */
    background: linear-gradient(360deg, #0a700a, #009300);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    transition: transform 0.4s ease;
}

.category-product-image .back img {
    max-width: 90%;
    transition: transform 0.5s ease;
    transform: translateY(-10px) scale(1.08);
}

.category-title {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: black;
}

.category-title a {
    text-decoration: none;
    color: var(--secondary);
    font-size: 18px;
    font-weight: 700;
}

.product-cat:hover img {
    transform: translateY(-30px) scale(1.08);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
}

@media (max-width: 768px) {
    .category-product-image {
        height: 90px;
    }

    .category-title {
        font-size: 15px;
    }
}

/* PRODUCTS */

.products-slider {
    background-color: rgb(253, 253, 253);
    padding: 40px 0;
}

.shop-section .product-card {
    margin-bottom: 0;
}

.productSwiper {
    margin-top: 40px;
}

.products-slider.dark .heading-main h2,
.products-slider.dark .heading-main a {
    color: white;
}

.product-card {
    position: relative;
    background: #fff;
    border: 1px solid #dfe1e7;
    border-radius: 0;
    padding: 10px;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
}

.product-card .product-image {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.15s ease;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.product-card .product-image::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -120%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            transparent 40%,
            rgba(255, 255, 255, 0.45) 50%,
            transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.product-card:hover .product-image::after {
    transform: translateX(100%);
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-category {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

.product-card .product-category-label {
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--primary);
    padding: 5px 10px;
    border-radius: 0;
    font-weight: 500;
}

.product-card .product-title {
    font-size: 16px;
    margin: 8px 0 10px;
    line-height: 1.3;
    min-height: 42px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-card .product-price {
    margin: 2px 0;
}

.product-card .product-price .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

.product-card .product-price del {
    margin-left: 8px;
    color: #999;
    font-size: 14px;
}

.product-card .product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card .add-card-btn {
    display: inline-block;
    margin-top: auto;
    padding: 8px 12px;
    border-radius: 2px;
    font-size: 13px;
    background-color: green;
    color: white;
    width: 100%;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
}

.product-card .add-card-btn:hover {
    background-color: white;
    border: solid 1px var(--primary);
    color: var(--primary);
}

.product-card .product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.product-card .action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 11px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.35s ease;
}

.product-card:hover .product-actions .action-btn {
    opacity: 1;
    transform: translateX(0);
}

.product-card .product-actions .action-btn:nth-child(1) {
    transition-delay: 0.05s;
}

.product-card .product-actions .action-btn:nth-child(2) {
    transition-delay: 0.15s;
}

.product-card .product-actions .action-btn:nth-child(3) {
    transition-delay: 0.25s;
}

/* HOVER MICRO INTERACTION */
.product-card .action-btn:hover {
    background-color: white;
    border: solid 1px var(--primary);
    color: var(--primary);
    transform: translateX(-3px) scale(1.05);
}

.product-card .product-info .action-buttons {
    display: flex;
    gap: 10px;
}

.product-card .product-info .action-buttons svg {
    width: 20px;
    height: 20px;
}

.product-card .product-info .action-buttons .add-to-bag {
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: var(--primary);
    color: white;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 500;
    width: 100%;
    justify-content: center;
}

.product-card .product-info .action-buttons .wishlist-btn {
    border-radius: 50%;
    height: 36px;
    width: 36px;
    border: solid 1px var(--primary);
    color: var(--primary);
    padding: 7px;
    background-color: white;
}

@media (max-width: 768px) {
    .product-card .product-title {
        font-weight: 500;
        font-size: 14px;
    }

    .product-card .action-btn {
        width: 28px;
        height: 28px;
        opacity: 1 !important;
        transform: translateX(0);
    }

    .product-card .product-actions {
        top: 8px;
        right: 5px;
    }

    .product-card .product-image {
        margin-bottom: 5px;
    }
}

/* GAMES SLIDER */

.game-card .game-image {
    /* text-align: center; */
    margin-bottom: 10px;
    position: relative;
    transition: transform 0.15s ease;
    will-change: transform;
    aspect-ratio: 5/5;
}

.game-card .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card .game-title {
    font-size: 14px;
    margin: 8px 0 10px;
    line-height: 15px;
    color: white;
}

.games-slider {
    background-color: #000;
    position: relative;
    z-index: 2;
}

.game-card {
    background-color: black;
    border-color: #282828;
}

.game-card .pre-order-btn {
    background-color: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 12px;
    text-transform: uppercase;
    width: 100%;
    display: block;
    text-align: center;
}

.game-card .pre-order-btn:hover {
    background-color: #005300;
}

/* FOOTER */

.site-footer {
    background: linear-gradient(180deg, #1b1b1b, #0f0f0f);
    color: #ccc;
}

/* CTA */
.footer-cta {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0;
    background-color: black;
}

.cta-call {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.cta-call i {
    font-size: 28px;
    color: var(--primary);
}

.cta-call strong {
    color: var(--primary);
    font-size: 20px;
}

.cta-text h4 {
    color: #fff;
    margin-bottom: 5px;
}

.cta-text p {
    color: white;
}

.cta-form {
    display: flex;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.cta-form input {
    flex: 1;
    border: none;
    padding: 14px;
    outline: none;
}

.cta-form button {
    background: none;
    border: none;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
}

/* Main Footer */
.footer-main {
    padding: 60px 0;
    color: white;
}

.footer-main h5 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-main ul {
    list-style: none;
    padding: 0;
}

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

.footer-main ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
}

.footer-main ul li a:hover {
    color: #fff;
}

/* Contact */
.footer-message {
    display: inline-block;
    margin: 10px 0;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: #222;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: #fff;
}

/* Bottom */
.footer-bottom {
    background: #292929;
    padding: 20px 0;
}

.footer-bottom a {
    color: white;
}

.footer-bottom p {
    display: flex;
    gap: 4px;
    align-items: center;
}

.footer-bottom a img {
    height: 20px;
    width: auto;
}

.bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    color: white;
}

.footer-bottom img {
    max-width: 250px;
}

.footer-bottom a {
    color: white;
}

.footer-bottom a img {}

@media (max-width: 768px) {
    .bottom-grid {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom {
        padding: 10px;
    }

    .footer-main {
        padding: 20px 0px 20px 0px;
    }
}

/* LOGO */
.logo-slider-section .container {
    overflow: hidden;
    padding: 20px;
    border: solid 1px #dfe1e7;
    border-radius: 10px;
}

.logo-slider-section {
    padding: 40px 0;
    overflow: hidden;
    background: #fff;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: logoScroll 22s linear infinite;
}

.logo-item {
    width: 100px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition:
        filter 0.35s ease,
        transform 0.35s ease;
}

/* Hover → original colors */
.logo-item:hover img {
    filter: none;
    transform: scale(1.05);
}

/* Auto scroll */
@keyframes logoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.logo-slider-section:hover .logo-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-item {
        width: 120px;
        height: 60px;
    }
}

/* IMAGE BANNER ONE */

.image-banner {
    position: relative;
}

.image-banner .container {
    position: relative;
    border-radius: 16px;
    background-color: #ebebeb;
    padding: 20px;
}

.image-banner .banner-bg {
    width: 100%;
    margin: auto;
    display: block;
    border-radius: 15px;
    max-height: 360px;
    object-fit: cover;
}

.image-banner .product {
    position: absolute;
    top: 50%;
    width: 320px;
    max-width: 40%;
    height: auto;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.85);
    transition: all 0.9s ease;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
}

.image-banner .product {
    opacity: 0;
    pointer-events: none;
}

.image-banner .product.left,
.image-banner .product.top,
.image-banner .product.right {
    left: 50%;
}

.image-banner .product.top {
    top: 0;
    left: 50%;
    transform: translate(-50%, -30%) scale(0.85);
}

.image-banner.show .product.left {
    left: 2%;
    opacity: 1;
    transform: translate(0, -50%) scale(1);
    animation: slideFromLeft 0.9s ease-out forwards;
}

.image-banner.show .product.right {
    left: auto;
    right: 2%;
    opacity: 1;
    transform: translate(0, -50%) scale(1);
    animation: slideFromRight 0.9s ease-out forwards;
}

.image-banner.show .product.top {
    top: 6%;
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
    animation: slideFromTop 0.9s ease-out forwards;
}

.image-banner.show .product.left {
    animation-delay: 0.1s;
}

.image-banner.show .product.right {
    animation-delay: 0.25s;
}

.image-banner.show .product.top {
    animation-delay: 0.4s;
}

@media (max-width: 992px) {
    .image-banner .product {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .image-banner.show .product.left {
        left: 2%;
    }

    .image-banner.show .product.right {
        right: 2%;
    }

    .image-banner .product {
        width: 100px;
    }

    .image-banner.show .product.left {
        left: 2%;
    }

    .image-banner.show .product.right {
        right: 2%;
    }
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translate(-60px, -50%) scale(0.85);
    }

    100% {
        opacity: 1;
        transform: translate(0, -50%) scale(1);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translate(60px, -50%) scale(0.85);
    }

    100% {
        opacity: 1;
        transform: translate(0, -50%) scale(1);
    }
}

@keyframes dropFromTop {
    0% {
        opacity: 0;
        transform: translate(-50%, -40px) scale(0.85);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
}

/* VIDEO */
.video-zoom-section {
    position: relative;
    height: 180vh;
    /* scroll length */
}

/* Sticky container */
.video-zoom-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

/* Video */
.video-zoom-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.08s linear;
    will-change: transform;
}

/* BLOGS */

.blog-card {
    overflow: hidden;
    position: relative;
    height: 100%;
    margin-bottom: 20px;
}

.blog-card img {
    width: 100%;
    object-fit: cover;
}

.blog-card .image {
    position: relative;
    aspect-ratio: 7/5;
    overflow: hidden;
}

.blog-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .image img {
    transform: scale(1.12);
}

.blog-card .blog-content {
    padding-top: 7px;
}

.blog-card .blog-date {
    font-size: 12px;
    color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    padding: 4px 9px;
    font-weight: 500;
}

.blog-card .blog-content h3 {
    font-size: 18px;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

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

/* VIDEO BANNER */

.video-banner {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

/* Video */
.video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    transform: translate(-50%, -50%);
}

/* Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.3));
    z-index: 1;
}

/* Content */
.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.banner-content h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 10px;
}

/* MAIN CATEGORY */

.main-category-section {
    background-color: #161616;
    padding: 15px 20px;
}

.main-category-section .main-product-cat {
    position: relative;
    overflow: hidden;
}

.main-category-section .main-product-cat .main-category-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    /* padding: 6px; */
    border: solid 1px white;
    border-radius: 10px;
}

.main-category-section .main-product-cat .main-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 10px; */
}

.main-category-section .main-product-cat .category-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;

    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
    pointer-events: none;
}

/* appear on hover */
.main-category-section .main-product-cat:hover .category-text {
    opacity: 1;
    transform: translateY(0);
    z-index: 99;
}

.main-category-section .main-product-cat::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(3deg, #000000cc, #0000003d);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.main-category-section .main-product-cat:hover::after {
    opacity: 1;
}

@media (hover: none) {
    .main-category-section .main-product-cat .category-text {
        opacity: 1;
        transform: translateY(0);
    }

    .main- product-cat::after {
        opacity: 1;
    }

    .main-category-section {
        padding: 10px;
    }

    .image-banner .container {
        padding: 10px;
    }
}

/* OFFER */

.promo-section .promo-card {
    position: relative;
    height: 260px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.promo-section .promo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

.promo-section .promo-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: end;
}

.promo-section .promo-content h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    margin: 10px 0;
}

/* Price */
.promo-section .price {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.promo-section .price.green {
    color: #35ff5c;
}

/* Responsive */
@media (max-width: 768px) {
    .promo-section .promo-content h2 {
        font-size: 24px;
    }

    .promo-section .promo-card {
        height: 180px;
        margin-bottom: 15px;
        border-radius: 12px;
    }

    .promo-section .promo-content {
        padding: 15px;
    }
}

/* BREADCRUMB */

.breadcrumb-wrapper {
    padding: 30px 0;
    background-image: url(../img/background.png);
}

/* 
.breadcrumb-wrapper .container {
    border: solid 1px rgb(202, 202, 202);
    border-radius: 15px;
    padding: 20px;
} */

.breadcrumb-wrapper .breadcrumb {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0 0 10px;
    font-size: 13px;
    color: #e7e7e7;
}

.breadcrumb-wrapper .breadcrumb li {
    position: relative;
}

.breadcrumb-wrapper .breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: #e7e7e7;
}

.breadcrumb-wrapper .breadcrumb a {
    text-decoration: none;
    color: #e7e7e7;
}

.breadcrumb-wrapper .breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb-wrapper .page-title {
    font-size: 35px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

@media (max-width: 768px) {
    .breadcrumb-wrapper .page-title {
        font-size: 32px;
    }
}

/* PRODUCTS PAGE */

.shop-section {
    padding: 40px 0;
}

.shop-section .shop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.shop-section .topbar-left,
.shop-section .topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.shop-section .filter-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    display: none;
}

.shop-section .view-switch {
    display: flex;
    gap: 6px;
}

.shop-section .view-btn {
    width: 38px;
    height: 38px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
}

.shop-section .view-btn.active {
    border-color: #000;
}

.shop-section .results-count {
    font-size: 14px;
    color: #333;
}

.shop-section .sort-select,
.shop-section .count-select {
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    cursor: pointer;
}

@media (max-width: 576px) {
    .shop-section .shop-topbar {
        gap: 5px;
        flex-flow: row wrap;
    }

    .shop-section .filter-btn {
        display: flex;
    }

    .product-card {
        padding: 6px;
    }

    .shop-section .topbar-left,
    .shop-section .topbar-right {
        gap: 5px;
        width: 100%;
        justify-content: space-between;
    }

    .shop-section .filter-btn {
        padding: 10px 15px;
    }

    .shop-section .sort-select,
    .shop-section .count-select {
        padding: 10px 2px;
    }

    .shop-section {
        padding: 15px 0px;
    }
}

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

.shop-filter-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.shop-filter-close {
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.shop-filter-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.shop-filter-block {
    margin-bottom: 35px;
}

.shop-filter-heading {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.shop-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-filter-list li {
    margin-bottom: 12px;
}

.product-categories-list .category-item {
    margin-bottom: 15px;
}

.product-categories-list .category-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-categories-list .sub-toggle-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #e9e9e9;
    border-radius: 4px;
    font-size: 11px;
    transition: all 0.3s ease;
}

.product-categories-list .category-item.active .sub-toggle-btn {
    background: #000;
    color: #fff;
}

.product-categories-list .sub-filter-list {
    margin: 0 0 0 20px;
    padding: 0;
    list-style: none;
    border-left: 1px dashed #ccc;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.35s ease;
}

.product-categories-list .category-item.active .sub-filter-list {
    margin-top: 10px;
}

.product-categories-list .sub-filter-list li {
    margin-bottom: 8px;
}

.product-categories-list .sub-filter-list li:last-child {
    margin-bottom: 0;
}

.shop-filter-item {
    display: grid;
    grid-template-columns: 18px 1fr auto;
    align-items: center;
    column-gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.shop-filter-item input {
    margin: 0;
}

.shop-filter-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-filter-count {
    color: #888;
    font-size: 13px;
}

.shop-filter-range {
    width: 100%;
    margin: 15px 0;
}

.shop-filter-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.shop-filter-apply {
    background: #000;
    color: #fff;
    border: none;
    padding: 6px 14px;
    font-size: 12px;
    cursor: pointer;
}

.shop-filter-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    background: #fff;
}

.shop-filter-reset {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    background: #f5f5f5;
    border: 1px solid #ddd;
    cursor: pointer;
}

.shop-section .products-grid {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 10px;
}

.shop-filter-offcanvas,
.shop-filter-footer {
    background-color: #f2f2f2;
}

.pagination-area {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    color: #000000;
    background: transparent;
    border: 1px solid #000000;
}

/* Hover */
.pagination a:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: #000000;
}

/* Active / current page */
.pagination .active span,
.pagination .active a {
    font-weight: 700;
    background: transparent;
    border: 2px solid #000000;
    /* slightly thicker to stand out */
    color: #000000;
    cursor: default;
}

/* Disabled */
.pagination .disabled span,
.pagination .disabled a {
    color: #888888;
    border-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* OFFCANVAS */
@media (max-width: 768px) {
    .shop-filter-close {
        display: block;
    }

    .shop-section .products-grid {
        grid-template-columns: auto auto;
        gap: 6px;
    }

    .shop-filter-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 998;
    }

    .shop-filter-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .shop-filter-offcanvas {
        position: fixed;
        top: 0;
        left: -380px;
        width: 360px;
        height: 100vh;
        background-color: white;
        display: flex;
        flex-direction: column;
        transition: 0.35s ease;
        z-index: 999;
    }

    .shop-filter-offcanvas.active {
        left: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .shop-section .products-grid {
        grid-template-columns: auto auto auto;
        gap: 8px;
    }
}

@media (min-width: 920px) and (max-width: 1200px) {
    .shop-section .products-grid {
        grid-template-columns: auto auto;
        gap: 6px;
    }
}

@media (min-width: 768px) and (max-width: 920px) {
    .shop-section .products-grid {
        grid-template-columns: auto auto;
        gap: 6px;
    }
}

/* PRODUCT DETAILS */

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

.product-details-main .left {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.product-details-main .left .tab-gallery {
    position: relative;
    display: flex;
}

.product-details-main .left .tab-gallery .tab-main-image {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    border: 1px solid #dfe1e7;
}

.product-details-main .left .tab-gallery .mySlides {
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.product-details-main .left .tab-gallery .mySlides img {
    object-fit: cover;
}

.product-details-main .left .tab-gallery .cursor {
    cursor: pointer;
}

.product-details-main .left .tab-gallery .prev,
.product-details-main .left .tab-gallery .next {
    background-color: var(--color-one);
    cursor: pointer;
    position: absolute;
    top: 55%;
    width: auto;
    padding: 10px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgb(90, 90, 90);
}

.product-details-main .left .tab-gallery .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

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

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

.product-details-main .left .tab-gallery .row {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.product-details-main .left .tab-gallery .row:after {
    content: "";
    display: table;
    clear: both;
}

.product-details-main .left .tab-gallery .column {
    width: 23%;
    display: flex;
    justify-content: center;
}

.product-details-main .left .tab-gallery .mySlides.active {
    display: flex;
}

.product-details-main .left .tab-gallery .demo {
    opacity: 0.6;
    transition:
        opacity 0.3s ease,
        border-color 0.3s ease;
    border: 2px solid transparent;
}

.product-details-main .left .tab-gallery .demo.active,
.product-details-main .left .tab-gallery .demo:hover {
    opacity: 1;
    border-color: var(--primary);
}

.product-details-main .left .thumbnail-swiper {
    margin-right: 20px;
}

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

.product-details-main .left .thumbnail-swiper .swiper-slide {
    flex-shrink: 0;
    height: max-content;
}

.product-details-main .left .thumbnail-swiper img {
    width: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    object-fit: cover;
    border: 1px solid #c5c5c5;
    border-radius: 4px;
}

.product-details-main .left .thumbnail-swiper img.active {
    border-color: #000000;
}

.product-details-main .left .thumbnail-swiper .swiper-button-next,
.product-details-main .left .thumbnail-swiper .swiper-button-prev {
    background-color: var(--color-one);
    color: white;
    width: 25px;
    height: 40px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.product-details-main .left .thumbnail-swiper .swiper-button-next:hover,
.product-details-main .left .thumbnail-swiper .swiper-button-prev:hover {
    background-color: var(--color-one);
    transform: scale(1.1);
}

.product-details-main .left .thumbnail-swiper .swiper-button-next::after,
.product-details-main .left .thumbnail-swiper .swiper-button-prev::after {
    font-size: 16px;
}

.product-details-main .left .thumbnail-swiper .swiper-button-prev {
    left: 1px;
}

.product-details-main .left .thumbnail-swiper .swiper-button-next {
    right: 1px;
}

/* RIGHT SIDE */
.product-details-main .right {
    padding-left: 40px;
}

.product-details-main .right .product-summary {
    position: relative;
}

.product-details-main .right .product-summary .sale-badge {
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 10px;
}

.product-details-main .right .product-summary .product-title {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-details-main .right .product-summary .meta-row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dfe1e7;
}

.product-details-main .right .product-summary .meta-row .brand,
.product-details-main .right .product-summary .meta-row .rating {
    padding-right: 20px;
    border-right: 1px solid #dfe1e7;
}

.product-details-main .right .product-summary .rating {
    color: #f5a623;
    display: flex;
}

.product-details-main .right .product-summary .rating .star {
    display: flex;
    gap: 2px;
}

.product-details-main .right .product-summary .rating .star i {
    font-size: 14px;
}

.product-details-main .right .product-summary .review-count {
    color: #666;
    margin-left: 5px;
}

.product-details-main .right .product-summary .stock {
    background: #4caf50;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
}

.product-details-main .right .product-summary .short-desc {
    color: #282828;
    line-height: 26px;
    margin-bottom: 20px;
    font-weight: 500;
}

.product-details-main .right .product-summary .price-wrap {
    margin-bottom: 20px;
}

.product-details-main .right .product-summary .price {
    font-size: 28px;
    font-weight: 700;
    color: #e53935;
    margin-right: 10px;
}

.product-details-main .right .product-summary .old-price {
    color: #000000;
    font-size: 16px;
    text-decoration: line-through;
}

.product-details-main .right .product-summary .deal-timer {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin-bottom: 25px;
}

.product-details-main .right .product-summary .deal-timer .label {
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.product-details-main .right .product-summary .deal-timer .time {
    display: flex;
    gap: 25px;
}

.product-details-main .right .product-summary .deal-timer .time div {
    text-align: center;
}

.product-details-main .right .product-summary .deal-timer strong {
    font-size: 22px;
    display: block;
}

.product-details-main .right .product-summary .deal-timer span {
    font-size: 12px;
    color: #666;
}

.product-details-main .right .product-summary .cart-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-details-main .right .product-summary .cart-row .qty {
    display: flex;
    border: 1px solid #ddd;
}

.product-details-main .right .product-summary .cart-row .qty button {
    width: 35px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    font-size: 15px;
}

.product-details-main .right .product-summary .cart-row .qty input {
    width: 40px;
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.product-details-main .right .product-summary .cart-row .add-cart {
    flex: 1;
    background: #000;
    color: #fff;
    padding: 12px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: ease-in-out 0.3s;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.product-details-main .right .product-summary .cart-row .add-cart:hover {
    background-color: #272727;
}

.product-details-main .right .product-summary .icon-btn {
    width: 45px;
    border: 1px solid #ddd;
    background: none;
    cursor: pointer;
    transition: ease-in-out 0.3s;
    font-size: 14px;
    padding: 13px;
}

.product-details-main .right .product-summary .icon-btn:hover {
    background-color: black;
    color: white;
}

.product-details-main .right .product-summary .trust {
    display: flex;
    font-size: 13px;
    margin-bottom: 25px;
    flex-flow: row wrap;
    justify-content: space-between;
}

.product-details-main .right .product-summary .trust div {
    font-size: 14px;
    color: #888888;
    font-weight: 600;
    text-transform: uppercase;
}

.product-details-main .right .product-summary .trust div strong {
    color: black;
}

.product-details-main .right .product-summary .trust i {
    color: var(--primary);
    margin-right: 5px;
}

.product-details-main .right .product-summary .payment {
    border-top: 1px solid #dfe1e7;
    border-bottom: 1px solid #dfe1e7;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.product-details-main .right .product-summary .payment p {
    text-align: center;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
}

.product-details-main .right .product-summary .payment .payment-images {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    gap: 7px;
}

.product-details-main .right .product-summary .payment .payment-images img {
    width: 80px;
    border: solid 1px #ddd;
}

.product-details-main .right .product-summary .product-meta p {
    font-size: 15px;
    color: #000000;
    margin-bottom: 5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .product-details-main .right {
        padding-left: 0;
    }

    .product-details-main .right .product-summary .product-title {
        font-size: 22px;
        line-height: 30px;
    }

    .product-details-main .right .product-summary .trust {
        gap: 15px;
        justify-content: center;
    }

    .product-details-main .left .thumbnail-swiper {
        display: none;
    }

    .product-details-main .left .customization {
        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 .product-summary .meta-row {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .product-details-main .right .product-summary .payment .payment-images img {
        width: 60px;
    }
}

/* PRODUCT ACCORDIAN */

.product-accordion {
    margin-top: 60px;
    border-top: 1px solid #e5e5e5;
}

.product-accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.product-accordion .accordion-header {
    width: 100%;
    padding: 22px 10px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: #111;
}

.product-accordion .accordion-header:hover {
    color: #c10000;
}

.product-accordion .accordion-header .icon {
    font-size: 22px;
    transition: transform 0.35s ease;
}

.product-accordion .accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.45s ease;
    padding: 0 10px;
}

.product-accordion .accordion-content-inner {
    padding-bottom: 25px;
}

.product-accordion .accordion-content p,
.product-accordion .accordion-content li {
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
    font-weight: 500;
}

.product-accordion .accordion-content ul {
    padding-left: 18px;
}

.product-accordion .accordion-item.active .icon {
    transform: rotate(45deg);
}

.product-accordion .review-item {
    padding: 18px 0;
    border-bottom: 1px solid #dfe1e7;
}

.product-accordion .review-item:last-child {
    border-bottom: none;
}

.product-accordion .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.product-accordion .review-author {
    font-size: 15px;
    color: #111;
}

.product-accordion .review-stars {
    font-size: 13px;
    letter-spacing: 2px;
    color: #f5a623;
    display: flex;
    gap: 3px;
}

.product-accordion .review-text {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

.product-accordion .open-review-modal {
    margin: 10px 0 25px;
    padding: 10px 18px;
    background: #111;
    color: #fff;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.product-accordion .open-review-modal:hover {
    background: #c10000;
}

@media (max-width: 768px) {
    .product-accordion {
        margin-top: 20px;
    }

    .product-accordion .accordion-header {
        padding: 12px;
    }
}

.review-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.review-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.review-modal-content {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 30px;
    position: relative;
}

.review-modal-content h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.close-review-modal {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 14px;
}

.review-form-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}

.review-form-stars i {
    font-size: 20px;
    cursor: pointer;
    color: #ccc;
}

.review-form-stars i.active {
    color: #f5a623;
}

.review-form button {
    width: 100%;
    padding: 12px;
    background: #111;
    color: #fff;
    border: none;
    cursor: pointer;
}

.review-form button:hover {
    background: #c10000;
}

/* CART */

.cart-main .right {
    padding: 25px;
    /* border: solid 1px #EDEDED; */
    background-color: #e6e6e6;
}

.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 {
    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 .left {
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

.cart-main .left .carlist-single .actions .remove {
    color: red;
    border: solid 1px red;
}

.cart-main .left .carlist-single .actions .remove:hover {
    background-color: red;
    color: white;
}

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

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

.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: 5/5;
    max-width: 80px;
    border: solid 1px #ddd;
}

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

.cart-main .left .details .product-details h4 {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 600;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    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;
    font-weight: 600;
}

.cart-main .left .details .product-details span div {
    width: 20px;
    height: 20px;
    background-color: var(--primary);
}

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

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

.cart-main .left .quantity .qty-btn {
    width: 30px;
    height: 38px;
    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;
}

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

    .cart-main .left .details .product-details h4 {
        -webkit-line-clamp: 2;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .cart-main .left .top-details {
        padding: 8px;
        gap: 8px;
    }

    .cart-main .left .details .product-details .bottom {
        margin-bottom: 10px;
    }

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

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

    .cart-main .left .details .product-details span div {
        height: 15px;
        width: 15px;
    }
}

/* CHECKOUT */

.checkout-main {
    padding: 60px 0;
}

/* ================= LEFT : ADDRESS SECTION ================= */

.checkout-main .left .checkout-details {
    /* border: 1px solid #eee; */
    border-radius: 8px;
    margin-bottom: 15px;
}

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

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

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

.checkout-main .left .checkout-details .address-item.selected {
    border: 2px solid #000;
    background: #fdfdfd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.checkout-main .left .checkout-details .address-item.selected .radio-icon i {
    color: var(--primary);
}

.checkout-main .left .checkout-details .address-item.selected .radio-icon i::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

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

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

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

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

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

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

.checkout-main .left .checkout-details .radio-icon {
    font-size: 18px;
    color: #aaa;
}

.checkout-main .left .checkout-details .address-text {
    font-size: 14px;
    color: #444;
    line-height: 1.4;
    margin-bottom: 12px;
}

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

.checkout-main .left .checkout-details .address-actions button {
    padding: 8px 15px;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #fff;
}

.checkout-main .left .checkout-details .address-actions .edit {
    background: #0092d1;
}

.checkout-main .left .checkout-details .address-actions .delete {
    background: #ff3939;
}

.checkout-main .left .checkout-details .add-address a {
    margin-top: 10px;
    border: 1px solid #000;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    text-transform: uppercase;
}

/* ================= RIGHT : ORDER SUMMARY ================= */

.checkout-main .right {
    padding: 25px;
    background: #e6e6e6;
}

.checkout-main .right .checkout-products .single-product {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ededed;
}

.checkout-main .right .checkout-products .image {
    max-width: 60px;
    border: 1px solid #ededed;
}

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

.checkout-main .right .checkout-products .product-details h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.checkout-main .right .checkout-products .details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-main .right .checkout-products .details span {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
}

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

/* ================= TOTALS ================= */

.checkout-main .right ul {
    padding: 20px 0px;
    border-bottom: solid 1px #ededed;
    display: flex;
    flex-direction: column;
    gap: 30px;
    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;
}

/* ================= PAYMENT METHODS ================= */

.payment-method {
    margin-top: 30px;
}

.payment-method .payment-accordion h6 {
    margin-bottom: 15px;
}

.payment-method .payment-accordion label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
    width: 100%;
}

.payment-method .payment-accordion label.tabby {
    flex-direction: column;
    gap: 5px;
    align-items: baseline;
}

.payment-method .payment-accordion label.tabby #tabbyCard {
    width: 100%;
}

.payment-method .payment-accordion label.tabby .styles__container--d326b {
    padding: 0px;
    width: 100%;
}

.payment-method .payment-accordion label:hover {
    border-color: #999;
}

.payment-method .payment-accordion input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary);
}

.payment-method .payment-accordion label.selected,
.payment-method .payment-accordion label:has(input:checked) {
    border: 2px solid var(--primary);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.payment-method .payment-accordion .icon {
    width: 35px;
    height: auto;
    object-fit: contain;
}

.payment-method .btn-two {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* MY ACCOUNT */
.my-account-main {
    padding: 60px 0;
    background: #f6f7f9;
}

/* ================= LAYOUT ================= */

.my-account-main .left,
.my-account-main .right {
    height: 100%;
}

/* ================= SIDEBAR ================= */

.my-account-main .account-sidebar {
    background: #ffffff;
    overflow: hidden;
}

.my-account-main .account-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.my-account-main .account-sidebar ul li {
    border-bottom: 1px solid #eee;
}

.my-account-main .account-sidebar ul li:last-child {
    border-bottom: none;
}

.my-account-main .account-sidebar ul li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.my-account-main .account-sidebar ul li a i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.my-account-main .account-sidebar ul li.active a,
.my-account-main .account-sidebar ul li a:hover {
    background: #111;
    color: #fff;
}

/* ================= CONTENT AREA ================= */

.my-account-main .right {
    padding-left: 25px;
}

.my-account-main .account-content {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* ================= HEADINGS ================= */

.my-account-main .main-heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.4px;
}

.my-account-main .sub-heading {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

/* ================= FORM ================= */

.my-account-main .account-form {
    max-width: 520px;
}

.my-account-main .account-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.my-account-main .account-form label {
    font-size: 13px;
    color: #444;
    margin-bottom: 6px;
}

.my-account-main .account-form input {
    padding: 13px 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.25s;
    width: 100%;
}

.my-account-main .account-form input:focus {
    outline: none;
    border-color: #111;
}



/*  FORM CSS END  */

.error-msg {
    color: #e50000;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    font-weight: 500;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
    border-color: #e50000 !important;
}

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

/* Phone Prefix Styles */
.phone-prefix {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-prefix .number-prefix {
    position: absolute;
    left: 1px;
    top: 1px;
    bottom: 1px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-right: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
    pointer-events: none;
    z-index: 5;
    gap: 5px;
}

.phone-prefix .number-prefix img {
    width: 20px;
    height: auto;
}

.phone-prefix input {
    padding-left: 80px !important;
    width: 100%;
}

/* Sidebar Logout Styles */
.account-sidebar li a.text-danger {
    color: #e50000 !important;
}

.account-sidebar li a.text-danger i {
    color: #e50000 !important;
}

.account-sidebar li a.text-danger:hover {
    background: #fff5f5 !important;
    color: #c40000 !important;
}

/* Password Toggle Styles */
.password-field {
    position: relative;
}

.password-field input {
    padding-right: 40px !important;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    z-index: 10;
    padding: 5px;
}

.toggle-password:hover {
    color: #111;
}

#account-alert {
    margin-bottom: 20px;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
    margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.alert-success {
    background: #e6f9f0;
    color: #008a4e;
    border-left: 4px solid #008a4e;
}

.alert-danger {
    background: #fff1f1;
    color: #d93025;
    border-left: 4px solid #d93025;
}



/* =================MY ACCOUNT=============== */

.my-account-main .account-overview {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 25px;
    margin-top: 20px;
}

.my-account-main .info-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 22px;
}

.my-account-main .info-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.my-account-main .info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.my-account-main .info-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.my-account-main .info-list li:last-child {
    border-bottom: none;
}

.my-account-main .info-list span {
    color: #666;
}

.my-account-main .info-list strong {
    font-weight: 600;
    color: #111;
}

.my-account-main .info-actions {
    display: flex;
    gap: 12px;
}

.my-account-main .info-card.default-address p {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 15px;
}

.my-account-main .btn-two.outline {
    background: transparent;
    border: 1px solid #111;
    color: #111;
}

@media (max-width: 991px) {
    .my-account-main .account-overview {
        grid-template-columns: 1fr;
    }
}

/* ================= ADDRESS BOOK ================= */

.my-account-main .address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.my-account-main .address-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 18px;
    font-size: 14px;
    color: #444;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.my-account-main .address-card.default {
    border-color: #111;
    background: #fafafa;
}

.my-account-main .address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.my-account-main .address-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.my-account-main .address-card .badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    background: #111;
    color: #fff;
}

.my-account-main .address-card p {
    line-height: 1.5;
    margin-bottom: 15px;
}

.my-account-main .address-actions {
    display: flex;
    gap: 10px;
}

.my-account-main .address-actions button {
    flex: 1;
    padding: 8px 10px;
    font-size: 13px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.my-account-main .address-actions .edit {
    background: #e9f3ff;
    color: #0066cc;
}

.my-account-main .address-actions .delete {
    background: #fdecea;
    color: #d93025;
}

.my-account-main .address-card.add-new {
    border: 2px dashed #ccc;
    background: transparent;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.my-account-main .address-card.add-new i {
    font-size: 22px;
    margin-bottom: 8px;
}

.my-account-main .address-card.add-new span {
    font-size: 14px;
    font-weight: 500;
}

.my-account-main .address-card.add-new:hover {
    border-color: #111;
    color: #111;
}

.my-account-main .set-default {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    font-weight: 600;
    margin-top: 10px;
    border-radius: 4px;
}

.my-account-main .set-default:hover {
    background: #111;
    color: #fff;
}

.my-account-main .address-card.default .set-default {
    display: none;
}

/* ================= TAB VISIBILITY ================= */

.my-account-main .tab-content {
    display: none;
}

.my-account-main .tab-content.active {
    display: block;
}

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

@media (max-width: 991px) {
    .my-account-main .right {
        padding-left: 0;
        margin-top: 20px;
    }

    .my-account-main .account-content {
        padding: 22px;
    }
}

.my-account-main .orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.my-account-main .order-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.my-account-main .order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.my-account-main .order-id {
    font-size: 14px;
    font-weight: 600;
}

.my-account-main .order-status {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.my-account-main .order-status.delivered {
    background: #e7f7ef;
    color: #1e8e5a;
}

.my-account-main .order-status.processing {
    background: #fff4e5;
    color: #c77700;
}

.my-account-main .order-status.cancelled {
    background: #fdecea;
    color: #d93025;
}

.my-account-main .order-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.my-account-main .order-meta small {
    font-size: 12px;
    color: #777;
}

.my-account-main .order-meta p {
    font-size: 14px;
    font-weight: 500;
    margin: 2px 0 0;
}

.my-account-main .order-address small {
    font-size: 12px;
    color: #777;
}

.my-account-main .order-address p {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.my-account-main .view-order {
    margin-top: auto;
    text-align: center;
    padding: 12px;
    font-size: 13px;
}

/* ORDER DETAILS */
.order-details-main {
    padding: 60px 0;
    background: #f6f7f9;
}

.order-details-main .order-header {
    background: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.order-details-main .order-header h2 {
    font-size: 22px;
    margin-bottom: 5px;
}

.order-details-main .order-id,
.order-details-main .order-date {
    font-size: 14px;
    color: #666;
}

.order-details-main .order-status {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.order-details-main .order-status.placed {
    background: #e7f0ff;
    color: #1a5cff;
}

.order-details-main .order-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.order-details-main .order-left,
.order-details-main .order-right {
    display: flex;
    flex-direction: column;
}

.order-details-main .order-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.order-details-main .order-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.order-details-main .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.order-details-main .info-grid span {
    font-size: 13px;
    color: #777;
}

.order-details-main .info-grid strong {
    display: block;
    margin-top: 5px;
    font-size: 15px;
    color: #111;
}

.order-details-main .address-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.order-details-main .order-summary {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    position: sticky;
    top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.order-details-main .order-summary h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.order-details-main .order-summary ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.order-details-main .order-summary ul li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
}

.order-details-main .summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 16px;
}

.order-details-main .summary-total strong {
    font-size: 18px;
}

/* ================= ORDER ITEMS ================= */

.order-details-main .order-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.order-details-main .order-item {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* LEFT SIDE */
.order-details-main .order-item .section-one {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.order-details-main .order-item .section-one .img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
    flex-shrink: 0;
}

.order-details-main .order-item .section-one .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-details-main .order-item .section-one h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #111;
}

/* RIGHT SIDE */
.order-details-main .order-item .section-two {
    display: flex;
    gap: 30px;
    text-align: right;
}

.order-details-main .order-item .section-two div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-details-main .order-item .section-two span:first-child {
    font-size: 12px;
    color: #777;
}

.order-details-main .order-item .section-two span:last-child {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.order-details-main .order-item .section-two .total span:last-child {
    font-size: 15px;
}

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

@media (max-width: 768px) {
    .order-details-main .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .order-details-main .order-item .section-two {
        width: 100%;
        justify-content: space-between;
        text-align: left;
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .order-details-main .order-layout {
        grid-template-columns: 1fr;
    }

    .order-details-main .order-summary {
        position: static;
    }
}

/* BLOG DETAILS */

.blog-details-main {
    background: #f6f7f9;
    padding: 60px 0;
}

/* ================= BLOG DETAILS ================= */

.blog-details-main .blog-details {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
}

.blog-details-main .blog-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-details-main .blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.blog-details-main .blog-image {
    margin-bottom: 25px;
}

.blog-details-main .blog-image img {
    width: 100%;
    border-radius: 10px;
}

.blog-details-main .blog-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

.blog-details-main .blog-content h3 {
    font-size: 20px;
    margin: 25px 0 10px;
}

.blog-details-main .blog-content blockquote {
    margin: 25px 0;
    padding: 20px;
    border-left: 4px solid #111;
    background: #f9f9f9;
    font-style: italic;
}

/* ================= LATEST BLOGS ================= */

.blog-details-main .latest-blogs {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
}

.blog-details-main .latest-blogs .section-title {
    font-size: 18px;
    margin-bottom: 20px;
}

.blog-details-main .latest-blog-card {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.blog-details-main .latest-blog-card img {
    width: 80px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
}

.blog-details-main .latest-blog-card .content {
    flex: 1;
}

.blog-details-main .latest-blog-card .date {
    font-size: 12px;
    color: #777;
}

.blog-details-main .latest-blog-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0;
    line-height: 1.4;
}

.blog-details-main .latest-blog-card a {
    font-size: 13px;
    font-weight: 500;
    color: #111;
}

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

@media (max-width: 991px) {
    .blog-details-main .latest-blogs {
        margin-top: 30px;
    }
}

/* WISHLIST */

.wishlist-page .product-card {
    margin-bottom: 20px;
}

.wishlist-page .product-card.wishlist-card .product-image {
    position: relative;
}

.wishlist-page .wishlist-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: none;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 2;
}

.wishlist-page .wishlist-remove i {
    font-size: 14px;
}

.wishlist-page .wishlist-remove:hover {
    background: #ff3939;
}

/* CONTACT US */

/* 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: #000000;
    font-weight: 700;
}

.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: var(--white);
    padding: 10px;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

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

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

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

.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: var(--white);
    text-align: center;
    border: none;
    transition: 0.3s ease-in-out;
}

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

/* ================= CONTACT SOCIAL LINKS ================= */

.contact-us .contact-info .social-links {
    margin-top: 30px;
}

.contact-us .contact-info .social-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.contact-us .contact-info .social-links .icons {
    display: flex;
    gap: 12px;
}

.contact-us .contact-info .social-links .icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    font-size: 16px;
}

.contact-us .contact-info .social-links .icons a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

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

.map-sec {
    margin-bottom: 20px;
}

/* ABOUT US */

/* ================= ABOUT US PAGE ================= */

/* .about-us-page {
    background: #f6f7f9;
} */

/* INTRO */
.about-us-page .about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-us-page .main-heading {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-us-page p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* SECTIONS */
.about-us-page .about-section {
    margin-bottom: 60px;
}

.about-us-page .about-section.bg-light {
    background: #f6f6f6;
    padding: 40px;
    border-radius: 10px;
}

.about-us-page .section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* LIST */
.about-us-page .about-list {
    margin-top: 15px;
    padding-left: 18px;
}

.about-us-page .about-list li {
    font-size: 15px;
    margin-bottom: 8px;
}

/* WHAT WE DO */
.about-us-page .what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.about-us-page .do-card {
    background: #f6f6f6;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.about-us-page .do-card i {
    font-size: 26px;
    margin-bottom: 12px;
}

.about-us-page .do-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* MISSION & VISION */
.about-us-page .mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-us-page .mv-card {
    background: #f6f6f6;
    padding: 30px;
    border-radius: 10px;
}

/* COUNTERS */
.about-us-page .about-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
    margin-bottom: 60px;
}

.about-us-page .counter-box h3 {
    font-size: 30px;
    font-weight: 700;
}

.about-us-page .counter-box span {
    font-size: 14px;
    color: #666;
}

/* WHY CHOOSE */
.about-us-page .choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.about-us-page .choose-item {
    background: #f6f6f6;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.about-us-page .choose-item i {
    font-size: 24px;
    margin-bottom: 10px;
}

/* CTA */
.about-us-page .about-cta {
    text-align: center;
    padding: 50px 20px;
    background: #111;
    color: #f6f6f6;
    border-radius: 10px;
}

.about-us-page .about-cta h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.about-us-page .about-cta a {
    width: max-content;
    margin: 0 auto;
    background-color: white;
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 30px;
    background-color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .about-us-page .what-we-do-grid,
    .about-us-page .choose-grid,
    .about-us-page .about-counters,
    .about-us-page .mission-vision {
        grid-template-columns: 1fr;
    }
}

/* BRANDS */

/* ================= BRANDS PAGE ================= */

.brands-page {
    background: #f6f7f9;
}

/* HEADER */
.brands-page .brands-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.brands-page .brands-header .main-heading {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.brands-page .brands-header p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* GRID */
.brands-page .brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 25px;
}

/* BRAND ITEM */
.brands-page .brand-item {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.brands-page .brand-item img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.brands-page .brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.brands-page .brand-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .brands-page .brand-item {
        padding: 20px;
    }

    .brands-page .brand-item img {
        max-width: 100px;
    }
}

/* STORES */

/* ================= STORES PAGE ================= */

.stores-page {
    background: #fff;
}

.stores-page .store-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.stores-page .store-item.reverse {
    direction: rtl;
}

.stores-page .store-item.reverse>* {
    direction: ltr;
}

/* IMAGE */
.stores-page .store-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* CONTENT */
.stores-page .store-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.stores-page .store-block {
    margin-bottom: 18px;
}

.stores-page .store-block a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stores-page .store-block a i {
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    font-size: 14px;
    background-color: white;
    border: solid 1px #ddd;
    color: black;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
}

.stores-page .store-block h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stores-page .store-block p {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    font-weight: 600;
}

.stores-page .store-block .direction {
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
    color: var(--primary);
}

/* SOCIAL */
.stores-page .store-social {
    display: flex;
    gap: 12px;
    margin-top: 0;
}

.stores-page .store-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s ease;
}

.stores-page .store-social a:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .stores-page .store-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stores-page .store-item.reverse {
        direction: ltr;
    }
}

/* LOGIN */

.login-section {
    position: relative;
    height: 100vh;
    background-image: url(../img/login-bg.webp);
    background-size: cover;
    background-position: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-section .login-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    padding: 20px;
}

.login-section .register-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

.login-section .login-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.login-section .login-card h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.login-section .login-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.login-section .login-card .form-group {
    text-align: left;
    margin-bottom: 20px;
}

.login-section .login-card .form-group label {
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.login-section .login-card .form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s ease;
}

.login-section .login-card .form-group input:focus {
    border-color: #000;
    outline: none;
}

.login-section .login-card .login-btn {
    width: 100%;
    padding: 13px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s ease;
}

.login-section .login-card .login-btn:hover {
    background: #333;
}

.login-section .login-card .extra-links {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 15px;
}

.login-section .login-card .extra-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

.login-section .login-card .extra-links span {
    font-weight: 600;
    color: var(--primary);
}

.login-section .login-card .divider {
    margin: 25px 0;
    position: relative;
    text-align: center;
}

.login-section .login-card .divider span {
    background: #fff;
    padding: 0 10px;
    font-size: 12px;
    color: #999;
    position: relative;
    z-index: 1;
}

.login-section .login-card .divider::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #eee;
    top: 50%;
    left: 0;
}

.login-section .login-card .google-btn,
.login-section .login-card .mobile-btn {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: 0.3s ease;
    font-weight: 500;
    display: block;
}

.login-section .login-card .google-btn i {
    color: #db4437;
    margin-right: 8px;
}

.login-section .login-card .mobile-btn i {
    margin-right: 8px;
}

.login-section .login-card .google-btn:hover,
.login-section .login-card .mobile-btn:hover {
    background: #f5f5f5;
}

/* Terms Checkbox */
.terms-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 15px 0;
    font-size: 13px;
    text-align: left;
}

.terms-wrapper input {
    margin-top: 4px;
    cursor: pointer;
}

.terms-wrapper label {
    cursor: pointer;
    color: #555;
}

.terms-wrapper a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.terms-wrapper a:hover {
    text-decoration: underline;
}

/* Adjust spacing for long form */
.login-card {
    max-height: 90vh;
    overflow-y: auto;
}

/* Better scroll styling */
.login-card::-webkit-scrollbar {
    width: 6px;
}

.login-card::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .login-section .login-card {
        padding: 20px 10px;
    }

    .login-section .login-card h2 {
        font-size: 20px;
    }

    .login-section .login-card p {
        font-size: 12px;
    }

    .login-section .login-card .form-group label {
        font-size: 12px;
    }

    .login-section .login-card .form-group input {
        font-size: 12px;
    }

    .login-section .login-card .login-btn {
        font-size: 12px;
    }

    .login-section .login-card .extra-links {
        font-size: 12px;
    }

    .login-section .login-card .divider span {
        font-size: 12px;
    }

    .login-section .login-card .google-btn,
    .login-section .login-card .mobile-btn {
        font-size: 12px;
    }
}

/* 404 */

.error-section .error-image img {
    max-width: 100%;
    height: auto;
}

.error-section .error-content {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    justify-content: center;
}

.error-section .error-icon {
    width: 70px;
    height: 70px;
    background: red;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.error-section .error-code {
    font-size: 90px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
    line-height: 1;
}

.error-section .error-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.error-section .error-text {
    font-size: 15px;
    color: #000;
    max-width: 500px;
    font-weight: 500;
    margin-bottom: 35px;
}

.error-section .error-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.error-section .primary-btn {
    padding: 12px 28px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.error-section .primary-btn:hover {
    background: #333;
}

.error-section .secondary-btn {
    padding: 12px 28px;
    border: 1px solid #000;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.error-section .secondary-btn:hover {
    background: #000;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .error-section .error-content {
        padding-left: 0;
        text-align: center;
        align-items: center;
        gap: 0px;
    }

    .error-section .error-code {
        font-size: 40px;
    }

    .error-section .error-title {
        font-size: 20px;
    }

    .error-section .error-text {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .error-section .error-buttons {
        justify-content: center;
        gap: 10px;
    }

    .error-section .secondary-btn,
    .error-section .primary-btn {
        padding: 12px 20px;
    }
}

/* THANKYOU */

/* ==============================
   Premium Thank You Page
================================= */

.premium-thankyou {
    padding: 120px 0;
    background: linear-gradient(to right, #f8f9fb, #ffffff);
}

.premium-thankyou .thankyou-image img {
    max-width: 100%;
    height: auto;
}

.premium-thankyou .thankyou-content {
    padding-left: 40px;
}

.premium-thankyou .success-icon {
    width: 75px;
    height: 75px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    margin: auto;
}

.premium-thankyou .thankyou-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.premium-thankyou .thankyou-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    max-width: 520px;
}

.premium-thankyou .thankyou-info {
    margin-bottom: 30px;
}

.premium-thankyou .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}

.premium-thankyou .info-item i {
    color: #000;
}

.premium-thankyou .thankyou-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.premium-thankyou .primary-btn {
    padding: 12px 28px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.premium-thankyou .primary-btn:hover {
    background: #333;
}

.premium-thankyou .secondary-btn {
    padding: 12px 28px;
    border: 1px solid #000;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.premium-thankyou .secondary-btn:hover {
    background: #000;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .premium-thankyou .thankyou-content {
        padding-left: 0;
        text-align: center;
        margin-top: 40px;
    }

    .premium-thankyou .thankyou-buttons {
        justify-content: center;
    }

    .premium-thankyou .info-item {
        justify-content: center;
    }
}



/* EMPTY STATE */


.empty-state {
    margin: 0 auto;
    background: #fff;
    padding: 10px;
    border: solid 1px #dbdbdb;
    transition: .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: auto;
}

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

.empty-state img {
    width: 110px;
    margin-bottom: 20px;
}


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

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

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

@media (max-width:768px) {

    .empty-state {
        max-width: 100%;
    }
}

/* POLICY */

.legal-tabs-page {
    padding: 60px 0;
}

.legal-header {
    margin-bottom: 30px;
}

.legal-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.legal-updated {
    color: #6b7280;
    font-size: 14px;
}

/* horizontal tabs */

.legal-tabs-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 15px;
}

.legal-tabs-nav a {
    padding: 8px 14px;
    font-size: 14px;
    text-decoration: none;
    color: #4b5563;
    border-radius: 6px;
    background: #f3f4f6;
    transition: 0.25s;
}

.legal-tabs-nav a:hover {
    background: var(--primary);
    color: white;
}

/* content */

.legal-tabs-content section {
    margin-bottom: 40px;
}

.legal-tabs-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.legal-tabs-content p {
    line-height: 1.7;
    color: #4b5563;
}

.payment-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 40px;
    width: auto;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    padding: 4px;
    background: white;
}


/* WHATSAPP */

.whatsapp-chat {
    position: relative;
    z-index: 999;
}

.whatsapp-chat i {
    font-size: 24px;
}

.whatsapp-chat .btn-whatsapp-pulse {
    background: green;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 25px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.whatsapp-chat .btn-whatsapp-pulse-border {
    bottom: 110px;
    right: 30px;
    animation-play-state: paused;
}

.whatsapp-chat .btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25D366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
}

#backToTop:hover {
    background: #333;
}


/* CHECKOU LOGIN */


.checkout-login-section .login-container {
    max-width: 900px;
}

.checkout-login-section .login-card {
    padding: 40px 20px;
    max-height: 100%;
}

.checkout-login-section .login-card .row {
    align-items: flex-start;
}

.checkout-login-section h2 {
    font-size: 22px;
}

.checkout-login-section p {
    font-size: 13px;
    margin-bottom: 25px;
}


.checkout-login-section .col-md-6 {
    padding: 0 20px;
}

.checkout-login-section .col-md-6:nth-of-type(2) {
    border-right: 1px solid #e5e7eb;
}


@media (max-width:768px) {
    .checkout-login-section .row {
        flex-direction: column-reverse;
    }

    .checkout-login-section .login-container {
        max-width: 550px;
    }

    .checkout-login-section .col-md-6 {
        width: 100%;
        margin-bottom: 30px;
    }

    .checkout-login-section .col-md-6:nth-of-type(2) {
        border-right: 0px solid #e5e7eb;
        border-top: 1px solid #e5e7eb;
        padding-top: 20px;
    }

    .checkout-login-section .login-card {
        padding: 20px 0px;
    }


}



/* ORDER SUCCESS */

.order-success-section {
    padding: 80px 0;
    background: #f9fafb;
}

.order-success-section .order-success-card {
    max-width: 900px;
    margin: auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.order-success-section .success-header {
    text-align: center;
    margin-bottom: 40px;
}

.order-success-section .success-icon {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 15px;
}

.order-success-section .success-header h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.order-success-section .success-header p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.order-success-section .order-number {
    background: var(--primary-light);
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary);
}

.order-success-section .order-table table {
    width: 100%;
    border-collapse: collapse;
}

.order-success-section .order-table th {
    text-align: left;
    padding: 14px;
    background: #f4f6f8;
    font-weight: 600;
    color: var(--text-dark);
}

.order-success-section .order-table td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
}

.order-success-section .order-table tbody tr:hover {
    background: #fafafa;
}

.order-success-section .addon {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.order-success-section .order-summary {
    margin-top: 30px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.order-success-section .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.order-success-section .summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
}

.order-success-section .order-actions {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.order-success-section .btn-account {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.order-success-section .btn-shop {
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
}

.order-success-section .btn-account:hover {
    background: #0d650d;
}

.order-success-section .btn-shop:hover {
    background: #f5f5f5;
}

@media (max-width:768px) {
    .order-success-section .order-success-card {
        padding: 12px;
    }

    .order-success-section .success-header h2 {
        font-size: 20px;
    }

    .order-success-section .success-icon {
        font-size: 50px;
        margin-bottom: 5px;
    }
}