/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
    background: #ffffff;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #999;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #1a6b5b;
}

.modal-content h2 {
    color: #1a6b5b;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #2c2c2c;
}

.modal-content strong {
    color: #1a6b5b;
    font-weight: 600;
}

.btn-shop {
    display: inline-block;
    background-color: #1a6b5b;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-shop:hover {
    background-color: #0a3a2f;
    transform: translateY(-2px);
}

/* Info Banner */
.info-banner {
    background-color: #ffffff;
    color: #2c2c2c;
    padding: 0.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0px;
    position: relative;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
    left: 0;
    right: 0;
    margin-top: 0;
}

@media (max-width: 768px) {
    .info-banner {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        margin-top: 120px;
    }
}

.info-banner p {
    margin: 0;
}

/* Navigation */
.navbar {
    background-color: #0a1f1a;
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    border-bottom: 1px solid #1a6b5b;
    box-shadow: 0 2px 8px rgba(26, 107, 91, 0.2);
}

.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
    gap: 2rem;
}

.navbar-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 400;
    color: rgba(245, 245, 245, 0.7);
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.navbar-text {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.navbar-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: #e8dcc4;
    text-transform: uppercase;
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #f5f5f5;
    position: relative;
    z-index: 10;
}

.logo img {
    height: 90px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
    position: relative;
}

.logo span {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.header-logo {
    margin-bottom: 1.5rem;
}

.header-logo img {
    height: 350px;
    width: auto;
    max-width: 90vw;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(245, 245, 245, 0.75);
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d4af37;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-icon {
    background: none;
    border: none;
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.3s;
    color: #d4c5b9;
}

.btn-icon:hover {
    opacity: 0.6;
}

/* Hero Section */
.hero {
    display: none;
}

/* Main Content */
.main-content {
    max-width: 1800px;
    margin: 0 auto;
    margin-left: 250px;
    padding: 0;
    padding-top: 2rem;
    display: flex;
    gap: 2rem;
}

/* Filter Toggle Button */
.filter-toggle {
    display: none;
}

/* Products Section */
.products-section {
    width: 100%;
    padding: 2rem;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

/* Filter Container */
.filter-container {
    width: 250px;
    padding: 2rem;
    background: #e8dcc4;
    border-radius: 0;
    height: calc(100vh - 120px);
    position: fixed;
    left: 0;
    top: 120px;
    overflow-y: auto;
    z-index: 998;
}

.filter-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #2c2c2c;
}

.filter-group input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #1a6b5b;
}

.filter-group label:hover {
    color: #1a6b5b;
}

.image-set {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    width: fit-content;
    margin: 0 auto;
}

.set-description {
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    border-top: 2px solid #1a6b5b;
}

.set-description h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.set-description p {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.6;
    font-weight: 500;
}

.image-row {
    display: flex;
    gap: 2rem;
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
}

.image-row.individual {
    justify-content: center;
}

.image-row.individual .product-card {
    max-width: 600px;
    width: 100%;
}

.image-row.set .product-card {
    flex: 1 1 auto;
    min-width: 280px;
    max-width: 450px;
}

/* Vertical images in sets should be narrower */
.image-row.set .product-card.vertical {
    flex: 0 1 320px;
    max-width: 380px;
}

/* Horizontal images in sets should be wider */
.image-row.set .product-card.horizontal {
    flex: 1 1 400px;
    max-width: 500px;
}

.product-card {
    position: relative;
    cursor: pointer;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.03);
}

/* Footer */
.footer {
    background: linear-gradient(to top, #0a4d3e 0%, #1a6b5b 100%);
    padding: 2.5rem 2rem;
    margin-top: 3rem;
    border-top: 1px solid #1a6b5b;
}

.footer-content {
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    margin-bottom: 1rem;
    color: rgba(245, 245, 245, 0.9);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #f5f5f5;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .image-row.set .product-card,
    .image-row.set .product-card.vertical,
    .image-row.set .product-card.horizontal {
        flex: 1 1 300px;
        max-width: 450px;
    }
}

@media (max-width: 700px) {
    .image-row.set .product-card,
    .image-row.set .product-card.vertical,
    .image-row.set .product-card.horizontal {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
        height: auto;
    }
    
    .nav-container {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .logo img {
        height: 50px;
    }
    
    .navbar-title {
        font-size: 1rem;
    }
    
    .navbar-subtitle {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .btn-icon {
        font-size: 1.5rem;
    }
    
    .info-banner {
        position: static;
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        margin-top: 0;
        z-index: auto;
        order: 2;
    }
    
    /* Filter toggle button */
    .filter-toggle {
        display: block;
        position: fixed;
        top: 150px;
        left: 1rem;
        z-index: 1001;
        background-color: #0a1f1a;
        color: #ffffff;
        border: 1px solid #1a6b5b;
        padding: 0.6rem 1rem;
        border-radius: 6px;
        cursor: pointer;
        font-size: 0.9rem;
        font-weight: 600;
        transition: background-color 0.3s;
    }
    
    .filter-toggle:hover {
        background-color: #1a6b5b;
    }
    
    /* Hide filter by default on mobile */
    .filter-container {
        display: none;
        width: 100%;
        max-width: 100%;
        height: auto;
        position: fixed;
        top: 190px;
        left: 0;
        background: #e8dcc4;
        padding: 1.5rem;
        border-radius: 0;
        margin-left: 0;
        z-index: 1002;
        overflow-y: auto;
    }
    
    /* Show filter when active */
    .filter-container.active {
        display: block;
    }
    
    .main-content {
        flex-direction: column;
        margin-left: 0;
        max-width: 100%;
        display: block;
        padding-top: 0;
    }
    
    .products-section {
        width: 100%;
        padding: 1.5rem;
        padding-top: 1.5rem;
        max-width: 100%;
    }
    
    .image-set {
        width: 100%;
        padding: 0.8rem;
        border-radius: 0;
        box-shadow: none;
        gap: 0;
        overflow: hidden;
        border: 1px solid #e0e0e0;
    }
    
    .product-card {
        border-radius: 0;
        box-shadow: none;
        overflow: hidden;
    }
    
    .product-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .product-card img {
        max-width: 100%;
        height: auto;
    }
    
    .set-description {
        border-radius: 0;
        padding: 1rem;
        border-top: 2px solid #1a6b5b;
        border-bottom: 1px solid #e0e0e0;
        margin: 0.8rem 0 0 0;
    }
    
    .set-description h2 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .set-description p {
        font-size: 0.85rem;
    }
}
