/* LUBEK - Premium Design with 3D Animations */

/* CSS Variables - Enhanced Color Palette */
:root {
    /* Primary Brand Colors - Rich Navy Blue with depth */
    --primary-color: #0d47a1;
    --primary-dark: #01579b;
    --primary-light: #1976d2;
    --primary-lighter: #42a5f5;
    --primary-accent: #2196f3;

    --txt-dark: rgb(33,33,33);

    
    /* Accent Colors - Luxurious Gold */
    --accent-color: #ffa726;
    --accent-gold: #ffb74d;
    --accent-light: #ffcc80;
    --accent-dark: #fb8c00;
    
    /* Secondary Colors - Modern Slate */
    --secondary-color: #263238;
    --secondary-light: #37474f;
    --secondary-dark: #1a1a1a;
    
    /* Background Colors */
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --bg-grey: #f5f5f5;
    --bg-gradient: linear-gradient(135deg, #0d47a1 0%, #1976d2 50%, #42a5f5 100%);
    
    /* Text Colors */
    --text-dark: #212121;
    --text-medium: #616161;
    --text-light: #9e9e9e;
    --text-white: #ffffff;
    
    /* Gradients - Modern & Vibrant */
    --gradient-primary: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    --gradient-primary-hover: linear-gradient(135deg, #1565c0 0%, #1e88e5 100%);
    --gradient-gold: linear-gradient(135deg, #ffa726 0%, #ffb74d 100%);
    --gradient-gold-hover: linear-gradient(135deg, #fb8c00 0%, #ffa726 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13, 71, 161, 0.95) 0%, rgba(25, 118, 210, 0.92) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(13, 71, 161, 0.85) 0%, rgba(255, 167, 38, 0.75) 100%);
    
    /* Shadows - Enhanced Depth */
    --shadow-xs: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 8px 0 rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
    --shadow-lg: 0 8px 24px 0 rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px 0 rgba(0, 0, 0, 0.24);
    --shadow-3d: 0 20px 60px rgba(13, 71, 161, 0.25), 0 0 30px rgba(255, 167, 38, 0.15);
    --shadow-gold: 0 8px 32px rgba(255, 167, 38, 0.3);
    --shadow-blue: 0 8px 32px rgba(13, 71, 161, 0.3);
    
    /* Status Colors - Modern & Clear */
    --success-color: #4caf50;
    --success-light: #81c784;
    --error-color: #f44336;
    --error-light: #e57373;
    --warning-color: #ff9800;
    --warning-light: #ffb74d;
    --info-color: #2196f3;
    --info-light: #64b5f6;
    
    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

/* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll */
body, html {
    overflow-x: hidden;
    max-width: 100%;
}

/* Global Responsive Images - Ensure ALL admin-uploaded images are responsive */
img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
}

/* Inline images (like logos in navbar) should preserve inline behavior */
.navbar-brand img,
.footer-brand img,
a img {
    display: inline-block;
}

/* Responsive Image Classes */
.img-responsive,
.img-fluid {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    width: 100% !important;
    object-fit: cover;
}

/* Ensure images don't overflow containers */
.container img,
.container-fluid img,
.card img,
.product-card img,
.category-card img,
.facility-image img,
.about-image img,
.about-content img,
.facility-content img {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    object-fit: cover;
}

/* Product and category images need to fill containers */
.product-image img,
.category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* Logo responsive sizing - override height attribute */
.navbar-brand img,
.footer-brand img {
    max-width: 100% !important;
    height: auto !important;
    max-height: 40px !important;
    width: auto !important;
    object-fit: contain;
}

/* Product detail page images */
.product-image-container,
.product-image-container img {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
}

/* Carousel background images - responsive on all devices */
.page-header-carousel {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 300px;
}

/* Ensure all images in tables and lists are responsive */
.table img,
.list-unstyled img,
.feature-card img,
.content-body img:not(.category-image img):not(.product-image img),
.content-body p img,
.about-content img:not(.about-image img),
.facility-content img:not(.facility-image img) {
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
}

/* Images within text content (page content) */
.content-body img:not(.category-image img):not(.product-image img),
.page-content img,
article img:not(.category-image img):not(.product-image img) {
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
    display: block;
    margin: 1rem auto;
}

/* Image containers should prevent overflow */
.category-image,
.product-image,
.facility-image,
.about-image,
.product-image-container {
    overflow: hidden;
    width: 100%;
}

/* Ensure product cards and category cards contain images properly */
.product-card .product-image,
.category-card .category-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.product-card .product-image img,
.category-card .category-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    margin-top: 0;
    padding-top: 0;
    scroll-behavior: smooth;
}

/* Text colors for different backgrounds */
.bg-light p, .bg-white p {
    color: var(--text-medium) !important;
}

.bg-dark p, .bg-primary p {
    color: rgba(255, 255, 255, 0.9) !important;
}

section p {
    color: var(--text-medium);
}

.bg-dark section p, .bg-primary section p {
    color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

/* Headings on dark backgrounds */
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4, .bg-primary h5, .bg-primary h6,
section[style*="background: #0a2463"] h1,
section[style*="background: #0a2463"] h2,
section[style*="background: linear-gradient"] h1,
section[style*="background: linear-gradient"] h2 {
    color: var(--text-white) !important;
}

/* Headings on light backgrounds */
.bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4, .bg-light h5, .bg-light h6,
.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4, .bg-white h5, .bg-white h6 {
    color: var(--primary-color) !important;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

/* Navigation - Enhanced with 3D Effects */
.navbar {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.98) 0%, rgba(25, 118, 210, 0.95) 100%) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(13, 71, 161, 0.3);
    border-bottom: 3px solid transparent;
    background-image: linear-gradient(135deg, rgba(10, 36, 99, 1) 0%, rgba(30, 58, 138, 1) 100%),
                      linear-gradient(to right, #dc2626 0%, #facc15 50%, #dc2626 100%);
    background-size: 100% 100%, 200% 3px;
    background-position: 0 0, 0 100%;
    background-repeat: no-repeat;
    padding: 1rem 0 !important;
    margin: 0 !important;
    transition: var(--transition);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    overflow: visible !important;
}

.navbar .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 992px) {
    .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), rgba(250, 204, 21, 0.1), transparent);
    animation: navShimmer 3s infinite;
    pointer-events: none;
}

@keyframes navShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    margin-right: 0 !important;
    padding: 0 !important;
}

.navbar-brand span {
    color: var(--text-white) !important;
    -webkit-text-fill-color: var(--text-white) !important;
    background: none !important;
    background-clip: initial !important;
    -webkit-background-clip: initial !important;
    animation: none !important;
    text-shadow: none;
    position: relative;
}

/* Force white for bold brand text */
.navbar .navbar-brand .fw-bold {
    color: var(--text-white) !important;
    -webkit-text-fill-color: var(--text-white) !important;
    text-shadow: none !important;
}

/* Highest specificity fallback to ensure brand title is white everywhere */
nav.navbar.navbar-expand-lg .container .navbar-brand span.fw-bold {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    background-clip: initial !important;
    -webkit-background-clip: initial !important;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.6));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 15px rgba(250, 204, 21, 0.8));
    }
    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.6));
    }
}

.navbar-brand img {
    transition: var(--transition);
    filter: drop-shadow(0 4px 6px rgba(220, 38, 38, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
    margin-right: 0.5rem;
    vertical-align: middle;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 4px 6px rgba(220, 38, 38, 0.5));
    }
    50% { 
        transform: translateY(-8px) rotate(5deg);
        filter: drop-shadow(0 8px 12px rgba(250, 204, 21, 0.6));
    }
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    transition: var(--transition);
    position: relative;
    color: var(--text-white) !important;
    z-index: 1;
}

@media (min-width: 992px) {
    .nav-link {
        padding: 0.5rem 1.25rem !important;
        margin: 0 0.25rem;
    }
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 3px;
    background: #dc2626;
    transition: var(--transition);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 3px;
    background: #dc2626;
    transition: var(--transition);
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
    left: 10%;
    transform: translateX(0) scaleX(1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
    left: 10%;
    transform: translateX(0) scaleX(1);
}

.nav-link:hover {
    color: var(--text-white) !important;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.6);
}

.nav-link.active {
    color: var(--text-white) !important;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background: rgba(10, 36, 99, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: var(--text-white) !important;
    transition: var(--transition);
    position: relative;
}

.dropdown-item::before {
    content: '→';
    position: absolute;
    left: 10px;
    opacity: 0;
    transition: var(--transition);
    color: #facc15;
}

.dropdown-item:hover::before {
    opacity: 1;
    left: 15px;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.3), rgba(250, 204, 21, 0.3)) !important;
    color: var(--text-white) !important;
    padding-left: 2rem;
}

.dropdown-item.active::before {
    opacity: 1;
    left: 15px;
}

.dropdown-item.active {
	background: linear-gradient(90deg, rgba(220, 38, 38, 0.3), rgba(250, 204, 21, 0.3)) !important;
    color: var(--text-white) !important;
    padding-left: 2rem;

}

/* Navbar Toggler */
.navbar-toggler {
    border: 2px solid rgba(250, 204, 21, 0.5);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28220, 38, 38, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Scroll Effect */
.navbar.scrolled {
    padding: 0.75rem 0 !important;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
    border-bottom: 3px solid #dc2626;
}

/* ===================================
   HERO CAROUSEL SECTION - Clean Code
   =================================== */

/* Hero Carousel Container */
.hero-carousel-section {
    position: relative;
    width: 100%;
    max-width: 2500px;
    height: 600px;
    overflow: hidden;
    margin: 70px auto 0 auto;
    padding: 0;
}

.hero-carousel-section #heroCarousel {
    width: 100%;
    height: 600px;
}

.hero-carousel-section .carousel-inner {
    width: 100%;
    height: 600px;
    position: relative;
}

.hero-carousel-section .carousel-item {
    width: 100%;
    height: 600px;
    position: relative !important;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    display: block;
    z-index: 1;
}

/* Hero Overlay & Content */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Responsive - Tablets */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

/* ===================================
   END HERO CAROUSEL SECTION
   =================================== */


/* Buttons - 3D Effect */
.btn {
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--gradient-gold);
    color: #ffffff;
    box-shadow: var(--shadow-gold);
    border: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--gradient-gold-hover);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 167, 38, 0.45);
}

.btn-outline-primary {
    border: 2px solid var(--accent-gold);
    background: transparent;
    color: var(--text-white);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--gradient-gold);
    border-color: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* Section-specific Text Colors */
/* Subcategories Section */
.subcategories-section .section-title,
.subcategories-section h1,
.subcategories-section h2 {
    color: var(--primary-color) !important;
}

.subcategories-section p {
    color: var(--text-medium) !important;
}

/* Products Section */
.products-section .section-title,
.products-section h1,
.products-section h2,
.products-section h3 {
    color: var(--primary-color) !important;
}

.products-section p {
    color: var(--text-medium) !important;
}

/* Product Details Section */
.product-details h1,
.product-details h2,
.product-details h3 {
    color: var(--primary-color) !important;
}

.product-details p,
.product-details .product-description {
    color: var(--text-medium) !important;
}

/* Related Products Section */
.related-products .section-title,
.related-products h2 {
    color: var(--primary-color) !important;
}

/* Cards - Enhanced 3D */
.card, .category-card, .product-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
    transform-style: preserve-3d;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover, .category-card:hover, .product-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-3d);
}

.card-img-top {
    transition: var(--transition);
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover;
}

.category-image img, 
.product-image img {
    transition: var(--transition);
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.category-image, .product-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    background: var(--bg-gradient);
}

/* Ensure images fill their containers while maintaining aspect ratio */
.category-image img,
.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-overlay .btn {
    transform: scale(0.8);
    transition: var(--transition);
}

.category-card:hover .category-overlay .btn {
    transform: scale(1);
}

.card:hover .card-img-top,
.category-card:hover .category-image img,
.product-card:hover .product-image img {
    transform: scale(1.1);
}

.category-content, .product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    max-height: 250px;
    overflow-y: auto;
}

/* Custom scrollbar for cards */
.category-content::-webkit-scrollbar,
.product-content::-webkit-scrollbar,
.feature-card::-webkit-scrollbar,
.value-card::-webkit-scrollbar,
.contact-card::-webkit-scrollbar {
    width: 6px;
}

.category-content::-webkit-scrollbar-track,
.product-content::-webkit-scrollbar-track,
.feature-card::-webkit-scrollbar-track,
.value-card::-webkit-scrollbar-track,
.contact-card::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.category-content::-webkit-scrollbar-thumb,
.product-content::-webkit-scrollbar-thumb,
.feature-card::-webkit-scrollbar-thumb,
.value-card::-webkit-scrollbar-thumb,
.contact-card::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.category-content::-webkit-scrollbar-thumb:hover,
.product-content::-webkit-scrollbar-thumb:hover,
.feature-card::-webkit-scrollbar-thumb:hover,
.value-card::-webkit-scrollbar-thumb:hover,
.contact-card::-webkit-scrollbar-thumb:hover {
    background: #c9a961;
}

/* Standard scrollbar for Firefox */
.category-content,
.product-content,
.feature-card,
.value-card,
.contact-card {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) #f1f5f9;
}

.category-title, .product-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}
h1.category-title {
    font-size: 2rem;

}

.category-description {
    color: var(--text-medium);
    flex-grow: 1;
    margin-bottom: 0;
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    transform: scale(0.8) translateY(20px);
    transition: var(--transition);
    opacity: 0;
}

.product-card:hover .product-overlay .btn {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Product Footer */
.product-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 2px solid var(--bg-light);
    gap: 1rem;
}

.product-stock {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.product-stock.in-stock {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.product-stock.out-of-stock {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.product-sku {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-description {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

/* Categories Section */
.categories-section {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.categories-section .container,
.categories-section .row {
    position: relative;
    z-index: 1;
}

/* About Section - with 3D particles */
.about-section {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.about-section .container,
.about-section .row,
.about-section .about-content,
.about-section .about-image {
    position: relative;
    z-index: 1;
}

/* About Content Section */
.about-content {
    background: var(--bg-white);
}

.about-content h1,
.about-content h2,
.about-content h3,
.about-content h4 {
    color: var(--primary-color) !important;
}

.about-content p,
.about-content .content-body {
    color: var(--text-medium) !important;
}

/* Company Stats Section */
.company-stats {
    background: var(--bg-light);
}

.company-stats .section-title {
    color: var(--primary-color) !important;
}

/* Values Section */
.values-section {
    background: var(--bg-white);
}

.values-section .section-title {
    color: var(--primary-color) !important;
}

/* Facility Content Section */
.facility-content {
    background: var(--bg-white);
}

.facility-content h1,
.facility-content h2,
.facility-content h3 {
    color: var(--primary-color) !important;
}

.facility-content p {
    color: var(--text-medium) !important;
}

/* Facility Features Section */
.facility-features {
    background: var(--bg-light);
}

.facility-features .section-title {
    color: var(--primary-color) !important;
}

/* Facility Section - match footer gradient and add 3D particles */
.facility-section {
    position: relative;
    background: var(--gradient-primary);
    color: var(--text-white);
    overflow: hidden;
}

/* Distributor Section - match navbar gradient */
.distributor-section {
    position: relative;
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%) !important;
    color: var(--text-white);
    overflow: hidden;
}

.distributor-section h1,
.distributor-section h2,
.distributor-section h3,
.distributor-section p {
    color: var(--text-white) !important;
}

/* Distributor Content Section */
.distributor-content {
    background: var(--bg-white);
}

.distributor-content h1,
.distributor-content h2,
.distributor-content h3 {
    color: var(--primary-color) !important;
}

.distributor-content p {
    color: var(--text-medium) !important;
}

/* Application Form Section */
.application-form {
    background: var(--bg-light);
}

.application-form .section-title,
.application-form h1,
.application-form h2,
.application-form h3 {
    color: var(--primary-color) !important;
}

.application-form p,
.application-form label {
    color: var(--text-medium) !important;
}

.distributor-section .container,
.distributor-section .row,
.distributor-section .distributor-content {
    position: relative;
    z-index: 1;
}

.facility-section .section-title,
.facility-section .facility-text,
.facility-section h1,
.facility-section h2,
.facility-section h3,
.facility-section p {
    color: var(--text-white) !important;
}

.facility-section .facility-image img {
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
}

.facility-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06), transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(201,169,97,0.08), transparent 45%),
                radial-gradient(circle at 60% 70%, rgba(255,255,255,0.05), transparent 50%);
    filter: blur(0.2px);
}

.facility-section .container,
.facility-section .row,
.facility-section .facility-content,
.facility-section .facility-image {
    position: relative;
    z-index: 1;
}

.categories-section .row.g-4 {
    align-items: stretch;
}

.categories-section .col-lg-4,
.categories-section .col-md-6 {
    display: flex;
}

.categories-section .category-card {
    width: 100%;
}

/* Subcategories Section Enhancements */
.subcategories-section .category-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.subcategories-section .category-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(201, 169, 97, 0.3) !important;
}

.subcategories-section .badge {
    transition: all 0.3s ease;
}

.subcategories-section .category-card:hover .badge {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Homepage Category Badge */
.category-image .badge {
    animation: badge-pulse 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.category-card .category-title{
    margin-bottom:0px;
}

.category-card:hover .category-image .badge {
    animation: none;
    transform: scale(1.1);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    color: var(--primary-color) !important;
    font-weight: 900;
    background: none !important;
    background-color: transparent !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Section titles on dark backgrounds */
.bg-dark .section-title,
.bg-primary .section-title,
.facility-section .section-title {
    color: var(--text-white) !important;
}

/* Section titles on light backgrounds */
.bg-light .section-title,
.bg-white .section-title {
    color: var(--primary-color) !important;
}

/* Remove any backgrounds from section title containers */
.section-title,
h2.section-title,
.text-center .section-title,
.col-12 .section-title,
section .section-title {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Remove backgrounds from title wrapper containers */
.text-center.mb-5,
.col-12.text-center,
.col-12.text-center.mb-5,
section .row .col-12.text-center,
section .container > .row > .col-12 {
    background: transparent !important;
    background-color: transparent !important;
}

/* Section subtitles should also have no background */
.section-subtitle {
    background: none !important;
    background-color: transparent !important;
    color: var(--text-medium);
}

/* Ensure all headings inside sections have no background */
section h1,
section h2,
section h3,
.categories-section h2,
.facility-section h2,
.about-section h2,
.distributor-section h2 {
    background: none !important;
    background-color: transparent !important;
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
    margin-top: 100px; /* Push header down below fixed navbar */
    transition: var(--transition);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.5);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.page-header:hover::after { opacity: 1; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.page-header h1 {
    color: var(--text-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transition: var(--transition);
    transform: translateY(0);
}

.page-header .page-title {
    position: relative;
    display: inline-block;
}

.page-header .page-subtitle { 
    color: rgba(255, 255, 255, 0.9); 
    position: relative; 
    z-index: 1; 
}

/* Animated particles in page header */
.page-header-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* 3D Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease-out both;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out both;
}

.animate-rotate-y {
    animation: rotateY 0.8s ease-out both;
}

/* Slide in animations */
.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out both;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out both;
}

/* Hide elements initially */
.opacity-0 {
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateY {
    from {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    to {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Product Details */
.product-details {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.product-image-container img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.product-image-container:hover img {
    transform: scale(1.40) !important;
    /* box-shadow: var(--shadow-3d); */
}

/* Section Carousel Styles - Enhanced with Higher Specificity */
.carousel .page-header-carousel h1,
.carousel .page-header-carousel h1.display-3,
.page-header-carousel .container h1,
.page-header-carousel .container h1.display-3,
div.page-header-carousel h1 {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7) !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.carousel .page-header-carousel h1:hover,
.carousel .page-header-carousel h1.display-3:hover,
.page-header-carousel .container h1:hover,
.page-header-carousel .container h1.display-3:hover,
div.page-header-carousel h1:hover {
    color: #f4d03f !important;
    text-shadow: 0 0 20px rgba(244, 208, 63, 0.9),
                 0 0 30px rgba(244, 208, 63, 0.7),
                 0 0 40px rgba(244, 208, 63, 0.5),
                 2px 2px 8px rgba(0, 0, 0, 0.7) !important;
    transform: scale(1.02);
}

.carousel .page-header-carousel p,
.carousel .page-header-carousel p.lead,
.page-header-carousel .container p,
.page-header-carousel .container p.lead,
div.page-header-carousel p {
    color: #ffffff !important;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7) !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.carousel .page-header-carousel p:hover,
.carousel .page-header-carousel p.lead:hover,
.page-header-carousel .container p:hover,
.page-header-carousel .container p.lead:hover,
div.page-header-carousel p:hover {
    color: #c9a961 !important;
    text-shadow: 0 0 15px rgba(201, 169, 97, 0.8),
                 0 0 25px rgba(201, 169, 97, 0.5),
                 1px 1px 5px rgba(0, 0, 0, 0.7) !important;
    transform: scale(1.01);
}

/* Also target section-header-image for home page sections if needed */
.section-header-image h1,
.section-header-image h2,
.section-header-image .display-3,
.section-header-image .display-4 {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7) !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.section-header-image h1:hover,
.section-header-image h2:hover,
.section-header-image .display-3:hover,
.section-header-image .display-4:hover {
    color: #f4d03f !important;
    text-shadow: 0 0 20px rgba(244, 208, 63, 0.9),
                 0 0 30px rgba(244, 208, 63, 0.7),
                 0 0 40px rgba(244, 208, 63, 0.5),
                 2px 2px 8px rgba(0, 0, 0, 0.7) !important;
    transform: scale(1.02);
}

.section-header-image p,
.section-header-image .lead {
    color: #ffffff !important;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7) !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.section-header-image p:hover,
.section-header-image .lead:hover {
    color: #c9a961 !important;
    text-shadow: 0 0 15px rgba(201, 169, 97, 0.8),
                 0 0 25px rgba(201, 169, 97, 0.5),
                 1px 1px 5px rgba(0, 0, 0, 0.7) !important;
    transform: scale(1.01);
}

/* Footer - Enhanced 3D Design */
.footer {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.5);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer h5 {
    color: var(--accent-gold);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.5);
}

.footer p {
    margin-bottom: 0.75rem;
    opacity: 0.9;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer p:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--accent-gold);
}

.footer i {
    color: var(--accent-gold);
    transition: var(--transition);
}

.footer p:hover i {
    transform: scale(1.2);
    color: var(--accent-light);
}

/* Social Links - Redesigned */
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(201, 169, 97, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0;
    text-decoration: none;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: var(--transition);
    z-index: 0;
}

.social-links a:hover::before {
    left: 0;
}

.social-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.3) 0%, transparent 70%);
    transition: var(--transition);
    z-index: 1;
}

.social-links a:hover::after {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
}

.social-links a:hover {
    transform: translateY(-8px) scale(1.1);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.4), 
                0 0 0 4px rgba(201, 169, 97, 0.1);
}

.social-links a i {
    position: relative;
    z-index: 2;
    transition: var(--transition);
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 1.25rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.social-links a:hover i {
    color: var(--primary-color);
    transform: scale(1.2) rotate(5deg);
}

/* Specific social media colors on hover */
.social-links a[href*="facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-links a[href*="facebook"]:hover i {
    color: white;
}

.social-links a[href*="twitter"]:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-links a[href*="twitter"]:hover i {
    color: white;
}

.social-links a[href*="linkedin"]:hover {
    background: #0a66c2;
    border-color: #0a66c2;
}

.social-links a[href*="linkedin"]:hover i {
    color: white;
}

/* Footer HR - Animated */
.footer hr {
    border: none;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 97, 0.5), transparent);
    margin: 2rem 0;
    position: relative;
    animation: pulseLine 2s ease-in-out infinite;
}

.footer hr::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 9px;
    background: var(--gradient-gold);
    border-radius: 5px;
    animation: shimmer 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.8);
}

.footer hr::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgba(201, 169, 97, 0.8);
    border-radius: 3px;
    animation: moveAcross 3s ease-in-out infinite;
}

@keyframes pulseLine {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.05);
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}

@keyframes moveAcross {
    0% {
        left: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: calc(100% - 50px);
        opacity: 0;
    }
}

/* Footer Links */
.footer a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.footer a:hover {
    color: var(--accent-gold);
}

/* Quick Links Hover Effect */
.footer .list-unstyled, .footer .hfe-nav-menu {
    padding: 0;
    margin: 0;
}

.footer .list-unstyled li, .footer .hfe-nav-menu li.menu-item {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 20px;
}

.footer .list-unstyled li::before,  .footer ul.hfe-nav-menu li::before  {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    font-weight: bold;
}

.footer .list-unstyled li:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer .list-unstyled a {
    display: inline-block;
    padding: 0.25rem 0;
    transition: var(--transition);
    position: relative;
}

.footer .list-unstyled a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.footer .list-unstyled a:hover {
    color: var(--accent-gold);
    transform: translateX(8px);
}

.footer .list-unstyled a:hover::after {
    width: 100%;
}

/* Copyright */
.footer .text-center p {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer Particles */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Image Overlays */
.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 36, 99, 0.5) 100%);
    opacity: 0;
    transition: var(--transition);
}

.image-overlay:hover::after {
    opacity: 1;
}

/* Facility Highlights - Interactive */
.feature-card {
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    max-height: 400px;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--primary-color);
    font-size: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--bg-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
}

.feature-card:hover .feature-icon::before {
    width: 100%;
    height: 100%;
}

.feature-icon i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover h3 {
    color: var(--accent-gold);
    transform: translateY(-5px);
}

.feature-card p {
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.6;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Stat Cards - Interactive */
.stat-card {
    padding: 2rem 1rem;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    max-height: 250px;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-number {
    color: var(--accent-gold);
    transform: scale(1.1) rotateY(360deg);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-medium);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-label {
    color: var(--text-dark);
}

.stat-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-3d);
}

/* Value Cards - Interactive */
.value-card {
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    cursor: pointer;
    height: 100%;
    max-height: 400px;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.value-card:hover::after {
    width: 100%;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-size: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover .value-icon::before {
    opacity: 1;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
}

.value-icon i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.value-card:hover .value-icon i {
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.value-card:hover h3 {
    color: var(--accent-gold);
}

.value-card p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.6;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-3d);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

/* Custom Utilities */
.rounded-shadow {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
}

/* Responsive - Mobile First Approach */
@media (max-width: 575.98px) {
    /* Mobile */
    body {
        padding-top: 0;
    }
    
    .navbar {
        padding: 0.5rem 0 !important;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-brand span {
        animation: gradientShift 2.5s ease-in-out infinite;
    }
    
    .navbar-brand img {
        height: 30px !important;
        max-width: 100%;
        width: auto;
    }
    
    /* Enhanced responsive images for mobile (excluding category/product images) */
    img:not(.category-image img):not(.product-image img) {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
    }
    
    /* Override height attribute on mobile (excluding category/product images) */
    img[height]:not(.category-image img):not(.product-image img) {
        height: auto !important;
    }
    
    /* Category and product images must fill their containers */
    .product-image img,
    .category-image img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .category-image,
    .product-image {
        position: relative;
        overflow: hidden;
        height: 200px;
        min-height: 200px;
        max-height: 300px;
    }
    
    .facility-image img,
    .about-image img,
    .about-content img,
    .facility-content img {
        width: 100% !important;
        height: auto !important;
        max-height: 300px;
        object-fit: cover;
    }
    
    .product-image-container,
    .product-image-container img {
        max-height: 400px !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .navbar-brand img,
    .footer-brand img {
        max-height: 30px !important;
        height: auto !important;
        width: auto !important;
    }
    
    /* Carousel images on mobile */
    .page-header-carousel {
        min-height: 250px !important;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0 !important;
    }
    
    .page-header {
        margin-top: 80px; /* Push header down below mobile navbar */
    }
    
    /* Mobile-friendly buttons */
    .btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem !important;
        width: auto !important;
        display: inline-block !important;
    }
    
    .btn-lg {
        padding: 0.85rem 2rem !important;
        font-size: 1rem !important;
    }
    
    /* Center buttons on mobile */
    .text-center .btn,
    .text-center button {
        margin: 0.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .social-links a i {
        font-size: 1rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    /* Small tablets */
    /* Responsive images for tablets (excluding category/product images) */
    img:not(.category-image img):not(.product-image img) {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
    }
    
    /* Override height attribute on tablets (excluding category/product images) */
    img[height]:not(.category-image img):not(.product-image img) {
        height: auto !important;
    }
    
    /* Category and product images must fill their containers */
    .product-image img,
    .category-image img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .category-image,
    .product-image {
        position: relative;
        overflow: hidden;
        height: 220px;
        min-height: 220px;
        max-height: 350px;
    }
    
    .facility-image img,
    .about-image img {
        width: 100% !important;
        height: auto !important;
        max-height: 350px;
        object-fit: cover;
    }
    
    .product-image-container,
    .product-image-container img {
        max-height: 500px !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .navbar-brand img,
    .footer-brand img {
        max-height: 35px !important;
        height: auto !important;
        width: auto !important;
    }
    
    /* Carousel images on tablets */
    .page-header-carousel {
        min-height: 300px !important;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .btn {
        padding: 0.8rem 1.75rem !important;
        font-size: 1rem !important;
    }
    
    .btn-lg {
        padding: 0.9rem 2.25rem !important;
        font-size: 1.05rem !important;
    }
    
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.4rem; }
}

@media (max-width: 991.98px) {
    /* Tablets and below */
    .category-image,
    .product-image {
        height: 250px;
        min-height: 200px;
        max-height: 300px;
        position: relative;
        overflow: hidden;
    }
    
    .category-image img,
    .product-image img {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }
    
    .footer .row > div {
        margin-bottom: 2rem;
    }
    
    /* Ensure all images remain responsive */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    img[height] {
        height: auto !important;
    }
}

@media (max-width: 1199.98px) {
    /* Medium screens */
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (min-width: 1200px) {
    /* Large screens */
    h1 { font-size: 3.75rem; }
    h2 { font-size: 2.85rem; }
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-section .section-title {
    color: var(--primary-color) !important;
}

.contact-section h1,
.contact-section h2,
.contact-section h3 {
    color: var(--primary-color) !important;
}

.contact-section p,
.contact-section label {
    color: var(--text-medium) !important;
}

/* Contact Cards - Compact Design */
.contact-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card .contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.contact-card .contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

.contact-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-card .contact-link {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    word-break: break-word;
}

.contact-card .contact-link:hover {
    color: var(--accent-gold);
}

.contact-card .contact-text {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Carousel Position - Account for Fixed Navbar */
.carousel#facilityCarousel,
.carousel#aboutCarousel,
.carousel#contactCarousel,
.carousel#distributorCarousel,
.carousel#categoryCarousel {
    margin-top: 75px; /* Push carousel down below fixed navbar */
}

@media (max-width: 575.98px) {
    .carousel#facilityCarousel,
    .carousel#aboutCarousel,
    .carousel#contactCarousel,
    .carousel#distributorCarousel,
    .carousel#categoryCarousel {
        margin-top: 60px; /* Mobile navbar height */
    }
}

/* Carousel Header Hover Effects - Final Override */
#facilityCarousel h1:hover,
#aboutCarousel h1:hover,
#contactCarousel h1:hover,
#distributorCarousel h1:hover,
#categoryCarousel h1:hover {
    color: #f4d03f !important;
    text-shadow: 0 0 20px rgba(244, 208, 63, 0.9),
                 0 0 30px rgba(244, 208, 63, 0.7),
                 0 0 40px rgba(244, 208, 63, 0.5) !important;
    transform: scale(1.02) !important;
}

#facilityCarousel p:hover,
#aboutCarousel p:hover,
#contactCarousel p:hover,
#distributorCarousel p:hover,
#categoryCarousel p:hover {
    color: #c9a961 !important;
    text-shadow: 0 0 15px rgba(201, 169, 97, 0.8),
                 0 0 25px rgba(201, 169, 97, 0.5) !important;
    transform: scale(1.01) !important;
}

/* Print styles */
@media print {
    .navbar, .footer, .btn {
        display: none !important;
    }
    
    body {
        padding-top: 0;
    }
}



/* ==========================================
   Modification by Faisal Afif
   ========================================== */

.header-log-nav-wrapper {
	display: flex;
    justify-content: space-between;
    width: 100%;
}   

a.custom-logo-link  {
	max-width: 125px !important;
}

@media (max-width: 767.98px) {

	a.custom-logo-link {
		max-width: 120px !important;
	}

	button.navbar-toggler {
		background-color: transparent !important;
	}
}

@media (max-width: 575.98px) {

	a.custom-logo-link {
		max-width: 120px !important;
	}
}


.banner-bg {
	background-position: 60% 50%;
	min-height: 500px;
}

.cms-content.banner-dynamic {
    min-height: 500px;
}

.cms-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.cms-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 14px;
    text-align: center;
}

ul.cms-breadcrumb li {
	list-style: none;
}

ul.cms-breadcrumb li:not(:last-child) .breadcrumb-entry:after {
    padding: 0 6px;
	content: "\f054"; /* chevron-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* REQUIRED for solid icons */
    font-size: 10px;
}

h1.category-title.text-white, .text-white {
	color: var(--text-white) !important;
	-webkit-text-fill-color: var(--text-white) !important;
}

.secondary-heading {
	font-size: 1.5rem;
}

/* .product-wrapper section {
	padding-bottom: 0px;
} */

section.lubeck-product-banner {
	padding-top: 102px;
}

.flex-center {
	flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer .contact-info i.fas {
	-webkit-text-fill-color : #FFB74D;	
}

.footer .contact-info li {
	transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer .contact-info li:hover {
    opacity: 1; 
    transform: translateX(5px);
     color: var(--accent-gold);
}

.footer .contact-info li:hover i {
    transform: scale(1.2);
    color: var(--accent-light);
}

.footer .contact-info i {
    color: var(--accent-gold);
    transition: var(--transition);
}

.footer .social-links a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255) !important;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(25, 118, 210) 0%, rgb(66, 165, 245) 100%);
    transition: 0.3s;
    text-decoration: none;
}

.footer .list-unstyled li::before, .footer ul.hfe-nav-menu li::before {
    color: var(--accent-gold);
	-webkit-text-fill-color :var(--accent-gold);	

}

.btn-primary a,  .btn-outline-primary a {
	padding: 0px;
}

/* ==========================================
   CONTACT & DISTRIBUTOR PAGES - TEXT COLOR FIX
   Ensures readable text colors on light backgrounds
   ========================================== */

/* Contact Section - All text should be dark on light background */
.contact-section {
    background: #ffffff !important;
}

.contact-section h2,
.contact-section h3,
.contact-section h4,
.contact-section h5,
.contact-section .section-title {
    color: #1a237e !important;
    background: none !important;
    -webkit-text-fill-color: #1a237e !important;
    text-shadow: none !important;
}

.contact-section p,
.contact-section .contact-text {
    color: #424242 !important;
}

.contact-section a.contact-link {
    color: #1976d2 !important;
}

.contact-section a.contact-link:hover {
    color: #ff6f00 !important;
}

/* Social Links */
.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, #ff6f00 0%, #ffa726 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 111, 0, 0.4);
}

.social-links a i {
    font-size: 1.2rem;
}

/* Distributor Content Section */
.distributor-content {
    background: #ffffff !important;
}

.distributor-content h1,
.distributor-content h2,
.distributor-content h3,
.distributor-content h4,
.distributor-content h5,
.distributor-content h6 {
    color: #1a237e !important;
    background: none !important;
    -webkit-text-fill-color: #1a237e !important;
    text-shadow: none !important;
}

.distributor-content p,
.distributor-content .content-body,
.distributor-content .content-body p,
.distributor-content .content-body div,
.distributor-content .content-body span {
    color: #424242 !important;
}

/* Application Form Section */
.application-form {
    background: #f5f5f5 !important;
}

.application-form h1,
.application-form h2,
.application-form h3,
.application-form .section-title {
    color: #1a237e !important;
    background: none !important;
    -webkit-text-fill-color: #1a237e !important;
    text-shadow: none !important;
}

.application-form p,
.application-form .form-text,
.application-form label {
    color: #424242 !important;
}

/* Form Container */
.form-container {
    background: #ffffff !important;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Form Labels & Text */
.form-label {
    color: #1a237e !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.form-text {
    color: #616161 !important;
    font-size: 0.85rem;
}

/* Form Controls */
.form-control {
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    color: #212121 !important;
    background: #ffffff !important;
    transition: all 0.3s ease !important;
}

.form-control:focus {
    border-color: #1976d2;
    box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.15);
    background: #ffffff !important;
    color: #212121 !important;
}

.form-control::placeholder {
    color: #9e9e9e !important;
}

/* Textarea */
textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Invalid Feedback */
.invalid-feedback {
    color: #d32f2f !important;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Alerts */
.alert {
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #e8f5e9 !important;
    border: 1px solid #4caf50;
    color: #2e7d32 !important;
}

.alert-danger {
    background: #ffebee !important;
    border: 1px solid #f44336;
    color: #c62828 !important;
}

/* Contact Cards - Override inline styles if needed */
.contact-card h5 {
    color: #1a237e !important;
}

.contact-card p,
.contact-card a {
    color: #424242 !important;
}

.contact-card a:hover {
    color: #ff6f00 !important;
}

/* Ensure content body text is always readable */
.content-body,
.content-body p,
.content-body div,
.content-body span,
.content-body li {
    color: #424242 !important;
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
    color: #1a237e !important;
    background: none !important;
    -webkit-text-fill-color: #1a237e !important;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .form-container {
        padding: 1.5rem 10px;
    }
    
    .contact-section h5 {
        font-size: 1rem !important;
    }
}

.submit-inquiry::before {
	content: "\f1d8"; /* fa-paper-plane */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* required for solid icons (fas) */
    margin-right: 0.5rem; /* same as me-2 */
    display: inline-block;
}

.submit-inquiry::before {
    content: "\f35a";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 0.5rem;
}

.d-inline-block {
	display: inline-block;
}

.wpcf7-spinner {
	display: none;
}

.btn-submit  {
	position: relative;
	background-color: var(--accent-dark) ;
}
.btn-submit  p {
	margin: 0;
}
.btn-submit i {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	left: 10px;
	color: var(--bg-white);
	transition: all 0.3s ease !important;

}

.btn-submit:hover i {
	left: 15px;
}

/* Red border on invalid fields */
.wpcf7-not-valid {
    border: 2px solid #dc3545 !important;
    border-radius: 0.75rem;
}

/* Validation message below field */
.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.95rem;
    margin-top: 0.4rem;
    display: block;
}

/* Remove default CF7 styles */
.wpcf7 form .wpcf7-response-output {
    display: none;
}

/* Success state (green border) */
.wpcf7-form-control:not(.wpcf7-not-valid):not(:placeholder-shown):required {
    border: 2px solid #198754; /* Bootstrap green */
    border-radius: 0.75rem;
}

.wpcf7-form-control:not(.wpcf7-not-valid):not(:placeholder-shown):required + label,
.wpcf7-form-control:not(.wpcf7-not-valid):not(:placeholder-shown):required ~ label {
    color: #198754;
}

.cms-dowload-item {
    background-color: #212529 !important;
    color: #fff
}

.cms-dowload-item:hover {
    background-color: #ff6f00 !important;
    color: #fff
}

.cms-dowload-item .cms-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.cms-shadow-3, .cms-hover-shadow-3:hover {
    box-shadow: 0px 5px 83px 0px rgba(0, 28, 65, 0.14);
}

.p-50 {
    padding: 50px;
}

.cms-download-list {
	flex-direction: column;
}

.gap-20 {
	gap: 20px;
}

.text-32 {
    font-size: 32px;
}

i.cmsi-arrow-circle-right-2 {
	width: 20px !important;
	height: 20px !important;
	background-color: #fb8c00 !important;
	border-radius: 50%;
	position: relative;
}
	/*

.cmsi-arrow-circle-right-2::after{ 
	content: '';
    width: 60%;
    height: 60%;
    position: absolute;
    top: 20%;
    left: 20%;
    z-index: -1;
} */

i.cmsi-arrow-circle-right-2 {
	font-style: normal;
}

.cmsi-arrow-circle-right-2::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;             
	content: "\f061";              
	display: inline-block;
	margin-left: 0;
	color: #fff;
	font-size: 12px;
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
}

.elementor-widget-icon-list .elementor-icon-list-text {
	color: #424242;
}


@media screen and (min-width: 769px) and (max-width: 1024px) {
    .cms-dowload-item .cms-icon {
        width:50px
    }
}

.text-heading-lighten {
    color: #001c41;
}

.font-700 {
    font-weight: bold;
}

.product-wrapper section:nth-child(2){
	padding-top: 0px;
}

.product-wrapper h1.cms-title, 
.product-wrapper h2, 
.product-wrapper h2.elementor-heading-title,
.product-wrapper h3, 
.product-wrapper h3.elementor-heading-title {
	color: var(--product-heading-color);
}

.product-wrapper h1.cms-title {
	font-size: 2rem;
	text-align: center;
}

.product-wrapper h2, 
.product-wrapper h2.elementor-heading-title {
	font-size: 2rem;
	font-weight: 700;
}
.product-wrapper h3, 
.product-wrapper h3.elementor-heading-title {
	font-size: 1.5rem;
	font-weight: 700;
}
.product-wrapper h4, 
.product-wrapper h4.elementor-heading-title {
	font-size: 1.2rem;
}

.product-wrapper .product-detial-image .cms-single-image {
	display: flex;
	justify-content: end;
}

.per-lvl .cms-desc {
    color: #dc2626;
    font-weight: 600;
    font-size: 20px;
}

.product-wrapper .product-benifits {
	color: var(--txt-dark);
}

.product-wrapper .product-benifits .elementor-icon-list-text {
	color: inherit;
}

.product-wrapper .product-benifits .elementor-icon-list-icon i {
	color: #fb8c00 !important;

}

.p2rm {
	padding: 2rem;
}

@media (max-width: 767px) {

	section.lubeck-product-banner {
		padding-top: 83px;
	}

    .product-wrapper .page-header h1.cms-title {
        font-size: 1.2rem;
    }

	.product-wrapper .page-header h1.cms-desc {
        font-size: 0.9rem;
    }

	.product-wrapper h2, 
	.product-wrapper h2.elementor-heading-title {
		font-size: 1.1rem;
	}
	.product-wrapper h3, 
	.product-wrapper h3.elementor-heading-title {
		font-size: 1.1rem;
	}
	.product-wrapper h4, 
	.product-wrapper h4.elementor-heading-title {
		font-size: 1.1rem;
	}

	.product-detial-image .cms-single-image {
		justify-content: center;
	}

	.product-wrapper .cms-desc-bold, .product-wrapper .cms-desc {
		font-size: 0.8rem;
	}

	.product-wrapper .lubeck-product-banner .cms-desc {
		text-align: center;
	}

	.product-wrapper .product-detial-image .cms-single-image {
		justify-content: center;
	}

	.product-wrapper .list-col-2 {
		column-count: 1;
	}

	.product-meet-exceed {
		font-size: 0.8rem;
	}

	.product-wrapper .product-benifits {
		font-size: 0.8rem;

	}

	.per-lvl .cms-desc {
		font-size: 0.8rem;
	}

	.cms-download-list .files-wraper {
		flex-direction: column;
		align-items: center;
	}

	.p2rm {
		padding: 1rem;
	}
}

.p-40 {
    padding: 40px;
}

.product-wrapper .cms-cta-layout-4 {
    /* background-color: #ececec !important;
	padding: 2.5rem;
    border-radius: 12px; */
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
}

.product-wrapper .elementor-widget:not(:last-child) {
    margin-block-end: 20px;
}

.divider-bot:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background-color: #d9e0e9;
}

.pr-30 {
    padding-inline-end: 30px;
}

.product-wrapper .elementor-element .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    /* padding: 20px; */
}

.overflow-hidden {
    overflow: hidden;
}

.lubeck-footer-logo img {
    width:150px;
    height:80px;
}

.video-black-overlay section .elementor-background-overlay {
	background-color: #000 !important;
}

.elementor-button {
    background-color: transparent !important;
}

.txt-white, .txt-white h1 {
	color: var(--text-white);
    -webkit-text-fill-color: var(--text-white);
}

.list-col-2 {
	column-count: 2;
}

/* .p2 .elementor-container{
	padding: 2rem;
} */
section.bg-gray{
	background-color: #ececec;
} 
section.border-radius{
	border-radius: 15px;
}

.quote-section {
	overflow: visible;
}

.breadcrumb-bar {
  background: #ffffff;
  padding: 12px 28px;
  /* margin: 20px 0; */
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-bar span {
  font-size: 11px;
  color: #0a2463;
  opacity: 0.45;
}

.breadcrumb-bar a {
  font-size: 11px;
  color: #0a2463;
  opacity: 0.45;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.breadcrumb-bar a:hover {
  opacity: 1;
}

.breadcrumb-bar .sep {
  color: #ccc;
  font-size: 12px;
  margin: 0 4px;
}

.breadcrumb-bar .current {
  font-size: 11px;
  color: #ff6f00;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 1;
}

.category-badge {
	display: inline-block;
    /* background: #ff6f00; */
	border: 1px solid #ff6f00;
	color: #ff6f00;
    padding: 5px 8px;
    border-radius: 25px;
    font-size: 10px;
	transition: all 0.8s linear;
    margin-bottom:15px;
}

.cat-list-layout-1 .category-content{
	gap: 15px;
}

.cat-list-layout-1:hover .category-badge {
    color: #fff;
    background: #ff6f00;

}

.cat-list-layout-2 .category-content{
	/* background: #1a1a1a; */
	position: relative;
	gap: 15px;
}
.cat-list-layout-1 .category-content::before{
	content: '';
	position: absolute;
    background-image: url(../images/Lubeck-Logo-82.webp);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    /* z-index: -1; */
    opacity: 0.9;
    left: 0;
    top: 0;
	background-position: right 15px top 15px;
    width: 100%;
    background-size: 60px;
}
.cat-list-layout-2 .category-content::after{
	content: '';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #1a1a1a;
	z-index: -1;

}

.cat-list-layout-2 .category-content::before{
	content: '';
	position: absolute;
    background-image: url(../images/Lubeck-Logo-82.webp);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    /* z-index: -1; */
    opacity: 0.9;
    left: 0;
    top: 0;
	background-position: right 15px top 15px;
    width: 100%;
    background-size: 60px;
}

.cat-list-layout-2 .category-content .category-title a {
	color: #fff;
	-webkit-text-fill-color: #fff;
}

.cat-list-layout-2:hover .category-badge {
	color: #fff;
	background: #ff6f00;

}
.cat-list-layout-3 .category-title{ margin-bottom: 0rem;}
.cat-list-layout-3 .category-content{
	/* background: #1a1a1a; */
	position: relative;
	gap: 15px;
}
.cat-list-layout-3 .category-content::after{
	content: '';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background-color: #0a2463f2; */
	background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
	z-index: -1;

}

.cat-list-layout-3 .category-content::before{
	/* content: ''; */
	position: absolute;
    background-image: url(../images/Lubeck-Logo-82.webp);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    /* z-index: -1; */
    opacity: 0.9;
    left: 0;
    top: 0;
	background-position: right 15px top 15px;
    width: 100%;
    background-size: 60px;
}
.cat-list-layout-3 .category-content .category-title {
	position: relative;
	z-index: 2;
    color: #fff;
	-webkit-text-fill-color: #fff;
	word-break: keep-all;
    overflow-wrap: break-word;
    /* hyphens: none; */
    line-height: 1.35;
    font-size: clamp(14px, 1.5vw, 17px);
}

.cat-list-layout-3 .category-content .category-title a {
	color: #fff;
	-webkit-text-fill-color: #fff;
}

.cat-list-layout-3 .category-content .category-title span {
	display: block;
}

.cat-list-layout-3:hover .category-badge {
	/* color: #fff;
	background: #ff6f00; */
}

.cat-list-layout-3 .category-card:hover .category-badge {
	color: #fff;
	background: #ff6f00;
}

.heading-gradient h1  , .heading-gradient h2
.heading-gradient h1.elementor-heading-title  , .heading-gradient h2.elementor-heading-title  {
	background: linear-gradient(90deg, #ff6f00, #ffb347) !important;
    color: transparent !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.heading-gradient h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: 30%;
    height: 1px;
    background: linear-gradient(to right, transparent, #ff6f00 20%, #ff6f00 80%, transparent) !important;
    border-radius: 50px;
}

.product-category-heading {
	position: relative;
	display: inline-block;
	margin-bottom: 0px;
}
.product-category-heading::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%); 
	bottom: -10px;
	width: 220px;
	height: 3px;
	background: linear-gradient(90deg,#ff7b00,#ffb347) !important;
	border-radius: 20px;
}


.product-category-heading-wrap{
    position: relative;
    overflow: hidden;
    padding: 20px 50px;
    border-radius: 24px;
    background: linear-gradient(
        90deg,
        #f7f3ec 0%,
        #fffaf3 45%,
        #fff3dc 100%
    );
    margin-bottom: 40px;
    border: 1px solid rgba(255, 166, 0, 0.15);
}

/* Oil Splash Background */
.product-category-heading-wrap::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: url('../images/oilsplash-resized.png') 
                no-repeat right center;
    background-size: contain;
    pointer-events: none;
}

/* Small top label */
.product-category-subtitle{
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 18px;
    font-weight: 700;
    color: #ff6f00;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* .product-category-subtitle::before,
.product-category-subtitle::after{
    content: '';
    width: 60px;
    height: 2px;
    background: #ff6f00;
} */

/* Main Heading */
.product-category-heading{
    position: relative;
    z-index: 2;

    font-size: 54px;
    font-weight: 900;
    line-height: 1.1;
    color: #0b2d73;
    margin: 0;
    max-width: 70%;
}

h2.product-category-heading {
	font-size: 1.2rem;
}

/* Bottom Accent Line */
/* .product-category-heading-wrap::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: url('../images/oilsplash-resized.png') 
                no-repeat right center;
    background-size: contain;
    pointer-events: none;
} */

/* Mobile */
@media(max-width: 991px){

    .product-category-heading-wrap{
        padding: 30px;
    }

    .product-category-heading{
        font-size: 34px;
        max-width: 100%;
    }

    .product-category-heading-wrap::after{
        opacity: .15;
        width: 100%;
        background-size: cover;
    }
}

.product-category-section {
	margin-bottom: 3rem;
}

.product-category-section:nth-child(even) {
	padding: 3rem 0;
	background-color: #fafafa;
}

.product-category-section .product-category-heading-wrap::before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: url('../images/oilsplash-resized.png') 
                no-repeat right center;
    background-size: contain;
    pointer-events: none;
	transform: scale(-1);
}

.product-category-section .product-category-heading-wrap {
	text-align: center;
}

/* .product-category-section:nth-child(even) .product-category-heading-wrap 
.product-category-heading::after{
	left: 50%;
	transform: translateX(-50%); 
} */

.lubeck-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f7f9fc 0%, #eef3f8 100%);
}

.lubeck-404__inner {
  max-width: 650px;
}

.lubeck-404 h1 {
  font-size: 120px;
  line-height: 1;
  margin: 0;
  color: #0d47a1;
  font-weight: 800;
}

.lubeck-404 h2 {
  font-size: 36px;
  margin: 15px 0;
  color: #111;
}

.lubeck-404 p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.lubeck-404__btn {
  display: inline-block;
  padding: 14px 32px;
  background: #0d47a1;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
}

.lubeck-404__btn:hover {
  background: #08306f;
  color: #fff;
}

@media(max-width: 766px){

	h2.product-category-heading {
		font-size: 0.8rem;
		max-width: 70%;
		line-height: 1.3rem;
	}

	.product-category-heading-wrap {
		padding: 20px;
	}

	.product-category-heading::after {
		width: 85%;
	}
	.product-category-section .product-category-heading-wrap::before {
		content: none;
	}

	.product-category-section {
		margin-bottom: 0;
	}
}

/* Show dropdown on hover */
.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Optional: smooth hover */
.dropdown-menu {
    margin-top: 0;
}

.product-image-container {
	/* content: ''; */
	background-image: url(../images/placeholder/placeholder-product-1.webp);
	background-size: cover;
	background-position: center center;
	min-height: 420px;
	max-width: 320px !important;
    display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 15px;
}

/* Modern mobile navigation */
@media (max-width: 991.98px) {
    body.mobile-nav-open {
        overflow: hidden;
    }

    .navbar {
        padding: 0.75rem 0 !important;
        background-image:
            linear-gradient(135deg, rgba(5, 20, 58, 0.98) 0%, rgba(13, 71, 161, 0.96) 58%, rgba(18, 31, 64, 0.98) 100%),
            linear-gradient(to right, #dc2626 0%, #facc15 50%, #dc2626 100%) !important;
        box-shadow: 0 16px 38px rgba(3, 10, 28, 0.28);
    }

    body.mobile-nav-open .navbar {
        transform: translateY(0) !important;
    }

    .navbar .container {
        align-items: center;
        gap: 0.75rem;
        position: relative;
        z-index: 1003;
    }

    .navbar::before {
        opacity: 0.45;
    }

    .navbar-toggler {
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
        border: 1px solid rgba(250, 204, 21, 0.62) !important;
        border-radius: 14px;
        background:
            radial-gradient(circle at 30% 20%, rgba(250, 204, 21, 0.28), transparent 34%),
            rgba(255, 255, 255, 0.08) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.22),
            0 12px 28px rgba(0, 0, 0, 0.22);
        position: relative;
        z-index: 1002;
        transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    }

    .navbar-toggler::after {
        content: "";
        position: absolute;
        inset: -6px;
        border: 1px solid rgba(250, 204, 21, 0.32);
        border-radius: 18px;
        opacity: 0;
        transform: scale(0.82);
        pointer-events: none;
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus {
        border-color: rgba(250, 204, 21, 0.95) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.28),
            0 14px 32px rgba(0, 0, 0, 0.3),
            0 0 0 4px rgba(250, 204, 21, 0.16);
        outline: none;
        transform: translateY(-1px);
    }

    .navbar-toggler-icon,
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 24px;
        height: 2px;
        border-radius: 999px;
        background: #facc15;
        background-image: none !important;
        display: block;
        position: absolute;
        transition: transform 0.28s ease, opacity 0.2s ease, background-color 0.25s ease;
    }

    .navbar-toggler-icon {
        position: relative;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: "";
        left: 0;
    }

    .navbar-toggler-icon::before {
        transform: translateY(-8px);
    }

    .navbar-toggler-icon::after {
        transform: translateY(8px);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background: transparent;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        background: #ffffff;
        transform: rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        background: #ffffff;
        transform: rotate(-45deg);
    }

    .navbar-toggler[aria-expanded="true"] {
        animation: menuTogglePop 0.42s cubic-bezier(0.22, 1, 0.36, 1);
        background:
            radial-gradient(circle at 70% 30%, rgba(220, 38, 38, 0.3), transparent 34%),
            rgba(250, 204, 21, 0.16) !important;
    }

    .navbar-toggler[aria-expanded="true"]::after {
        animation: menuToggleRing 0.55s ease-out;
    }

    .navbar-collapse {
        width: 100vw;
        height: 100vh;
        position: fixed;
        inset: 0;
        padding: 6.5rem 1rem 2rem;
        margin: 0 !important;
        border: 0;
        border-radius: 0;
        background:
            linear-gradient(180deg, rgba(4, 10, 24, 0.98) 0%, rgba(0, 5, 18, 0.96) 100%);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.46);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        overflow-x: hidden;
        overflow-y: auto;
        z-index: 1001;
        transform-origin: top right;
    }

    .navbar-collapse.show {
        animation: mobileMenuReveal 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .navbar-collapse.collapsing {
        height: 100vh !important;
        transition: none;
        animation: mobileMenuHide 0.24s ease-in both;
    }

    .navbar-collapse::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        pointer-events: none;
        background:
            linear-gradient(90deg, rgba(220, 38, 38, 0.18), transparent 32%, rgba(250, 204, 21, 0.16) 68%, transparent),
            linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%);
    }

    .navbar-nav {
        gap: 0.18rem;
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 680px;
        min-height: calc(100vh - 8.5rem);
        margin: 0 auto;
        padding-bottom: 2rem;
        justify-content: center;
    }

    .navbar-nav .nav-item {
        position: relative;
    }

    .navbar-collapse.show .navbar-nav > .nav-item {
        animation: mobileMenuItemIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .navbar-collapse.show .navbar-nav > .nav-item:nth-child(1) { animation-delay: 0.06s; }
    .navbar-collapse.show .navbar-nav > .nav-item:nth-child(2) { animation-delay: 0.1s; }
    .navbar-collapse.show .navbar-nav > .nav-item:nth-child(3) { animation-delay: 0.14s; }
    .navbar-collapse.show .navbar-nav > .nav-item:nth-child(4) { animation-delay: 0.18s; }
    .navbar-collapse.show .navbar-nav > .nav-item:nth-child(5) { animation-delay: 0.22s; }
    .navbar-collapse.show .navbar-nav > .nav-item:nth-child(6) { animation-delay: 0.26s; }
    .navbar-collapse.show .navbar-nav > .nav-item:nth-child(n+7) { animation-delay: 0.3s; }

    .navbar-nav .nav-link {
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 !important;
        padding: 0.9rem 1rem !important;
        border: 1px solid transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        color: #ffffff !important;
        font-size: 0.95rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        line-height: 1.2;
        text-shadow: 0 1px 12px rgba(0, 0, 0, 0.38);
    }

    .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-nav .nav-link::after {
        position: static;
        width: 7px;
        height: 7px;
        flex: 0 0 auto;
        margin-left: 0.75rem;
        border: 0 !important;
        border-radius: 50%;
        background: rgba(250, 204, 21, 0.9);
        box-shadow: 0 0 14px rgba(250, 204, 21, 0.62);
        transform: none;
        opacity: 0;
        z-index: 0;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link.active {
        border-color: rgba(250, 204, 21, 0.2);
        background: linear-gradient(90deg, rgba(220, 38, 38, 0.22), rgba(250, 204, 21, 0.08));
        color: #ffffff !important;
        transform: translateX(4px);
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link:focus::after,
    .navbar-nav .nav-link.active::after {
        opacity: 1;
    }

    .navbar-nav .dropdown-menu {
        display: block;
        position: static !important;
        float: none;
        min-width: 100%;
        max-height: 0;
        padding: 0.35rem 0 0.55rem 0.75rem;
        margin: -0.1rem 0 0.35rem !important;
        border: 0;
        border-left: 2px solid rgba(250, 204, 21, 0.45);
        border-radius: 0 0 12px 12px;
        background: rgba(255, 255, 255, 0.04) !important;
        box-shadow: none;
        opacity: 0;
        overflow: hidden;
        transform: translateY(-6px);
        transition: max-height 0.32s ease, opacity 0.24s ease, transform 0.24s ease;
    }

    .navbar-nav .nav-item.submenu-open > .dropdown-menu {
        max-height: 420px;
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-nav .nav-item.submenu-open > .nav-link {
        border-color: rgba(250, 204, 21, 0.2);
        background: linear-gradient(90deg, rgba(220, 38, 38, 0.22), rgba(250, 204, 21, 0.08));
    }

    .navbar-nav .dropdown-item {
        padding: 0.72rem 0.85rem !important;
        border-radius: 10px;
        color: rgba(255, 255, 255, 0.88) !important;
        font-size: 0.88rem;
        font-weight: 700;
        letter-spacing: 0.04em;
    }

    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item:focus,
    .navbar-nav .dropdown-item.active {
        background: rgba(250, 204, 21, 0.13) !important;
        color: #ffffff !important;
        padding-left: 1rem !important;
    }

    @keyframes menuTogglePop {
        0% { transform: scale(1); }
        45% { transform: scale(0.9) rotate(-4deg); }
        100% { transform: scale(1) rotate(0); }
    }

    @keyframes menuToggleRing {
        0% {
            opacity: 0.72;
            transform: scale(0.78);
        }
        100% {
            opacity: 0;
            transform: scale(1.22);
        }
    }

    @keyframes mobileMenuReveal {
        0% {
            opacity: 0;
            transform: translateY(-18px) scale(0.98);
            filter: blur(8px);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }
    }

    @keyframes mobileMenuHide {
        0% {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }
        100% {
            opacity: 0;
            transform: translateY(-12px) scale(0.985);
            filter: blur(6px);
        }
    }

    @keyframes mobileMenuItemIn {
        0% {
            opacity: 0;
            transform: translateY(18px) scale(0.98);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .navbar-toggler[aria-expanded="true"],
        .navbar-toggler[aria-expanded="true"]::after,
        .navbar-collapse.show,
        .navbar-collapse.collapsing,
        .navbar-collapse.show .navbar-nav > .nav-item {
            animation: none !important;
        }

        .navbar-nav .dropdown-menu {
            transition: none;
        }
    }
}

@media (max-width: 575.98px) {
    .navbar-collapse {
        width: 100vw;
        height: 100vh;
        inset: 0;
        padding: 6rem 0.75rem 1.5rem;
        border-radius: 0;
    }

    .navbar-nav .nav-link {
        min-height: 48px;
        padding: 0.82rem 0.9rem !important;
        font-size: 0.9rem;
    }

    .navbar-toggler {
        width: 46px;
        height: 46px;
        border-radius: 13px;
    }
}

.elementor-widget-cms_single_image > .elementor-widget-container {
	display: flex;
	justify-content: flex-end;

}


@media (max-width: 767px) {

	.elementor-widget-cms_single_image > .elementor-widget-container {
		justify-content: center;
	}
}

@media (max-width: 767px) {
    .breadcrumb-bar .container {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        overflow: hidden;
        gap: 6px;
    }

    .breadcrumb-bar a,
    .breadcrumb-bar .sep,
    .breadcrumb-bar .dots {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    /* Category before current */
    .breadcrumb-bar span:not(.sep):not(.dots):not(.current) {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Current product title */
    .breadcrumb-bar .current {
        flex: 0 1 auto;
        min-width: 90px;
        max-width: 45%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 600;
        color: #ff6f00;
    }
}
