/* Desktop */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Source Sans Pro, Franklin Gothic, Helvetica Neue, Arial, Helvetica, sans-serif;
                padding-top: 105px;
        }

        /* Top Header - Teal Background */
        .desktop .top-header {
            /* background: #007cac; */
            background: linear-gradient(135deg,  #FF9800 0%, #E91E63 100%);
            padding: 12px 0;
            color: white;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            z-index: 11;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .desktop .logo-section {
            display: flex;
            align-items: center;
        }

        .desktop .brand-logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            justify-content: center;
        }

        .desktop .brand-logo .balloon {
            width: 40px;
            height: 45px;
            background: #e91e63;
            border-radius: 50% 50% 50% 0;
            position: relative;
            transform: rotate(-45deg);
            display: inline-block;
        }

        .desktop .brand-logo .balloon::before {
            content: '';
            position: absolute;
            width: 8px;
            height: 12px;
            background: white;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
        }

        .desktop .brand-text {
            transform: rotate(0deg);
            margin-left: 10px;
        }

        /* Navigation Menu */
         .desktop .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
            margin: 0;
            padding: 0;
            /* justify-content: space-around; */
        }

        .desktop .nav-menu li a {
            color: white;
            text-decoration: none;
            font-size: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: opacity 0.3s;
        }

        .desktop .nav-menu li a:hover {
            opacity: 0.8;
        }

        /* Search Bar */
        .desktop .search-wrapper {
            position: relative;
            flex-grow: 1;
            max-width: 600px;
            margin-left: 66px;
        }

        .desktop .search-input {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: none;
            border-radius: 26px;
            font-size: 14px;
            background: #ffffffab;
        }

        .desktop .search-btn {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            background: #005a7a;
            border: none;
            padding: 0 20px;
            color: white;
            cursor: pointer;
            border-radius: 0 26px 26px 0;
        }

        .desktop .search-btn:hover {
            background: #004560;
        }

        /* Header Icons */
        .social-media-links {
            justify-content: end;
            text-align: end;
            width: 78%;
            margin-bottom: 16px;
            margin-top: -17px !important;
        }
       a.social-link {
            font-size: 15px;
            padding: 4px 7px;
            color: #fff;
            border: 1px solid;
            border-radius: 52px;
            width: 51px !important;
            height: 50px !important;
        }
        a.social-handles {
            text-decoration: none;
            color: #000;
            font-size: 13px;
        }
        a.social-link.instagram {
            background: linear-gradient(45deg, #FFDC80, #F56040, #C13584, #833AB4, transparent);
        }
        a.social-link.x {
            background: #000;
        }
        a.social-link.facebook {
            background: #1877F2;
        }
        .desktop .header-icons {
            display: flex;
            gap: 20px;
            align-items: center;
            padding-right: 73px;
            justify-content: space-between;
        }

        .desktop .header-icons a {
            color: white;
            font-size: 22px;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .desktop .header-icons a:hover {
            opacity: 0.8;
        }

        /* Secondary Navigation */
        .desktop .secondary-nav {
            background: white;
            padding: 5px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .desktop .secondary-nav-list {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
            gap: 40px;
            
        }

      .desktop .secondary-nav-list li a {
            position: relative;
            color: #007cac;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            padding: 8px 15px;
            transition: color 0.3s ease;
            
        }

        /* Create dashed underline */
        .desktop .secondary-nav-list li a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 3px;
            border-bottom: 3px dashed #000000ff;
            transition: width 0.4s ease;
        }

        /* On Hover – animate underline */
        .desktop .secondary-nav-list li a:hover {
            color: #000000ff;
        }

        .desktop .secondary-nav-list li a:hover::after {
            width: 100%;
        }


        .desktop .secondary-nav-list li.deals a {
            color: #e91e63;
        }

        /* Promo Banner */
        .desktop .promo-banner {
                background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
                color: white;
                text-align: center;
                padding: -6px;
            }
        .desktop .promo-banner h3 {
            font-size: 16px;
            font-weight: bold;
            text-align: justify;
            margin: auto;
            justify-content: center;
            margin-left: 36%;
        }

        .desktop .promo-banner .badge-applied {
            background: white;
            color: #e91e63;
            padding: 1px 10px;
            border-radius: 4px;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-left: 15px;
            margin-bottom: 7px;
        }

        .desktop .promo-banner small {
            display: block;
            font-size: 12px;
            margin-bottom: 5px;
        }

        @media (max-width: 992px) {
            /* .nav-menu {
                display: none;
            } */
            body {
                padding-top: 70px; /* space for fixed mobile header */
            }
            .desktop .search-wrapper {
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .desktop .secondary-nav-list {
                overflow-x: auto;
                justify-content: flex-start;
            }
            
            .desktop .search-wrapper {
                max-width: 100%;
                margin: 10px 0;
            }
        }
        .mobile {
            display: none;
        }
        .desktop {
            display: block;
        }
        @media (max-width: 992px) {
            .desktop{
                display: none;
            }
            .mobile {
                display: block;
            }
            body {
                padding-top: 70px;
            }
        }



        /* Mobile */


           .mobile .top-header {
            background: #007cac;
            color: white;
            padding: 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            z-index: 11;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .mobile .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            padding-top: 6px;
            padding-bottom: 6px;
        }

        .mobile .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mobile .menu-toggle {
            background: transparent;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px 10px;
        }

        .mobile .logo {
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            color: white;
            margin-left: 39%;
        }

        .mobile .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .mobile .logo-main {
            font-size: 26px;
            font-weight: 700;
        }

        .mobile .logo-sub {
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .mobile .header-icons {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .mobile .header-icons a {
            color: white;
            text-decoration: none;
            font-size: 20px;
            transition: opacity 0.3s;
        }

        .mobile .header-icons a:hover {
            opacity: 0.8;
        }

        .mobile .nav-menu {
            background: #f8f9fa;
            border-bottom: 1px solid #dee2e6;
        }

        .mobile .nav-menu ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            /* flex-wrap: wrap; */
            white-space: nowrap;
            overflow: scroll;
            text-overflow: ellipsis;
        }

        .mobile .nav-menu li {
            padding: 12px 20px;
        }

        .mobile .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-weight: 700;
            font-size: 14px;
            transition: color 0.3s;
        }

        .mobile .nav-menu a:hover {
            color: #0088cc;
        }

        .mobile .search-promo-section {
            background: white;
            /* padding: 15px 20px; */
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .mobile .search-container {
            max-width: 600px;
            /* margin: 0 auto 15px; */
            position: relative;
        }

        .mobile .search-input {
            width: 98%;
            padding: 12px 45px 12px 15px;
            border: 2px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            transition: border-color 0.3s;
            margin: 5px;
        }

        .mobile .search-input:focus {
            outline: none;
            border-color: #0088cc;
        }

        .mobile .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #666;
            font-size: 18px;
            cursor: pointer;
            padding: 8px 12px;
        }

        .mobile .promo-banner {
            background: #cc336e;
            color: white;
            padding: 2px;
            text-align: center;
            border-radius: 4px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            max-width: 800px;
            margin: 0 auto;
        }

        .mobile .promo-text {
            font-size: 15px;
            letter-spacing: -0.5px;
            line-height: 1;
            text-transform: uppercase;
            font-weight: 700;
            margin-left: 5px;
        }

        .mobile .promo-btn {
            background: white;
            color: #ff1493;
            border: none;
            padding: 3px 3px;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
            text-decoration: none;
            display: inline-block;
            margin: 5px 0;
            margin-right: 4px;
        }

        .mobile .promo-btn:hover {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .mobile .nav-menu li a
            {
                color: #007cac;
            }
            .mobile .nav-menu ul {
                font-size: 12px;
            }

            .mobile .nav-menu li {
                padding: 10px 12px;
            }

            .mobile .promo-banner {
                /* flex-direction: column; */
                gap: 10px;
            }

            .mobile .header-icons {
                gap: 15px;
            }
        }


         /* Sliding Menu Overlay */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Sliding Menu */
        .sliding-menu {
            position: fixed;
            top: 0;
            left: -400px;
            width: 380px;
            height: 100%;
            background: white;
            z-index: 1000;
            overflow-y: auto;
            transition: left 0.3s ease;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        }

        .sliding-menu.active {
            left: 0;
        }

        .menu-header {
            background: linear-gradient(135deg, #E91E63 0%, #FF9800 100%);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .menu-header h2 {
            margin: 0;
            font-size: 20px;
        }

        .menu-close {
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .menu-item {
            border-bottom: 1px solid #eee;
        }

        .menu-item a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            color: #333;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: background 0.2s ease;
        }

        .menu-item a:hover {
            background: #f8f9fa;
            color: #0b7fb5;
        }

        .menu-item.new-arrivals a {
            color: #ff6b35;
            font-weight: 600;
        }

        .menu-item.sale a {
            color: #dc3545;
            font-weight: 700;
        }

        .menu-section-title {
            padding: 15px 20px 10px;
            font-size: 12px;
            font-weight: 700;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .menu-item i {
            color: #999;
            font-size: 18px;
        }

        @media (max-width: 768px) {
            .sliding-menu {
                width: 90%;
                left: -90%;
            }
        }