/* Stili aggiuntivi per Presura Shop */
.presura-shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.presura-shop-container h1 {
    text-align: center;
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 10px;
}

.shop-intro {
    text-align: center;
    font-size: 16px;
    color: #555;
}

.shop-cta {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #8B0000;
    margin: 20px 0;
}

.presura-section {
    margin: 40px 0;
}

.presura-section h2 {
    color: #2c3e50;
    border-bottom: 3px solid #8B0000;
    padding-bottom: 10px;
}

.oil-intro {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.presura-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .presura-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .presura-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.presura-product {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.presura-product h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: #8B0000;
    margin: 5px 0;
}

.product-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.product-qty {
    margin-top: 10px;
}

.product-qty label {
    font-size: 13px;
    display: block;
    margin-bottom: 3px;
}

.product-qty input {
    width: 60px;
    padding: 5px;
    border: 2px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.product-qty input:focus {
    border-color: #8B0000;
    outline: none;
}

.presura-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-row.total {
    font-size: 1.3em;
    font-weight: bold;
    color: #8B0000;
    border-bottom: none;
    padding-top: 15px;
}

.free-shipping {
    color: #28a745;
    font-weight: 600;
    border-bottom: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group input:focus {
    border-color: #8B0000;
    outline: none;
}

.privacy label {
    font-weight: normal;
    font-size: 13px;
}

.privacy input {
    width: auto;
    margin-right: 8px;
}

.btn-submit {
    background: #8B0000;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #a00000;
}

/* Pagina di conferma */
.presura-success {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.presura-success .icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.presura-success h1 {
    color: #28a745;
}

.presura-success .btn-home {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #8B0000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

.presura-success .btn-home:hover {
    background: #a00000;
}