/* ==================== SHOP PAGE STYLES ==================== */

.shop-header {
    background: linear-gradient(135deg, #003459 0%, #001d3d 100%);
    padding: 80px 40px;
}

.header-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.3rem;
    margin-top: 15px;
}

.shop-intro {
    text-align: center;
    margin-bottom: 50px;
}

.shop-intro h2 {
    color: #003459;
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.shop-intro p {
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== COMING SOON SECTION ==================== */

.coming-soon-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #001d3d 0%, #003459 100%);
    border-radius: 15px;
    margin-bottom: 50px;
}

.coming-soon-icon {
    color: #00A7E1;
    margin-bottom: 25px;
}

.coming-soon-icon svg {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.coming-soon-section h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.coming-soon-section p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 15px;
    line-height: 1.7;
}

.coming-soon-note {
    font-size: 0.95rem !important;
    color: #00A7E1 !important;
    font-style: italic;
}

/* ==================== PRODUCTS GRID ==================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* ==================== PRODUCT CARD ==================== */

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-thumbnail {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #001d3d;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-header:hover {
    background-color: #003459;
}

.product-title {
    color: white;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    margin: 0;
}

.product-toggle {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.product-card.expanded .product-toggle {
    transform: rotate(180deg);
}

/* ==================== PRODUCT DETAILS (DROPDOWN) ==================== */

.product-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #f8f9fa;
    padding: 0 20px;
}

.product-card.expanded .product-details {
    max-height: 300px;
    padding: 20px;
}

.product-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-price {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00A7E1;
    margin-bottom: 15px;
}

.product-btn {
    display: inline-block;
    background-color: #00A7E1;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background-color: #001d3d;
    color: white;
    transform: translateY(-2px);
}

/* ==================== FOOTER STYLES ==================== */

footer {
    background-color: #001d3d;
    color: white;
    padding: 0;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 50px 40px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-section h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #00A7E1;
}

.footer-section p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00A7E1;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== MOBILE RESPONSIVE ==================== */

@media (max-width: 768px) {
    .shop-header {
        padding: 50px 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-thumbnail {
        height: 220px;
    }

    .product-header {
        padding: 15px;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-card.expanded .product-details {
        padding: 15px;
    }

    .footer-content {
        padding: 40px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        max-width: 100%;
    }

    .coming-soon-section {
        padding: 40px 20px;
    }

    .coming-soon-section h3 {
        font-size: 2rem;
    }

    .coming-soon-icon svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .shop-intro h2 {
        font-size: 1.6rem;
    }

    .shop-intro p {
        font-size: 1rem;
    }

    .product-thumbnail {
        height: 200px;
    }

    .product-price {
        font-size: 1.3rem;
    }
}
