/* Compact Order Section */
.order-section-compact {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 40px 0;
    margin: 0;
}

.order-card {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.social-proof-badge {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border-left: 4px solid #f59e0b;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 14px;
    color: #92400e;
}

.social-proof-badge i {
    color: #d97706;
    margin-right: 8px;
}

.social-proof-badge strong {
    color: #92400e;
    font-size: 16px;
}

.order-card h2 {
    text-align: center;
    color: #1e293b;
    margin: 0 0 10px 0;
    font-size: 28px;
}

.order-subtitle {
    text-align: center;
    color: #64748b;
    margin: 0 0 30px 0;
    font-size: 16px;
}

.compact-order-form .form-group {
    margin-bottom: 20px;
}

.compact-order-form label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    font-size: 15px;
}

.compact-order-form label i {
    margin-right: 8px;
    color: #6366f1;
}

.compact-order-form .form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.compact-order-form .form-control:focus {
    outline: none;
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.compact-order-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236366f1' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
}

.form-help {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #64748b;
}

.form-help i {
    color: #10b981;
    margin-right: 4px;
}

/* Package Details Box */
.package-details-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: #166534;
}

.details-row i {
    margin-right: 6px;
    color: #22c55e;
}

.details-row.total-row {
    border-top: 2px solid #86efac;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 18px;
}

.total-price {
    color: #15803d;
    font-size: 22px;
}

/* CTA Buttons */
.cta-buttons {
    margin: 25px 0 20px 0;
}

.cta-buttons .btn {
    width: 100%;
    margin-bottom: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.cta-buttons .btn-outline {
    background: white;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.cta-buttons .btn-outline:hover {
    background: #f0f4ff;
    border-color: #4f46e5;
    color: #4f46e5;
}

/* Trust Badges Mini */
.trust-badges-mini {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 10px;
}

.trust-badges-mini span {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-badges-mini i {
    color: #10b981;
    font-size: 14px;
}

/* Full Product Info Section - Centered containers */
.product-details {
    background: #f8fafc;
    padding: 60px 0;
}

.product-details .container {
    display: block !important;
    grid-template-columns: none !important;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-info-full {
    max-width: 1000px;
    margin: 0 auto;
}

/* Center all product info sections - same width as timeline/guarantee */
.product-info-full .product-value,
.product-info-full .product-benefits,
.product-info-full .product-features,
.product-info-full .how-it-works-product,
.product-info-full .product-guarantee {
    max-width: 1000px;
    margin: 40px auto;
}

.product-info-full h2,
.product-info-full h3 {
    text-align: center;
}

.product-info-full .value-description {
    text-align: center;
    margin: 0 auto 30px;
}

.product-info-full .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.product-info-full .features-list {
    margin: 0 auto;
}

.product-info-full .steps-mini {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Center other sections on product page */
.delivery-timeline,
.guarantee-banner,
.faq-section,
.cross-sell-section {
    max-width: 1000px;
    margin: 40px auto;
}

.delivery-timeline h4,
.faq-section h3,
.cross-sell-section h3 {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .order-card {
        padding: 25px 20px;
        margin: 0 15px;
    }

    .order-card h2 {
        font-size: 24px;
    }

    .order-subtitle {
        font-size: 14px;
    }

    .trust-badges-mini {
        flex-direction: column;
        gap: 10px;
    }

    .details-row {
        font-size: 14px;
    }

    .total-price {
        font-size: 18px;
    }
}
