*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root {
    --primary-color: #000;
    --secondary-color: #666;
    --light-bg: #f8f8f8;
}

/* <style> */
    .mega-menu-container {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        white-space: nowrap;
        scrollbar-width: none;
        /* Firefox */
    }

    .mega-menu-container::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .mega-menu-item {
        display: inline-block;
        padding: 0 15px;
    }

    .nav-arrows {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .nav-arrow-btn {
        background: none;
        border: none;
        color: white;
        font-size: 18px;
        cursor: pointer;
    }

    .nav-arrow-btn:disabled {
        opacity: 0.3;
        cursor: default;
    }
/* </style> */


html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: "Arial", sans-serif;
   
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: #a4a2a2;
    box-shadow: inset 0 0 5px rgba(99, 98, 98, 0.2);
    border-radius: 5px;
}

/* Header */
.top-header {
    margin-left: 7px;
    color: var(--light-bg);
    padding: 15px 0;
    position: relative;
    /* background: #000; */
}

/* Sticky Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    /* background: #000; */
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--light-bg) !important;
    text-align: center;
    display: block;

}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--primary-color);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.mobile-header-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-header-icons a {
    color: var(--secondary-color);
    font-size: 18px;
    text-decoration: none;
}

@media (max-width: 991px) {

    .nav-sections,
    .search-box,
    .nav-icons {
        display: none !important;
    }

    .top-header .container .row .col-4 {
        display: none !important;
    }

    .top-header .container .row .col-lg-3 {
        display: none !important;
    }

    .top-header .container .row .col-lg-1,
    .top-header .container .row .col-lg-2 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        position: relative;
        min-height: 40px;
    }
}

.nav-sections {
    display: flex;
    align-items: center;
    /* margin-left: auto; */
}

.nav-sections a {
    color: var(--light-bg) !important;
    text-decoration: none;
    font-size: 23px;
    font-weight: 500;
    /* letter-spacing: 1px; */
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    margin-left: 23px;
}

.text-curve {
    color: grey !important;
}

.nav-sections a:hover,
.nav-sections a.active {
    border-bottom: 4px solid var(--primary-color);
}

.search-box input {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 5px 30px 5px 10px;
    width: 200px;
    font-size: 13px;
    background: transparent;
    color: var(--light-bg);
}

.search-box input:focus {
    outline: none;
   border:none;
   
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icons a {
    color: var(--secondary-color);
    font-size: 18px;
    text-decoration: none;
}

/* ===========================
         MEGA MENU NAVIGATION
      =========================== */
.main-nav {
    /* background: #000; */
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

.nav-container {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    position: relative;
}

.mega-menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Navigation Arrows for Desktop */
.nav-arrows {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.nav-arrow-btn {
    background: transparent;
    border: none;
    color: var(--light-bg);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.nav-arrow-btn:hover {
    color: #999;
}

.nav-arrow-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.mega-menu-item {
    position: relative;
}

.mega-menu-link {
    color: var(--light-bg);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 8px 0;
    display: block;
}

.mega-menu-link.sale {
    color: #ff4444;
}

.mega-menu-link:hover {
    color: #999;
}

/* Mega Dropdown Content */
/* Mega Dropdown Content - FULL WIDTH FIXED & CENTERED */
.mega-dropdown {
    position: fixed;
    /* full-width fixed */
    top: 140px;
    /* adjust according to header height */
    left: 0;
    width: 100vw;
    /* full width */
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    /* centers the inner content */
}

/* Inner container */
.mega-dropdown-inner {
    max-width: 1200px;
    /* limits content width */
    width: 100%;
    padding: 0 20px;
}

/* Show dropdown on hover */
.mega-menu-item:hover .mega-dropdown,
.mega-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}




/* Ensure parent has relative positioning */
.mega-menu-item {
    position: relative;
}

/* Keep dropdown visible when hovering over it */
.mega-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mega-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.mega-column h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    color: #000;
    position: relative;
    padding-bottom: 10px;
}

.mega-column h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #000;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column ul li {
    margin-bottom: 12px;
}

.mega-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
}

.mega-column ul li a:hover {
    color: #000;
    padding-left: 5px;
}

/* Medium Screen Slider */
.medium-nav-slider {
    display: none;
}

@media (min-width: 768px) and (max-width: 1020px) {
    .main-nav {
        padding: 8px 0;
    }

    .mega-menu-container {
        display: none !important;
    }

    .nav-arrows {
        display: none !important;
    }

    .medium-nav-slider {
        display: block !important;
        width: 100%;
        position: relative;
    }

    .medium-nav-slider .swiper {
        width: 100%;
        height: 40px;
    }

    .medium-nav-slider .swiper-wrapper {
        align-items: center;
    }

    .medium-nav-slider .swiper-slide {
        width: auto !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .medium-nav-slider .swiper-slide a {
        color: var(--light-bg);
        text-decoration: none;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        white-space: nowrap;
        padding: 8px 12px;
        border-radius: 4px;
        transition: all 0.3s;
    }

    .medium-nav-slider .swiper-slide a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .medium-nav-slider .swiper-slide a.sale {
        color: #ff4444;
    }

    .medium-nav-slider .swiper-arrow-container {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        gap: 5px;
        z-index: 10;
        padding: 0 10px;
    }

    .medium-nav-slider .swiper-button-next,
    .medium-nav-slider .swiper-button-prev {
        position: relative;
        width: auto;
        height: auto;
        background: none;
        color: var(--light-bg);
        margin-top: 0;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        padding: 8px 12px;
        white-space: nowrap;
    }

    .medium-nav-slider .swiper-button-next:hover,
    .medium-nav-slider .swiper-button-prev:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .medium-nav-slider .swiper-button-next:after,
    .medium-nav-slider .swiper-button-prev:after {
        content: "" !important;
    }
}

@media (min-width: 1021px) {
    .medium-nav-slider {
        display: none !important;
    }

    .nav-arrows {
        display: flex !important;
    }
}

@media (max-width: 767px) {
    .medium-nav-slider {
        display: none !important;
    }
}

/* Mobile nav */
.mobile-menu-btn i {
    color: #999999;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav-overlay.active {
    left: 0;
    background-color: #f5f5f5;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background-color: white;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-submenu {
    display: none;
    background: #f8f8f8;
}

.mobile-submenu.active {
    display: block;
}

.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-item {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    background-color: white;
}

.mobile-nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-submenu a {
    display: block;
    padding: 12px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    background-color: white;
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }
}

.mobile-header-icons {
    display: none;
}

.mobile-header-icons i {
    color: #999999;
}

@media (max-width: 991px) {
    .mobile-header-icons {
        display: flex;
        gap: 15px;
        align-items: center;
    }
}

@media (min-width: 992px) {

    .mobile-menu-btn,
    .mobile-header-icons {
        display: none !important;
    }
}

.mobile-nav-footer {
    padding: 20px 5px;
    border-top: 1px solid #e0e0e0;
    background: #fff;
}

.mobile-nav-section {
    margin-bottom: 25px;
    padding: 0px 10px;
}

.border-nav {
    padding: 5px 0;
    background-color: #f5f5f5 !important;
}

.mobile-nav-footer-link {
    display: block;
    padding: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1px;
    background-color: white;
}

.follow-us span {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    justify-content: space-evenly;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 18px;
    text-decoration: none;
}

.app-downloads span {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Carousel */
.hero-carousel {
    height: 100vh;
    position: relative;
    margin-bottom: 10px;
}

.carousel-item {
    height: 100vh;
    background-position: center;
    background-size: cover;
}

.carousel-item:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.2)),
}

.carousel-item:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.2)),
}

.carousel-item:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.2)),
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: center;
}

.carousel-caption h1 {
    font-size: 35px;
    font-weight: 200;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.carousel-caption h1 em {
    font-style: italic;
    font-weight: 300;
}

.carousel-caption p {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #fff;
}

.btn-shop {
    background: #fff;
    color: var(--primary-color);
    padding: 6px 30px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    border: 1px solid var(--light-bg);
}

.btn-shop:hover {
    background: var(--primary-color);
    color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-indicators {
    bottom: 30px;
    margin: 0;
}

/* Collection Grid */
.collection-grid {
    padding: 0px;
    margin: 0px;
}

.collection-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.collection-item img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: transform 0.5s;
    padding: 0px;
}

.collection-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    text-align: center;
}

.collection-overlay h3 {
    font-size: 32px;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

/* Discount Banner */
.discount-banner {
    position: fixed;
    bottom: 150px;
    right: -35px;
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s;
    max-width: 10%;
}

.discount-banner2 {
    position: fixed;
    bottom: 60px;
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s;
    background-color: black;
    color: #fff;
    padding: 12px 8px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.4;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.discount-banner img {
    background-color: #a4a2a2;
    width: 50%;
    height: auto;
    border-radius: 50%;
}

@media (max-width: 820px) {
    .discount-banner img {
        display: none;
    }
}

@media (max-width: 992px) {
    .collection-item {
        height: 300px;
    }

    .collection-overlay h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .collection-item {
        height: 250px;
    }

    .collection-overlay h3 {
        font-size: 24px;
    }
}

.banner-collec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#main-banner a img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    #main-banner a img {
        height: 70vh;
    }
}

/* About section */
.about-section {
    background: var(--primary-color);
}

.about-section p {
    line-height: 1.7;
}

/* Brands */
.brands-section {
    background-color: var(--primary-color);
}

.brand-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
    max-height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-section h1 {
        font-size: 1.8rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .brand-logo {
        max-height: 60px;
    }
}

/* Swiper */
.img-responsive {
    width: 100%;
    max-width: 100%;
}

.contain {
    margin: 0 auto;
}

.swiper_wrap {
    height: 100%;
    width: 100%;
    position: relative;
    display: block;
    text-align: left;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 25px;
    height: 25px;
    transform: translateY(-50%);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 10;
}

.swiper-button-next {
    right: -40px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27,22L27,22L5,44l-2.1-2.1L22.8,22L2.9,2.1L5,0L27,22L27,22z' fill='%23fff'/%3E%3C/svg%3E");
}

.swiper-button-prev {
    left: -40px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0,22L0,22L22,0l2.1,2.1L4.2,22l19.9,19.9L22,44L0,22z' fill='%23fff'/%3E%3C/svg%3E");
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: none;
}

@media (max-width: 785px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}



.store-img {
    width: 120px;
    height: auto;
}

.pay-icon {
    width: 45px;
    height: auto;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed) {
    color: #f8c146;
}

.accordion-button:focus {
    box-shadow: none;
}

.get-it-input input {
    border: none;
}

.get-it-input input:focus {
    outline: none;
}

.btn-light {
    background-color: #666 !important;
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    border: none;
}

.get-it-text {
    color: #666666;
    font-size: 14px;
    line-height: 18px;
}

.subscribe-form {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
}

.subscribe-form input {
    border-radius: 0;
    flex: 1;
    min-width: 0;
}

.subscribe-form input:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.subscribe-form button {
    border-radius: 0;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .subscribe-form {
        flex-direction: column;
        align-items: stretch;
    }

    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
    }

    .subscribe-form button {
        margin-top: 10px;
    }
}

@media (min-width: 767.98px) {
    .apps {
        display: none;
    }
}
