/* Sipariş Takip Sayfası CSS */
:root {
    --red-color: #CF0C1F;
}

/* Banner Stili */
.tracking-banner {
    margin-top: 30px;
    margin-bottom: 20px;
    overflow: hidden;
}

.tracking-banner-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tracking-banner-img:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Sipariş Takip İçerik */
.order-tracking-content {
    padding: 60px 0;
}

.order-tracking-container {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.order-tracking-form {
    flex: 1;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-tracking-form h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.order-tracking-form p {
    margin-bottom: 25px;
    color: #666;
}

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

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

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

.form-group input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--red-color);
    box-shadow: 0 0 0 2px rgba(207, 12, 31, 0.1);
    outline: none;
}

.btn-track {
    background-color: var(--red-color);
    color: #fff;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 10px;
}

.btn-track:hover {
    background-color: #a80919;
}

.order-tracking-info {
    flex: 1.5;
}

.order-tracking-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.order-tracking-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--red-color);
    border-radius: 3px;
}

.tracking-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.tracking-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--red-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.tracking-faq {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger {
    background-color: #ffe5e5;
    color: #d63031;
    border: 1px solid #ffcccc;
}

.alert-success {
    background-color: #e5f9e0;
    color: #27ae60;
    border: 1px solid #c3e6cb;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .order-tracking-container {
        flex-direction: column;
    }
    
    .order-tracking-form, .order-tracking-info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .breadcrumb-title {
        font-size: 28px;
    }
    
    .order-tracking-content {
        padding: 40px 0;
    }
    
    .tracking-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-icon {
        margin-bottom: 15px;
    }
    
    .order-tracking-info h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .order-tracking-info h3 {
        text-align: center;
    }
}
