:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #2c2c2c; /* Charcoal */
    --bg-color: #fdfbf7; /* Cream */
    --text-color: #006a4e;
    --white: #ffffff;
    --transition: all 0.4s ease;
    
    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    padding: 5px 5%;
    align-items: center;
    min-height: 8vh;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 40%;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Brands Bar */
.brands-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow-x: auto;
    white-space: nowrap;
}

.brands-scroll {
    display: flex;
    gap: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    height: 92vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('https://images.unsplash.com/photo-1596462502278-27bfdc4033c8?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.slogan {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.description {
    color: #000000;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.1rem;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 15px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn.primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn.secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn.secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-text {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 2px;
    transition: var(--transition);
}

.btn-text:hover {
    padding-left: 10px;
}

/* Sections */
section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Collections Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    grid-template-rows: auto auto;
    gap: 40px;
}

.collection-card {
    background: var(--white);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.collection-card h3 {
    margin-bottom: 15px;
}

.collection-card p {
    margin-bottom: 25px;
    font-size: 0.95rem;
}
/* Best Sellers */
.bestsellers{
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;

}
.new-limited{
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;

}
.container{
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    width: 70%;
}
.container1{
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    width: 70%;
}
/* Testimonials */
.testimonials {
    background-color: var(--white);
    max-width: 100%;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-item {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--secondary-color);
}
.container3{
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}
/* Newsletter */
.community {
    background-color: #f4f4f4;
    max-width: 100%;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    max-width: 500px;
    margin: 30px auto 0 auto;
}

.newsletter-form input {
    padding: 15px;
    border: 1px solid #ccc;
    flex: 1;
}

/* Footer */
footer {
    padding: 60px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #777;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Search Bar */
.search-nav {
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
    position: relative;
}

.search-container {
    width: 100%;
    position: relative;
}

#homeSearch {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-family: inherit;
    font-size: 0.85rem;
    transition: var(--transition);
    outline: none;
}

#homeSearch:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}

/* Suggestions Dropdown */
.suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 1001;
    max-height: 300px;
    overflow-y: auto;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f9f9f9;
}

.suggestion-item:hover {
    background-color: #f9f9f9;
}

.suggestion-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.suggestion-info h4 {
    font-size: 0.9rem;
    margin: 0;
    color: var(--secondary-color);
}

.suggestion-info p {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

.hidden {
    display: none !important;
}

/* Mobile Responsiveness */
@media screen and (max-width: 1024px) {
    .nav-links {
        width: 45%;
    }
}

@media screen and (max-width: 980px) {
    .nav-links {
        width: 50%;
    }

    .nav-links {
        position: absolute;
        right: 30px;
        height: 50vh;
        top: 12vh;
        background-color: rgb(226, 226, 226);
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 10px;
        width: 30%;
        transform: translateX(10%);
        transition: transform 0.9s ease-in, visibility 0.5s;
        z-index: 999;
        visibility: hidden;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
        visibility: visible;
    }

    .nav-links li {
        opacity: 0;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    
    }
    .nav-links.nav-active li {
        opacity: 1;
        animation: navLinkFade 0.9s ease forwards;
    }

    .nav-links a {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 400;
    }

    .nav-links a:hover, .active-link {
        color: var(--primary-color) !important;
    }
    .brands-bar {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 10px 20px;
        gap: 20px;
    }
    
    .brands-scroll{
        gap: 30px;
        font-size: 0.7rem;
    }

    .burger {
        display: flex;
        z-index: 1001;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }
    
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .nav-links {
        position: absolute;
        right: 30px;
        height: 50vh;
        top: 10vh;
        background-color: rgb(226, 226, 226);
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 10px;
        width: 35%;
        transform: translateX(10%);
        transition: transform 0.9s ease-in, visibility 0.5s;
        z-index: 999;
        visibility: hidden;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
        visibility: visible;
    }

    .nav-links li {
        opacity: 0;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    
    }
    .nav-links.nav-active li {
        opacity: 1;
        animation: navLinkFade 0.9s ease forwards;
    }

    .nav-links a {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 400;
    }

    .nav-links a:hover, .active-link {
        color: var(--primary-color) !important;
    }
    .brands-bar {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 10px 20px;
        gap: 20px;
    }
    
    .brands-scroll{
        gap: 30px;
        font-size: 0.7rem;
    }

    .burger {
        display: flex;
        z-index: 1001;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }
    
    .hero {
        margin-top: 10px;
        height: 70vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

.nav-active {
    transform: translateX(0%) !important;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media screen and (max-width: 500px) {
    .brands-bar {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 10px 20px;
        gap: 10px;
    }
    
    .brands-scroll{
        gap: 10px;
        font-size: 0.7rem;
    }

    .nav-links {
        right: 30px;
        top: 12vh;
        width: 50%;
    }

    .nav-links a {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 400;
    }

    .nav-links a:hover, .active-link {
        color: var(--primary-color);
    }

    .hero {
        margin-top: 10px;
        height: 70vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .slogan {
        font-size: 1.1rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .hero-btns .btn {
        width: 100%;
        padding: 12px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .container, .container1 {
        width: 90%;
    }

    .newsletter-form input {
        width: 100%;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5px 20px;
    }

    .footer-bottom {
        width: 70%;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 20px;
        padding-top: 20px;
        font-size: 0.8rem;
        color: #777;
    }
}

