/* Debaj Tobacco — cacheable global theme tokens & shared utilities */

:root {
    --primary-red: #ff3419;
    --primary-dark: #d32c15;
    --primary-light: #ff6b59;
    --text-dark: #333333;
    --text-light: #666666;
}

.text-theme {
    color: var(--primary-red) !important;
}

.bg-theme {
    background-color: var(--primary-red) !important;
}

.btn-theme {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}

.btn-theme:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

/* Bootstrap 4 utility alias */
.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

/* Reduce layout shift for product/category images */
.image-fallback-wrapper {
    aspect-ratio: 1 / 1;
    background-color: #f8f9fa;
}

.product-image-wrap {
    aspect-ratio: 1 / 1;
}

.product-image-wrapper {
    aspect-ratio: 4 / 3;
}

.hero-slide-image {
    object-fit: contain;
    object-position: right center;
    width: 100%;
    height: 100%;
}

/* Navbar logo dimensions to prevent CLS */
.navbar-brand .image-fallback-wrapper {
    width: 140px;
    height: 40px;
    aspect-ratio: auto;
}

@media (max-width: 768px) {
    .navbar-brand .image-fallback-wrapper {
        width: 110px;
        height: 36px;
    }
}
