.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-header {
    text-align: center;
    margin-bottom: 40px;
}

.product-header h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.price {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c3e50;
    margin: 10px 0;
}

.specs {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.specs span {
    font-size: 0.9em;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 500;
    margin-right: 10px;
}

.badge.new {
    background-color: #4CAF50;
    color: white;
}

.badge.service-pack {
    background-color: #2196F3;
    color: white;
}

.add-to-cart {
    background-color: #007AFF;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.add-to-cart:hover {
    background-color: #0056b3;
}

.product-info-section {
    background: #f8f9fa;
    padding: 40px 20px;
    margin-top: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.info-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        padding: 10px;
    }

    .product-header h1 {
        font-size: 2em;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
} 