:root {
    --primary-color: #d4af37;
    --bg-color: #ffffff;
    --secondary-bg: #f9f7f2;
    --text-color: #333333;
    --light-text: #666666;
    --accent-beige: #e1d0b1;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.navigation-wrapper {
    padding: 0rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 10px;
    z-index: 1000;
}

.logo-container {
    margin-bottom: 0;
}

.brand-logo {
    height: 70px;
    width: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    display: block;
}

header {
    background-color: white;
    padding: 5px 20px;
    border-radius: 36px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    transform: translateY(5px);
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 1001;
    top: 100%;
    left: -10px;
    padding: 1rem 0;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--text-color);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-bottom: none !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: var(--secondary-bg);
    color: var(--primary-color);
    padding-left: 25px;
}

#hero {
    position: relative;
    background-color: var(--secondary-bg);
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    margin-top: -70px;
}

/* ==================== SHIPPING BANNER ==================== */

.shipping-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 0.7rem 1rem;
    text-align: center;
    font-size: 0.88rem;
    z-index: 999;
    position: relative;
    overflow: hidden;
}

.shipping-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    animation: shimmerBanner 4s ease-in-out infinite;
}

@keyframes shimmerBanner {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

.shipping-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
}

.shipping-banner-icon {
    font-size: 1.1rem;
}

.shipping-banner-text {
    font-family: var(--font-body);
    letter-spacing: 0.3px;
}

.shipping-banner-text strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .shipping-banner {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
    .shipping-banner-icon {
        font-size: 0.95rem;
    }
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
}

.main-container {
    display: flex;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.sidebar {
    flex: 0 0 250px;
}

.filter-section {
    margin-bottom: 2.5rem;
}

.filter-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--accent-beige);
    padding-bottom: 0.5rem;
}

.filter-section ul {
    list-style: none;
}

.filter-section li {
    margin-bottom: 0.5rem;
}

.filter-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--light-text);
    cursor: pointer;
    transition: color 0.3s;
    text-align: left;
    padding: 5px 0;
    width: 100%;
}

.filter-btn:hover {
    color: var(--primary-color);
}

.filter-btn.active {
    color: var(--primary-color);
    font-weight: 600;
}

.collection-area {
    flex: 1;
}

.collection-area h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-color);
    text-align: left;
    margin-bottom: 2rem;
    margin-top: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2.5rem;
    border-radius: 12px;
}

.product-card {
    background-color: transparent;
    box-shadow: none;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid #e9e9e9;
    overflow: hidden;
    border-radius: 24px;
    padding: 0 0 20px 0;
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    margin-bottom: 1rem;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f7f7f7;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.view-details-txt {
    background-color: rgba(255,255,255,0.9);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid var(--accent-beige);
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.product-card:hover .view-details-txt {
    transform: translateY(0);
}

.product-info {
    padding: 0 0.5rem;
    text-align: left;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
    color: var(--text-color);
    font-weight: 700;
}

.product-price {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #d4af37;
}

.card-cart-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    padding: 0 0.5rem;
}

.card-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.card-qty-btn {
    background: #f5f5f5;
    border: none;
    padding: 0.4rem 0.7rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s;
    color: #333;
}

.card-qty-btn:hover {
    background: #e0e0e0;
}

.card-qty-value {
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 28px;
    text-align: center;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.card-add-to-cart {
    flex: 1;
    padding: 0.45rem 0.8rem;
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.card-add-to-cart:hover {
    background: transparent;
    color: var(--primary-color);
}

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
    padding: 2.5rem 2rem;
    margin-top: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

footer p {
    color: rgba(255,255,255,0.7);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    width: 90%;
    max-width: 900px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
    animation: fadeIn 0.4s;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
}

.modal-image {
    flex: 1;
    min-width: 300px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 80vh;
}

.modal-details {
    flex: 1;
    padding: 3rem;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-details h2 {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.modal-details .price {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: var(--font-body);
}

.modal-details p {
    margin-bottom: 2rem;
    color: var(--light-text);
}

.values-section {
    background: linear-gradient(180deg, #fff 0%, var(--secondary-bg) 100%);
    padding: 5rem 0;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.value-item {
    padding: 2rem;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.value-item .icon-box {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.value-item p {
    color: var(--light-text);
    font-size: 0.95rem;
    max-width: 300px;
    margin: 0 auto;
}

.lookbook-section {
    position: relative;
    height: 50vh;
    background-image: url('images/lookbook.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.lookbook-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 1;
}

.lookbook-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
}

.lookbook-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.lookbook-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-white {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: var(--primary-color);
    color: white;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #f0ebe0 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.newsletter-section h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    padding: 0.8rem 1rem;
    width: 300px;
    border: 1px solid #ccc;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .navigation-wrapper {
        padding: 0.5rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
        top: 0;
    }

    .logo-container {
        margin-bottom: 0.5rem;
    }

    .brand-logo {
        height: 50px;
        width: 50px;
    }

    header {
        width: 100%;
        padding: 8px 12px;
        border-radius: 24px;
    }

    nav ul {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.75rem;
    }

    nav a {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .dropdown-content {
        min-width: 160px;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
    }

    .dropdown:hover .dropdown-content {
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-content a {
        font-size: 0.75rem;
        padding: 8px 15px;
    }

    #hero {
        height: 70vh;
        margin-top: -140px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
    }

    .main-container {
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .container {
        padding: 1rem;
    }

    .sidebar {
        flex: none;
        width: 100%;
    }

    .filter-section {
        margin-bottom: 1.5rem;
    }

    .filter-section h3 {
        font-size: 1.2rem;
    }

    .filter-section ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .filter-section li {
        margin-bottom: 0;
    }

    .filter-btn {
        background-color: var(--secondary-bg);
        border: 1px solid var(--accent-beige);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        width: auto;
        text-align: center;
    }

    .filter-btn.active {
        background-color: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .collection-area {
        width: 100%;
    }

    .collection-area h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }

    .product-card {
        padding: 0 0 12px 0;
        border-radius: 16px;
    }

    .card-image-wrapper {
        margin-bottom: 0.5rem;
    }

    .product-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .product-card .price {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .card-cart-actions {
        padding: 0 8px;
    }

    .qty-selector {
        gap: 4px;
    }

    .qty-btn {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }

    .qty-display {
        min-width: 30px;
        font-size: 0.85rem;
    }

    .add-to-cart-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .values-section {
        padding: 3rem 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-item h3 {
        font-size: 1.3rem;
    }

    .value-item p {
        font-size: 0.9rem;
    }

    .lookbook-section {
        background-attachment: scroll;
        padding: 3rem 1rem;
    }

    .lookbook-content h2 {
        font-size: 2rem;
    }

    .lookbook-content p {
        font-size: 0.95rem;
    }

    footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-image img {
        height: 60vh;
    }

    .modal-details {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navigation-wrapper {
        padding: 0.5rem 0.75rem;
    }

    nav ul {
        gap: 0.3rem;
    }

    nav a {
        font-size: 0.65rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .collection-area h2 {
        font-size: 1.5rem;
    }

    .filter-section h3 {
        font-size: 1rem;
        text-align: center;
    }

    .filter-btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}
