* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background: #ffffff;
}

/* Top Banner */
.top-banner {
    background: #efefef;
    text-align: center;
    padding: 12px 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #ebebeb;
}

/* Header Layout - Big Search + Small Logo */
nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

/* Center logo when it's the only nav element (like on login/account pages) */
nav:has(.logo:only-child) {
    justify-content: center;
}

/* Absolutely center the logo without affecting nav-left/right positions */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Big Search Icon - Left Side */
.nav-left .search-icon img {
    height: 25px;        /* Big size like in your screenshot */
    width: 25px;
    object-fit: contain;
    margin-right: 90%;
}

.search-icon {
    display: flex;
    align-items: center;
}

/* Small Logo - Right Side */
.logo-image img {
    height: 42px;        /* Small & clean like "VNTG" */
    width: auto;
    max-width: 120px;
   /*object-fit: contain;*/
}

/* Small Account & Cart Icons */
.nav-right {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto ;
}

.nav-icon {
    height: 24px;           /* ← Change this to make smaller or bigger */
    width: 24px;
    object-fit: contain;
    opacity: 0.85;
}

.nav-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Optional: If you still want to keep emoji as fallback */
.icon-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.4rem;
}



/* Main Navigation */
.main-nav {
    border-top: 1px solid #ebebeb;
    background: white;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2.2rem;
    padding: 1rem 0;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.nav-links a:hover,
.nav-links a.active {
    text-decoration: underline;
    color: black;
}

/* Hero / Products */
.hero {
    padding: 4rem 2rem 6rem;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    text-align: center;
}

.product-image {
    height: 420px;
    background: #ececec;
    margin-bottom: 1.2rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.price {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
}

/* Newsletter */
.newsletter {
    text-align: center;
    padding: 5rem 2rem 4rem;
    background: #efefef;
    border-top: 1px solid #ebebeb;
}

.newsletter h2 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.newsletter p {
    font-size: 1.1rem;
    color: #6b6b6b;
    margin-bottom: 2rem;
}

.email-form {
    max-width: 420px;
    margin: 0 auto 3rem;
    display: flex;
    border: 1px solid #d9d9d9;
}

.email-form input {
    flex: 1;
    padding: 1.1rem 1.5rem;
    border: none;
    font-size: 1rem;
}

.email-form button {
    padding: 0 2rem;
    background: black;
    color: white;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    color: #525252;
    margin: 0 1rem;
    text-decoration: none;
}

/* Small Social Icons using your own images */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 2rem 0 1.5rem;
}

.social-link img {
    height: 22px;           /* Small size */
    width: 22px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.social-link:hover img {
    opacity: 1;
    transform: scale(1.2);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    background: #0a0a0a;
    color: #a6a6a6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}



/* Search Icon Image */
.search-icon img {
    height: 22px;
    width: 22px;
    object-fit: contain;
    vertical-align: middle;
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

/* Optional: Make it look better on hover */
.search-icon:hover {
    opacity: 0.7;
}

/*toppicks*/

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product-card {
    border: 5px solid #d3d0d0;
    background-color: #d3d0d0;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image img {
    width: 100%;
    border-radius: 10px;
}

.price {
    font-weight: bold;
    color: #111;
    margin-top: 5px;
}

/* Size Selector & Add to Cart */
.size-selector {
    margin: 12px 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.size-label {
    font-size: 0.95rem;
    color: #525252;
    margin-right: 5px;
}

.size-btn {
    background: white;
    border: 1.5px solid #d9d9d9;
    color: #2d2d2d;
    padding: 6px 12px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 38px;
}

.size-btn:hover {
    border-color: #2d2d2d;
}

.size-btn.active {
    background: #2d2d2d;
    color: white;
    border-color: #2d2d2d;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    background: black;
    color: white;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.add-to-cart-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

/* Make product card look better with new buttons */
.product-card {
    padding-bottom: 15px;
}

/* DROPDOWN */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-btn:hover {
    background-color: rgba(0,0,0,0.05);
    transform: scale(1.05);
}

.dropdown-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #6b6b6b;
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-btn::after {
    transform: translateY(-50%) rotate(180deg);
}

/* DROPDOWN MENU */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 35px;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.18), 0 4px 8px rgba(0,0,0,0.12);
    border-radius: 12px;
    overflow: hidden;
    z-index: 1000;
    border: 1px solid #e5e5e5;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* LINKS INSIDE DROPDOWN */
.dropdown-content a {
    color: #2d2d2d;
    padding: 14px 18px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid #efefef;
    position: relative;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: linear-gradient(135deg, #f4f4f4 0%, #e8e8e8 100%);
    color: #000;
    padding-left: 22px;
}

.dropdown-content a:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 0 2px 2px 0;
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

