:root {
    --primary-color: #F87C1D; /* Matching DevExpress theme base color */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link {
    font-weight: 500;
}

.cart-badge {
    font-size: 0.7rem;
    vertical-align: top;
    margin-left: -5px;
}

main {
    flex: 1;
}

footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Product Card Styling */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.product-img-container {
    position: relative;
    overflow: hidden;
    padding-top: 125%; /* 4:5 Aspect Ratio */
}

.product-img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Product Details Styling */
.product-image-wrapper {
    aspect-ratio: 4/5;
}

.object-fit-cover {
    object-fit: cover;
}

.tracking-wider {
    letter-spacing: 0.1em;
}
