﻿#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}

#heroCarousel .carousel-indicators {
    bottom: -50px;
}

    #heroCarousel .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #333;
    }

/* Account Section Styles */
.account-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.account-sidebar {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.account-sidebar h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.account-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-menu li {
    margin-bottom: 10px;
}

.account-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.account-menu li a:hover {
    background-color: #f0f0f0;
    color: #333;
}

.account-menu li.active a {
    background-color: var(--accent-color, #007bff);
    color: white;
}

.account-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Orders Specific Styles */
.filter-group select {
    min-width: 200px;
}

.order-card {
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.order-card .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
}

.order-card .card-body {
    padding: 25px;
}

/* Order Progress Bar */
.order-progress {
    width: 100%;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.progress-step.completed .step-icon {
    background-color: var(--accent-color, #007bff);
    color: white;
}

.step-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-align: center;
    margin-top: 5px;
}

.progress-step.completed .step-label {
    color: #333;
    font-weight: 600;
}

.step-date {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

.progress-line {
    flex: 1;
    height: 3px;
    background-color: #e0e0e0;
    margin: 0 10px;
    position: relative;
    top: -30px;
}

.progress-line.completed {
    background-color: var(--accent-color, #007bff);
}

/* Order Items */
.order-items {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.order-item {
    padding: 10px 0;
}

.order-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

/* Product Images in Order Summary */
.order-item .item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    margin-right: 1rem;
}

.order-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item .item-image .item-quantity {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background-color: #667eea;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid white;
}

/* Tracking Info */
.tracking-info {
    border: 1px solid #e0e0e0;
}

/* Empty State */
.empty-state i {
    font-size: 80px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .account-sidebar {
        margin-bottom: 30px;
    }

    .progress-steps {
        flex-direction: column;
    }

    .progress-line {
        display: none;
    }

    .progress-step {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding: 10px 0;
    }

    .step-icon {
        margin-right: 15px;
        margin-bottom: 0;
    }

    .step-label {
        text-align: left;
        margin-top: 0;
        flex: 1;
    }
}
