/* Custom styles for Golden Iconic B2B */

/* General styles */
:root {
    --breadcrumb-active-color-white: #ffffff;
    --bs-breadcrumb-divider-color-white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



.breadcrumb-item.active {
    color: var(--breadcrumb-active-color-white) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-breadcrumb-divider-color-white) !important;
}

.page-title>h1,
.page-title>h2,
.page-title>h3,
.page-title>h4,
.page-title>h5,
.page-title>h6 {
    color: #ffffff !important;
}

/* Navbar styles */
.navbar-brand {
    font-weight: bold;
    color: #343a40;
}

/* Card styles */
.card {
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-weight: 600;
}

/* Product card styles */
.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.min-order-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

/* Button styles */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Footer styles */
.footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Form styles */
.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Table styles */
.table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Order status badges */
.badge.bg-pending {
    background-color: #ffc107;
}

.badge.bg-processing {
    background-color: #17a2b8;
}

.badge.bg-shipped {
    background-color: #007bff;
}

.badge.bg-delivered {
    background-color: #28a745;
}

.badge.bg-cancelled {
    background-color: #dc3545;
}

/* Bulk pricing table */
.bulk-pricing-table th,
.bulk-pricing-table td {
    text-align: center;
}

/* Cart quantity input */
.cart-quantity-input {
    width: 70px;
}


.categories_btn {
    padding: 20px 15px;
    color: #fff;
    text-align: left;
    width: 100%;
}

/* Uniform image heights for product displays */
.product_img img,
.product-image,
.tab-pane .product_img img {
    height: 250px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

/* Alternative: If you prefer no cropping but with padding */
.product_img.no-crop img,
.product-image.no-crop,
.tab-pane .product_img.no-crop img {
    height: auto;
    max-height: 250px;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

/* Alternative: Flexible height container with uniform aspect ratio */
.product_img.aspect-ratio,
.product-image.aspect-ratio {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.product_img.aspect-ratio img,
.product-image.aspect-ratio img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hover effect for product images */
.product_img img:hover,
.product-image:hover {
    transform: scale(1.05);
}

/* Ensure product cards have consistent height */
.product_wrap,
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Make product info section flexible */
.product_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

/* Ensure carousel items stretch to equal height */
.product_slider .item {
    display: flex;
    height: auto;
}

.product_slider .product_wrap {
    width: 100%;
}

/* Responsive adjustments for uniform images */
@media (max-width: 768px) {

    .product_img img,
    .product-image {
        height: 200px;
    }
}

@media (max-width: 576px) {

    .product_img img,
    .product-image {
        height: 180px;
    }
}