/* iPhone 14 Pro Product Page Styles */
.iphone-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.product-header h1 {
    color: #0d0033;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.product-header .subtitle {
    color: #666;
    font-size: 1.2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.product-card h3 {
    color: #0d0033;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-card .price {
    color: #007bff;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.add-to-cart {
    background: #0d0033;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: #1a1a4f;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
}

.badge.new {
    background: #28a745;
}

.badge.service-pack {
    background: #ffc107;
    color: #000;
}

.product-info {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.product-info h2 {
    color: #0d0033;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.info-section h3 {
    color: #0d0033;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.info-section ul {
    list-style-type: none;
    padding: 0;
}

.info-section li {
    color: #444;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.info-section li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .iphone-container {
        margin: 20px;
        padding: 15px;
    }

    .product-header h1 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .iphone-container {
        margin: 10px;
        padding: 10px;
    }

    .product-header h1 {
        font-size: 1.8rem;
    }

    .product-card {
        padding: 10px;
    }

    .product-card h3 {
        font-size: 1rem;
    }

    .product-card .price {
        font-size: 1.1rem;
    }
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 1rem;
}

.product-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.8rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.add-to-cart-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.add-to-cart-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accessories-section {
    margin-top: 4rem;
}

.accessories-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-card .price {
    font-size: 1.1rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #28a745;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-details {
        grid-template-columns: 1fr;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .add-to-cart-btn {
        max-width: 100%;
    }
} 