/* General Styles */
body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
}

/* Product Card */
.product-card {
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.product-card .sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}

.product-card .wishlist-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-card .sale-price {
    color: #dc3545;
    font-weight: bold;
}

.product-card .original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9em;
}

/* Cart Sidebar */
.offcanvas {
    width: 400px;
}

.cart-item {
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* Product Details Page */
.product-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
    opacity: 1;
}

/* Checkout Form */
.checkout-form label {
    font-weight: 500;
}

/* Order Tracking */
.tracking-step {
    position: relative;
    padding-bottom: 30px;
}

.tracking-step:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    bottom: 0;
    width: 2px;
    background: #dee2e6;
}

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

.tracking-step.active:before {
    background: #0d6efd;
}

.tracking-step .step-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.tracking-step.active .step-icon {
    border-color: #0d6efd;
    background: #0d6efd;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .offcanvas {
        width: 100%;
    }
    
    .product-gallery img {
        height: 300px;
    }
} 