/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inria serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: black;
    border-bottom: white;
    position: fixed;
    top: 0;
    width: 100%;
    height:90px;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 1000;
    padding-bottom: 26px;
    max-width: 100vw;
    overflow: hidden;
    border-bottom:1px solid  grey;
}
.search{
    border: none;
    width: 0px;
    height: 0px;
    background-color: black;
    opacity: 0%;
}
#menu{
    background-color: black;
    border: none;
    width: 28px;
    height: 28px;
    color: black;
}

.logoii {
    font-family: Raleway;
    font-size: 18px;


}
.logo-subtitle{
    font-family: Allura;
    font-size: 10px;
    color: white;
    font-weight: bolder;
}
.menu-icon {
    font-size: 24px;
    color: black;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Full-Screen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    align-items: flex-start;
    justify-content: left;
    opacity: 100%;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 9999;
    padding-top: 90px;
    padding-left: 50px;
}

/* Show Menu */
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    background-color: black;
}

/* Close Button */
.close-button {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Menu Links */
.menu-links {
    list-style: none;
    padding: 0;
    text-align: left;
}

.menu-links li {
    margin: 15px 0;
}

.menu-links a {
    text-decoration: none;
    font-family: inria serif;
    font-weight: lighter;
    font-size: 19px;
    color: white;
    transition: color 0.3s;
    user-select: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.menu-links a:hover {
    color: #ffcc00;
}

/* Add padding to prevent content from hiding under navbar */
body {
    padding-top: 60px;
    background-color: white;
    max-width: 100%;
}
/* Products Section */
.products-section {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    background-color: #fff;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: black;
    padding-bottom: 10px;
    padding-top: 10px;
    font-family: Poppins;
    text-decoration: underline;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.product-info {
    text-align: left;
    padding-top: 10px;
}

.product-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Poppins;
}

.product-price {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-align: left;
    font-family: Poppins;
    padding-bottom: 10px;
}

.add-to-cart {
    width: 100%;
    background-color: #000;
    color: white;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: Poppins;
    padding: 10px 20px;
    border-radius: 5px;
}

.add-to-cart:hover {
    background-color: #333;
}

/* Intro Section */

.image{
    display: flex;
    justify-content: center;
    height: 230px;
}
.gift-image{
    display: flex;
    justify-content: center;
    height: 220px;

}







/* Footer */
/* Footer styles */
.footer {
    width: 100%;
    background-color: black; /* Dark background */
    color: white; /* Text color */
    padding: 20px;
    text-align: left;
    font-family: Poppins;
}

/* Footer heading */
.footer h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color:yellow;
    text-align: left;
    padding-top: 29px;
    padding-bottom: 14px;
    font-family: Poppins;
    text-decoration: underline;
}

/* Social media images */
.footer-icons {
    display: flex;
    justify-content: left;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-icons img {
    width: 30px; /* Adjust size of icons */
    height: 30px;
    object-fit: contain; /* Keep aspect ratio */
}

/* Copyright text */
.copyright {
    font-size: 12px;
    margin-top: 10px;
    padding-top: 20px;
    text-align: center;
    font-family: Popppins;
}


.logoii{
    color: white;
}



/* Menu Sidebar */
.menu-sidebar {
    width: 280px;
    background: white;
    padding: 40px 30px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.05);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
}

.logo {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.logo-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 5px;
    color: #999;
    text-align: center;
    font-weight: normal;
    font-family: Raleway;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-items a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.menu-items a:hover {
    color: #000;
}

.menu-divider {
    height: 1px;
    background: #eee;
    margin: 30px 0;
}

.auth-links {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

.auth-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.auth-links span {
    margin: 0 5px;
    color: #ddd;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 40px;
}

/* Plus icon for COLLECTION */
.collection-link::after {
    content: "+";
    margin-left: 5px;
    font-size: 14px;
}