/* Confirmation Page Styles */

/* Hero Section */
.confirmation-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.2);
}

.success-icon i {
    font-size: 50px;
    color: #28a745;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 30px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 4px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 100px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.timeline-icon i {
    color: #fff;
    font-size: 18px;
}

.timeline-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    margin-bottom: 10px;
    color: #dc3545;
    font-weight: 600;
}

/* Product Guide Cards */
.product-guide-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.guide-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background-color: #dc3545;
    color: #fff;
}

.guide-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.guide-icon i {
    font-size: 24px;
    color: #fff;
}

.guide-header h3 {
    margin-bottom: 0;
    font-weight: 600;
}

.guide-content {
    padding: 25px;
}

/* Timeline Card */
.timeline-card {
    background-color: rgba(220, 53, 69, 0.03);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.delivery-timeline {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}

.timeline-step {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 20px;
    height: calc(100% + 20px);
    width: 2px;
    background-color: rgba(220, 53, 69, 0.2);
    z-index: 0;
}

.timeline-step:last-child::before {
    display: none;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(220, 53, 69, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
    z-index: 1;
}

.step-icon i {
    color: #dc3545;
    font-size: 16px;
}

.step-content {
    flex: 1;
}

.step-content h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.step-content p {
    margin-bottom: 0;
    color: #6c757d;
}

/* Notice Card */
.notice-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.notice-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background-color: #ffc107;
    color: #212529;
}

.notice-header i {
    font-size: 24px;
    margin-right: 15px;
}

.notice-header h3 {
    margin-bottom: 0;
    font-weight: 600;
}

.notice-content {
    padding: 25px;
}

.notice-content ul {
    margin-top: 15px;
    padding-left: 20px;
}

.notice-content ul li {
    margin-bottom: 10px;
}

.notice-content ul li:last-child {
    margin-bottom: 0;
}

/* Return to Shop */
.return-shop {
    background-color: #f8f9fa;
}

/* Product Accordion Styles */
.product-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.product-accordion .accordion-button {
    padding: 0;
    background-color: #fff;
    box-shadow: none;
}

.product-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.product-accordion .accordion-button:not(.collapsed) {
    color: inherit;
    background-color: #fff;
}

.product-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc3545'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.product-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc3545'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    position: absolute;
    right: 25px;
}

.product-accordion-header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
}

.product-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.product-icon i {
    font-size: 24px;
    color: #dc3545;
}

.product-title {
    flex: 1;
}

.product-title h3 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 18px;
}

.product-title span {
    display: block;
    color: #6c757d;
    font-size: 14px;
}

.product-accordion .accordion-body {
    padding: 25px;
    background-color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .confirmation-hero {
        padding: 120px 0 40px;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .success-icon i {
        font-size: 40px;
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-icon {
        left: 20px;
    }
    
    .guide-header {
        padding: 15px 20px;
    }
    
    .guide-icon {
        width: 40px;
        height: 40px;
    }
    
    .guide-icon i {
        font-size: 20px;
    }
    
    .guide-content {
        padding: 20px;
    }
    
    .product-accordion-header {
        padding: 15px 20px;
    }
    
    .product-icon {
        width: 40px;
        height: 40px;
    }
    
    .product-icon i {
        font-size: 20px;
    }
    
    .product-accordion .accordion-body {
        padding: 20px;
    }
}
