/*================ RESET / BASE ================*/
*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}
.navbar-logo-wrap {
    height: 60px;
    width: 160px;
    overflow: hidden;      /* crops away anything outside this box */
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .logo a {
    color: #d4af37 !important;
    font-size: 24px;
    font-family: 'Yellowtail', cursive;
}
.navbar .logo img.navbar-logo {
    height: 65px !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    display: block !important;
}
.logo-link{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}
.wishlist-link {
    position: relative;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.wishlist-link:hover {
    color: #f5c451; /* gold accent, matches your logo */
}

.wishlist-link #wishlistCount {
    font-size: 12px;
    font-weight: bold;
    background: #d94b4b;
    color: #fff;
    border-radius: 50%;
    min-width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1px;
}
.navbar-logo{
    height: 60px;   /* Adjust if needed */
    width: auto;
}
.logo-text{
    font-size: 10px;           /* Smaller text */
    font-weight: 500;
    color: #FFD700;            /* Gold */
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -2px;
    margin-left: 38px;         /* Adjust to align under VIMAL */
    align-self: flex-start;
}
@media (max-width: 768px) {
    .logo-text {
        font-size: 16px;
    }
}
.navbar{
    position:fixed;
    top:0;
    overflow:visible;
    left:0;
    width:100%;
    height:100px;
    padding:10px 20px;
    background:#081b3c;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap: nowrap;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
}
.search-box{
    display:flex;
    align-items:center;
    flex:1 1 420px;
    max-width:420px;
    min-width:180px;
}
.search-box input{
    flex:1;
    min-width:0;
    height:45px;
    padding:0 15px;
    border:none;
    outline:none;
    border-radius:25px 0 0 25px;
    font-size:15px;
}
.search-box button{
    flex-shrink:0;
    height:45px;
    width:55px;
    border:none;
    background:#00b4d8;
    color:#fff;
    border-radius:0 25px 25px 0;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}
.nav-links{
    display:flex;
    align-items:stretch;
    gap:25px;
    list-style:none;
    flex-shrink:1;
    min-width:0;        /* ADD THIS — allows real shrinking */
    white-space:nowrap;
}
.user-actions{
    display:flex;
    align-items:center;
    gap:20px;
    flex-shrink:0;
    margin-left: auto; 
}
.login-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    background:#00b4d8;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    white-space:nowrap;
    flex-shrink:0;
}
/*================ NAVBAR ================*/
.logo img{
    height:48px;
}
.nav-links li{
    position:relative;
}
.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

.mobile-menu-btn,
.mobile-login,
.mobile-menu{
    display:none;
}

/*================ HERO ================*/
.hero-content h1{
    font-size:2.75rem;
    font-weight:700;
    margin-bottom:12px;
    line-height:1.2;
    text-shadow:0 2px 10px rgba(0,0,0,.5);
}
.hero-content p{
    font-size:1.1rem;
    color:#e6edf5;
    margin-bottom:0;
    text-shadow:0 1px 6px rgba(0,0,0,.4);
}
.hero-content .shop-btn{
    display:inline-block;
    padding:12px 28px;
    background:#00b4d8;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    font-size:1rem;
    transition:.3s;
    margin-bottom:6px;
}
.hero-content .shop-btn:hover{
    background:#0096c7;
}

/*============== MOBILE ==============*/
@media(max-width:768px){
    body{
        padding-top:110px;
    }
    .navbar{
        display:grid;
        grid-template-columns:50px 1fr 50px;
        grid-template-rows:auto auto;
        padding:10px 15px;
        height:auto;
    }
    .mobile-menu-btn{
        display:flex;
        align-items:center;
        justify-content:flex-start;
        font-size:30px;
        color:#fff;
        cursor:pointer;
    }
    .logo{
        display:flex;
        justify-content:center;
    }
    .logo span{
        font-size:24px;
    }
    .logo img{
        height:40px;
    }
    .mobile-login{
        display:flex;
        justify-content:flex-end;
        align-items:center;
        font-size:26px;
        color:#fff;
        text-decoration:none;
    }
    .search-box{
        grid-column:1/4;
        width:100%;
        margin-top:10px;
    }
    .nav-links,
    .user-actions{
        display:none;
    }
    .mobile-menu{
        display:flex;
        flex-direction:column;
        position:fixed;
        top:0;
        left:-280px;
        width:260px;
        height:100vh;
        background:#081b3c;
        padding:20px;
        transition:.35s;
        z-index:10000;
    }
    .mobile-menu.active{
        left:0;
    }
    .mobile-menu a{
        color:#fff;
        text-decoration:none;
        padding:15px 0;
        border-bottom:1px solid rgba(255,255,255,.1);
    }
    .close-menu{
        font-size:34px;
        color:#fff;
        text-align:right;
        cursor:pointer;
        margin-bottom:20px;
    }
     .hero {
        height: auto;        /* was: 75vh — let it grow to fit content instead of clipping it */
        min-height: 75vh;    /* keeps it reasonably tall on mobile */
        padding: 100px 20px 40px;  /* room so content isn't jammed against the top edge */
    }

    .hero-content {
        padding: 25px 20px;  /* slightly tighter than desktop so it fits better on small screens */
    }

    .hero-content h1 {
        font-size: 28px;     /* your current 34px is a bit large + causes the box to grow taller than 75vh */
    }

    .hero-content p {
        font-size: 15px;
    }
}
@media (max-width: 1150px) {
    .nav-links{
        gap: 14px;
        font-size: 14px;
    }
    .search-box{
        max-width: 260px;
    }
}
@media (max-width: 1300px) {
    .nav-links{
        gap: 10px;
        font-size: 13px;
    }
    .search-box{
        max-width: 200px;
        min-width: 120px;
    }
    .login-link{
        padding: 8px 14px;
        font-size: 14px;
    }
}
@media (max-width: 1300px) {
    .navbar-logo-wrap{
        width: 120px;
    }
}
.dropdown-content{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#081b3c;
    min-width:180px;
    border-radius:8px;
    box-shadow:0 8px 20px rgba(0,0,0,.3);
    padding:8px 0;
    z-index:10000;
}
.dropdown-content a{
    display:block;
    padding:10px 16px;
    white-space:nowrap;
}
.dropdown-content a:hover{
    background:rgba(255,255,255,.08);
}
.dropdown-content.show{
    display:block;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown {
    position: relative;
}