
/* Base Header Styles */
.headerr {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.3s ease;
    padding: 0 5%;
    box-sizing: border-box;
}

/* Sticky Header */
.sticky_head {
    position: fixed;
    top: 0;
    background-color: rgb(var(--headfootcolor));
    height: 8vh;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Static Header */
.static_head {
    position: fixed;
    background-color: transparent;
    height: 10vh;
}

/* Header Sections */
.headerr > div {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Brand/Logo */
.brand {
    text-decoration: none;
    animation: appear both 0.8s ease;
    height: 80%;
    min-width: 120px; /* Adjust as needed */
}

.brand_img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

/* Navigation - Left Side */
.nav_str {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav_str nav {
    animation: appear both 1s ease-in-out;
    display: flex;
    gap: 1rem;
}

.nav_str nav > a {
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Navigation - Right Side */
.nav_end {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Icon Buttons */
.nav_a_icon {
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav_a_icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

/* Cart Count */
.cart_count {
    background-color: rgb(var(--primarycolor));
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -0.3rem;
    right: -0.3rem;
    font-size: 0.7rem;
    color: white;
}

/* Sign Up Button */
.signup_btn {
    border-radius: 1rem;
    border: 1px solid rgb(var(--primarycolor));
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nav_str nav {
        gap: 0.8rem;
    }
    
    .nav_str nav > a {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .headerr {
        padding: 0 3%;
    }
    
    /* Hide regular nav on mobile */
    .nav_str nav {
        display: none;
    }
    
    /* Show hamburger menu */
    .hamburger {
        display: block;
    }
    
    /* Mobile menu styles */
    .mobile-menu {
        position: fixed;
        top: 8vh;
        left: 0;
        width: 100%;
        background-color: rgb(var(--headfootcolor));
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        gap: 1rem;
        z-index: 99;
    }
    
    .mobile-menu a {
        padding: 0.5rem 1rem;
    }
    
    /* Adjust header heights */
    .sticky_head {
        height: 8vh;
    }
    
    .static_head {
        height: 10vh;
    }
    
    /* Make brand logo smaller */
    .brand {
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .nav_end {
        gap: 0.5rem;
    }
    
    .signup_btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .nav_a_icon {
        height: 1.8rem;
        width: 1.8rem;
    }
}










.footer_ {
    width: 100%;
    background-color: rgb(var(--headfootcolor));
    display: flex;
    flex-wrap: wrap;
    padding: 5% 5% 2%;
    box-sizing: border-box;
    gap: 2rem;
}

/* Footer Sections */
.footer_first,
.footer_mid,
.footer_last {
    flex: 1;
    min-width: 300px; /* Minimum width before wrapping */
    margin-bottom: 2rem;
}

/* Logo Section */
.imagecontainer {
    height: 80px;
    width: 120px;
    margin-bottom: 1.5rem;
}

.imagecontainer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer_first p,
.footer_first h3 {
    margin: 0.5rem 0;
    line-height: 1.5;
}

/* Middle Navigation Links */
.footer_mid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-around;
}

.footer_mid > div {
    min-width: 150px;
    margin-bottom: 1.5rem;
}

.footer_mid h1 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: rgb(var(--primarycolor));
}

.footer_mid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_mid li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.footer_mid a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_mid a:hover {
    color: rgb(var(--primarycolor));
}

/* Subscribe Section */
.footer_last h1 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: rgb(var(--primarycolor));
}

.footer_last form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.footer_last input {
    width: 100%;
    padding: 0.8rem 0.5rem 0.5rem;
    border: none;
    border-bottom: 1px solid rgb(var(--primarycolor));
    background-color: transparent;
    outline: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer_last input:focus {
    border-bottom-width: 2px;
}

.footer_last label {
    position: absolute;
    top: 0.8rem;
    left: 0.5rem;
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #777;
}

.footer_last input:focus + label,
.footer_last input:not(:placeholder-shown) + label {
    top: -0.8rem;
    left: 0;
    font-size: 0.8rem;
    color: rgb(var(--primarycolor));
}

.footer_last button {
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    border: none;
    background-color: rgb(var(--primarycolor));
    color: white;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.footer_last button:hover {
    background-color: rgb(var(--backgroundcolor));
    color: rgb(var(--primarycolor));
    box-shadow: 0 0 0 2px rgb(var(--primarycolor));
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .footer_first,
    .footer_mid,
    .footer_last {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .footer_ {
        flex-direction: column;
        padding: 10% 5%;
    }
    
    .footer_first,
    .footer_mid,
    .footer_last {
        width: 100%;
        min-width: 100%;
    }
    
    .footer_mid {
        justify-content: space-between;
    }
    
    .imagecontainer {
        height: 70px;
        width: 100px;
    }
}

@media (max-width: 480px) {
    .footer_mid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer_last button {
        width: 100%;
    }
    
    .footer_first p,
    .footer_first h3 {
        font-size: 0.9rem;
    }
}



.headerr *, footer *{
  color: aliceblue  !important;
  fill: aliceblue ;
}