.iphone-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-header {
    text-align: center;
    margin-bottom: 40px;
}

.product-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.product-header .subtitle {
    font-size: 1.2em;
    color: #666;
}

/* Product Grid Styling */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    padding: 20px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 350px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.product-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 8px;
}

.product-card h3 {
    font-size: 1.2em;
    margin: 10px 0;
    color: #333;
}

.product-card .price {
    font-size: 1.5em;
    color: #2c3e50;
    font-weight: bold;
    margin: 10px 0;
}

.product-card .add-to-cart {
    background: #007aff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.product-card .add-to-cart:hover {
    background: #0056b3;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: bold;
}

.badge.new {
    background: #4CAF50;
    color: white;
}

.badge.service-pack {
    background: #2196F3;
    color: white;
}

/* Product Information Styling */
.product-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
}

.product-info h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.info-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.info-section h3 {
    color: #2c3e50;
    font-size: 1.3em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007aff;
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section ul li {
    padding: 8px 0;
    color: #555;
    font-size: 1.1em;
    border-bottom: 1px solid #eee;
}

.info-section ul li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 10px;
    }

    .product-card {
        min-height: 300px;
    }

    .product-card img {
        width: 150px;
        height: 150px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .product-info {
        padding: 20px;
    }
} 