@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #f4f7f6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #fff;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    margin: 0;
    font-size: 1.5em;
    color: #2c3e50;
}

#search-bar {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    width: 250px;
    font-size: 1em;
}

.section-title {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #34495e;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 150px;
    background-color: #f0f0f0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 1.2em;
    border-radius: 5px;
}

.product-image svg {
    width: 60px;
    height: 60px;
    color: #d1d5db;
}

.product-title {
    font-size: 1.2em;
    font-weight: 600;
    margin: 10px 0;
}

.product-price {
    font-size: 1.4em;
    font-weight: bold;
    color: #e74c3c;
    margin: 10px 0;
}

.product-buttons {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.2s;
    border: none;
}

.btn-primary {
    background-color: #3498db;
    color: #fff;
}

.btn-primary:hover {
    background-color: #2980b9;
}

#support {
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 40px;
    margin-top: 40px;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background-color: #34495e;
    color: #ecf0f1;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
}
