/* ShooPrints Pricing Calculator - Simple Clean Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* Header */
.header {
    background: #2563eb;
    color: white;
    padding: 30px 0;
    margin-bottom: 30px;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-info {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-info p {
    margin: 5px 0;
}

/* Main Content */
.main-content {
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card.selected {
    border-color: #2563eb;
    background: #f0f9ff;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-card p {
    color: #666;
    font-size: 1rem;
}

/* Calculator Section */
.calculator-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.calculator-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.calculator-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.form-group select,
.form-group input {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    color: #333;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #2563eb;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
}

.checkbox-group:hover {
    border-color: #2563eb;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.checkbox-label {
    font-size: 1rem;
    color: #333;
    cursor: pointer;
}

.checkbox-price {
    margin-left: auto;
    font-weight: 600;
    color: #2563eb;
}

/* Price Display */
.price-display {
    background: #2563eb;
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.price-display h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.price-breakdown {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-item:last-child {
    border-bottom: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.price-label {
    font-size: 1rem;
}

.price-value {
    font-size: 1rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        padding: 20px 0;
    }
    
    .logo {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-text h1 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .calculator-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .calculator-section {
        padding: 20px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .product-card {
        padding: 15px;
    }
    
    .calculator-section {
        padding: 15px;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
}