/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: #f9fdfa;
    color: #333;
}

/* Navbar Styling handled by header.css */

/* Explore Header */
.explore-header {
    background-color: #e8f5e9;
    text-align: center;
    padding: 3rem 5%;
    margin-bottom: 3rem;
}

.explore-header h1 {
    color: #2c5f2d;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.explore-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Product Grid */
.explore-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 5rem;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.explore-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.explore-card-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.explore-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.explore-card:hover .explore-card-img img {
    transform: scale(1.05);
}

.explore-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.explore-card-category {
    font-size: 0.8rem;
    color: #888;
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 0.8rem;
}

.explore-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.explore-card-price {
    font-size: 1.1rem;
    color: #2c5f2d;
    font-weight: 700;
    margin-bottom: 1rem;
}

.explore-card-btn {
    margin-top: auto;
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-color: #2c5f2d;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.explore-card-btn:hover {
    background-color: #1e4220;
}

/* Footer moved to footer.css */

@media (max-width: 768px) {
    .explore-navbar {
        padding: 1rem 5%;
    }


}