#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Add your site-wide styles here */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    height: 100%;
    position: relative;
}

body {
    margin: 0;
    padding-top: 76px; /* Account for fixed navigation height */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: calc(100vh - 76px); /* Ensure minimum height */
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 76px); /* Account for fixed navbar */
}

.main-content {
    flex-grow: 1; /* Grow to fill space */
    padding: 0 0 2rem 0; /* Remove top padding, keep bottom */
}

.manufacturer-section {
    /* Natural height based on content */
}

/* Footer styles */
/* ==========================================================================
   ENHANCED FOOTER STYLING
   ========================================================================== */

.footer {
    margin-top: auto; /* Push footer to bottom */
    flex-shrink: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%);
    color: white;
    padding: 50px 0 30px 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2980b9, #1f5582, #2980b9, #3498db);
    background-size: 300% 100%;
    animation: footerGradient 6s ease-in-out infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M10,10 L90,10 L90,90 L10,90 Z" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/><circle cx="20" cy="20" r="2" fill="rgba(52,152,219,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(52,152,219,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.footer h6 {
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.footer address {
    line-height: 1.8;
    color: #ecf0f1;
    font-style: normal;
    margin-bottom: 0;
}

.footer address small {
    font-size: 0.95rem;
    color: #bdc3c7;
    display: block;
    margin-bottom: 4px;
}

.footer .list-unstyled li {
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.footer .list-unstyled a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 5px 0;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.footer .list-unstyled a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    transition: width 0.3s ease;
}

.footer .list-unstyled a:hover {
    color: #3498db;
    transform: translateX(5px);
    text-decoration: none;
}

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

.footer small {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Memorial Section - Enhanced Styling */
.memorial-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(52, 152, 219, 0.3);
    position: relative;
}

.memorial-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
}

.memorial-text {
    text-align: center;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(135deg, #f39c12, #e67e22, #d35400);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    letter-spacing: 1px;
    position: relative;
    padding: 15px 0;
    animation: memorialGlow 4s ease-in-out infinite;
}

.memorial-text::before,
.memorial-text::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #f39c12;
    animation: sparkle 2s ease-in-out infinite;
}

.memorial-text::before {
    left: -40px;
}

.memorial-text::after {
    right: -40px;
    animation-delay: 1s;
}

/* Footer Animations */
@keyframes footerGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes memorialGlow {
    0%, 100% {
        text-shadow: 
            0 0 5px rgba(243, 156, 18, 0.3),
            0 0 10px rgba(243, 156, 18, 0.2),
            0 0 15px rgba(243, 156, 18, 0.1);
    }
    50% {
        text-shadow: 
            0 0 10px rgba(243, 156, 18, 0.5),
            0 0 20px rgba(243, 156, 18, 0.3),
            0 0 30px rgba(243, 156, 18, 0.2);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 25px 0;
    }
    
    .main-content {
        padding-bottom: 40px;
    }
    
    .footer h6 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer address small,
    .footer .list-unstyled a,
    .footer small {
        font-size: 0.9rem;
    }
    
    .memorial-text {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .memorial-text::before,
    .memorial-text::after {
        font-size: 1rem;
    }
    
    .memorial-text::before {
        left: -30px;
    }
    
    .memorial-text::after {
        right: -30px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 35px 0 20px 0;
    }
    
    .main-content {
        padding-bottom: 30px;
    }
    
    .footer .col-md-3 {
        margin-bottom: 25px;
    }
    
    .memorial-text {
        font-size: 1.1rem;
        padding: 12px 0;
    }
    
    .memorial-text::before,
    .memorial-text::after {
        display: none;
    }
}

/* Additional Footer Enhancements */
.footer .row > div {
    position: relative;
    z-index: 1;
}

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

/* Interactive Elements */
.footer address small:hover {
    color: #3498db;
    transition: color 0.2s ease;
}

.footer h6:hover {
    color: #5dade2;
    transition: color 0.2s ease;
}

/* Product categories spacing and uniformity */
.product-categories {
    width: 100%;
    margin-bottom: 3rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-card {
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.category-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.category-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.category-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.category-button:hover {
    background: linear-gradient(135deg, #2980b9, #1f5582);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Consistent page spacing */
.page-content {
    min-height: calc(100vh - 76px - 200px);
    padding-top: 2rem;
    margin-bottom: 3rem;
}

/* Container spacing and consistency */
.container, 
.container-fluid {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

/* Section spacing consistency */
.section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-configurator {
    margin-top: 20px;
}

.specs-card {
    margin-top: 20px;
}

:root {
    --primary-color: #003366;
    --secondary-color: #0066cc;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --accent-color: #0066cc;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand img {
    max-height: 40px;
}

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

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

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

.product-card {
    height: 100%;
    border-radius: 8px;
}

.product-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* ==========================================================================
   ENHANCED SEARCH & CART STYLING
   ========================================================================== */

/* Modern Search Bar */
.quick-search {
    width: 400px;
    position: relative;
    margin-right: 1.5rem;
}

.quick-search .input-group {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-search .input-group:hover {
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.2);
}

.quick-search .input-group:focus-within {
    box-shadow: 0 6px 25px rgba(52, 152, 219, 0.25);
    border-color: #3498db;
    transform: translateY(-1px);
}

.quick-search .form-control {
    border: none;
    background: transparent;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 500;
    border-radius: 25px 0 0 25px;
}

.quick-search .form-control::placeholder {
    color: #95a5a6;
    font-weight: 400;
    transition: all 0.3s ease;
}

.quick-search .form-control:focus {
    box-shadow: none;
    outline: none;
    background: rgba(255, 255, 255, 1);
}

.quick-search .form-control:focus::placeholder {
    color: #bdc3c7;
    transform: translateX(5px);
}

.quick-search .input-group-text {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 0.875rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-search .input-group-text:hover {
    background: linear-gradient(135deg, #2980b9, #1f5582);
    transform: translateX(2px);
}

.quick-search .input-group-text i {
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.quick-search .input-group-text:hover i {
    transform: scale(1.1) rotate(15deg);
}

/* Navigation Improvements */
.navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar .nav-link {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.navbar .nav-link:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

/* Cart Badge */
.badge {
    transition: all 0.2s;
}

.badge:empty {
    display: none;
}

/* Enhanced Search Results */
.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: none;
    border-radius: 16px;
    margin-top: 0;
    max-height: 450px;
    overflow-y: auto;
    z-index: 1050;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 152, 219, 0.1);
    padding: 0.5rem 0;
}

.search-results::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

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

.search-result-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, #3498db, #2980b9);
    transition: width 0.3s ease;
}

.search-result-item:hover {
    background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
    color: #2c3e50;
    text-decoration: none;
    transform: translateX(5px);
}

.search-result-item:hover::before {
    width: 4px;
}

.search-result-icon {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.search-result-icon i {
    font-size: 1.2rem;
    color: #3498db;
    transition: all 0.3s ease;
}

.search-result-item:hover .search-result-icon i {
    transform: scale(1.1);
    color: #2980b9;
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    line-height: 1.3;
}

.search-result-category {
    font-size: 0.8rem;
    color: #3498db;
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-result-description {
    color: #7f8c8d;
    font-size: 0.85rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.search-result-empty {
    padding: 2rem;
    text-align: center;
}

.search-result-empty i {
    font-size: 2rem;
    color: #adb5bd;
    display: block;
    margin-bottom: 0.5rem;
}

mark {
    background-color: rgba(255, 193, 7, 0.3);
    padding: 0.1em 0.2em;
    border-radius: 2px;
    color: inherit;
}

/* Professional Cart Button */
.cart-button {
    background: linear-gradient(135deg, #0066cc, #0099ff) !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    color: white !important;
    text-decoration: none !important;
    margin-right: 1rem !important;
}

.cart-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cart-button:hover {
    background: linear-gradient(135deg, #003366, #0066cc) !important;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4) !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
}

.cart-button:hover::before {
    left: 100%;
}

.cart-button:active {
    transform: translateY(0) !important;
}

.cart-button i {
    font-size: 1.1rem !important;
    margin-right: 0.5rem !important;
    transition: all 0.3s ease !important;
}

.cart-button:hover i {
    transform: scale(1.1) !important;
}

/* Enhanced Cart Badge */
.cart-badge {
    position: absolute !important;
    top: -10px !important;
    right: -10px !important;
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 0.3rem 0.6rem !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    min-width: 22px !important;
    height: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4) !important;
    animation: cartPulse 2s ease-in-out infinite !important;
    border: 2px solid white !important;
    z-index: 10 !important;
}

@keyframes cartPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Custom scrollbar for search results */
.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f2f6;
}

.search-results::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2980b9, #1f5582);
}

/* Scrollbar Styling */
.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

/* Industry Pages */
.industry-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    margin: -3rem -3rem 2rem -3rem;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-image:hover img {
    transform: scale(1.05);
}

.industry-content {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.industry-description {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #4a5568;
}

.industry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.industry-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin-top: 0.5rem;
}

.industry-sidebar {
    position: sticky;
    top: 100px;
}

.related-products {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.related-products h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.related-products ul li {
    margin-bottom: 0.75rem;
}

.related-products a {
    color: var(--secondary-color);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 4px;
}

.related-products a:hover {
    background: var(--light-gray);
    transform: translateX(5px);
}

.related-products i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* Smooth transitions */
.btn, .form-control, .card {
    transition: all 0.2s ease-in-out;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.15);
    border-color: #80bdff;
}

/* Improved card styling */
.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Form improvements */
.form-floating > label {
    color: #6c757d;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #0d6efd;
}

main {
    flex: 1 0 auto;
    min-height: calc(100vh - 76px);
}

/* Update nav links for light background */
.navbar-light .nav-link {
    color: #333333 !important;
    font-weight: 500;
}

.navbar-light .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Category boxes styling */
.product-category-box {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    position: relative;
    z-index: 1;
}

.product-category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Style the product description */
.product-description {
    font-family: 'Inter', sans-serif;
    padding: 1.5rem 0;
    background: #fff;
    margin-bottom: 2rem;
}

.description-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
}

.description-columns::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e9ecef;
    transform: translateX(-50%);
}

.description-column {
    flex: 1;
    min-width: 300px;
    padding: 0 1.5rem;
}

.description-section-title {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #003366;
    display: flex;
    align-items: center;
}

.description-section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1em;
    background: #003366;
    margin-right: 0.75rem;
    border-radius: 2px;
}

.description-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.description-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #4a5568;
    transition: color 0.2s ease;
}

.description-item:hover {
    color: #2c3e50;
}

.description-item::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #003366;
}

.description-subitem {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.5rem;
    color: #718096;
    transition: color 0.2s ease;
}

.description-subitem:hover {
    color: #4a5568;
}

.description-subitem::before {
    content: "-";
    position: absolute;
    left: 1.5rem;
    color: #718096;
}

.specs-table {
    width: 100%;
    margin-top: 1rem;
    border-collapse: separate;
    border-spacing: 0;
}

.specs-table td {
    padding: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.specs-table td:first-child {
    font-weight: 500;
    color: #2c3e50;
    width: 40%;
}

.bullet {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

.dash {
    color: #718096;
    margin-right: 0.5rem;
}

/* Form Select Styling */
.form-select {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

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

.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Product Configuration Section */
.product-config {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.product-config .row {
    margin: 0 -0.75rem;
}

.product-config .col-md-6 {
    padding: 0 0.75rem;
}

/* Add to Cart Button */
.btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive styles for Category page */
@media (max-width: 768px) {
    .category-header {
        margin-top: -1rem;
        padding: 1.5rem 0;
    }

    .category-title {
        font-size: 2rem;
    }

    .category-description {
        font-size: 1rem;
    }

    .product-group {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1rem;
        min-height: 2rem;
    }

    .card-body {
        padding: 1rem;
    }

    .btn-primary {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Product Categories Section */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.category-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: left center;
    transition: transform 0.3s ease;
}

/* Specific adjustments for certain category images */
[data-category="AutomotiveWire"] .category-image img,
[data-category="IndustrialAutomation&ControlCable"] .category-image img,
[data-category="Shipboard and Marine Cable"] .category-image img,
[data-category="Transit&LocomotiveCable"] .category-image img {
    object-position: 30% center;  /* Move these specific images slightly to the right */
}

.category-image img:not([src]), 
.category-image img[src=""], 
.category-image img[src="error"], 
.category-image img[onerror] {
    position: relative;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border: 1px dashed #dee2e6;
}

.category-image img:not([src])::before, 
.category-image img[src=""]::before, 
.category-image img[src="error"]::before, 
.category-image img[onerror]::before {
    content: "Image Not Available";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.9rem;
    color: #6c757d;
    white-space: nowrap;
    z-index: 1;
}

/* Remove shimmer animation from category images */
.category-image img::after {
    display: none;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.category-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.btn-explore {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .category-image {
        height: 160px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .category-text {
        min-height: auto;
        margin-bottom: 1rem;
    }
    
    .btn-explore {
        padding: 0.6rem 1.2rem;
    }
}

/* Enhanced Manufacturer Section */
.manufacturer-section {
    background: linear-gradient(to right, #f8f9fa, #ffffff, #f8f9fa);
    padding: 0.75rem 0;
    position: relative;
    margin-top: 0;
    border-top: none;
}

.manufacturer-section h3 {
    color: #2c3e50;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.manufacturer-section h3:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #3498db;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.manufacturer-carousel {
    position: relative;
    padding-bottom: 4rem;
}

.manufacturer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.manufacturer-logo {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
    padding: 10px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.manufacturer-name {
    display: none;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
}

.has-label .manufacturer-name {
    display: block;
}

.manufacturer-logo.placeholder {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
    border: 1px dashed #dee2e6;
}

.manufacturer-logo.placeholder::before {
    content: attr(alt);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    color: #6c757d;
    white-space: nowrap;
    z-index: 1;
}

.manufacturer-logo.placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.swiper {
    padding: 20px 40px;
    margin: 0;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 2rem; /* Added padding above pagination */
    margin-top: 1.5rem; /* Added margin above pagination */
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e0;
    opacity: 0.5;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #3498db;
    width: 24px;
    border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #3498db;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .manufacturer-section {
        padding: 0.5rem 0;
    }
    
    .manufacturer-section h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .manufacturer-logo {
        max-width: 140px;
        max-height: 60px;
    }
    
    .swiper-pagination {
        padding-top: 1.5rem; /* Adjusted padding for mobile */
        margin-top: 1rem; /* Adjusted margin for mobile */
    }
}

/* ==========================================================================
   NAVIGATION ENHANCEMENTS
   ========================================================================== */

/* Navigation Specific Styles */
.navbar.fixed-top {
    z-index: 1030; /* Ensure nav stays above other content */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100%;
}

.main-content {
    flex: 1;
    position: relative;
    z-index: 1;
    padding-bottom: 60px; /* Add spacing before footer */
}

/* Quick Search Styling */
.quick-search {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1050;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Navbar Brand Enhancement */
.navbar-brand img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Navigation Link Enhancements */
.nav-link {
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    color: #495057 !important;
}

.nav-link:hover {
    color: #3498db !important;
    transform: translateY(-1px);
}

.nav-link i {
    transition: all 0.2s ease;
}

.nav-link:hover i {
    color: #3498db;
    transform: scale(1.1);
}

/* Dropdown Menu Enhancements */
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.25rem;
}

.dropdown-item {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left-color: #3498db;
    color: #3498db;
    transform: translateX(3px);
}

/* Enhanced Responsive Design */
@media (max-width: 991px) {
    body {
        padding-top: 70px; /* Smaller padding for mobile */
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem 0;
        border-top: 1px solid rgba(52, 152, 219, 0.2);
        background: rgba(248, 249, 250, 0.95);
        border-radius: 12px;
        margin: 1rem -1rem 0 -1rem;
        padding: 1rem;
        backdrop-filter: blur(5px);
    }
    
    .quick-search {
        margin: 1rem 0;
        width: 100%;
        margin-right: 0;
    }
    
    .quick-search .input-group {
        border-radius: 20px;
    }
    
    .quick-search .form-control,
    .quick-search .input-group-text {
        padding: 0.75rem 1rem;
    }
    
    .d-flex.align-items-center {
        flex-direction: column;
        align-items: stretch !important;
        gap: 1rem;
    }
    
    .cart-button {
        width: 100% !important;
        justify-content: center !important;
        margin-top: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 65px; /* Even smaller for very small screens */
    }
    
    .quick-search {
        width: 100%;
    }
    
    .search-results {
        left: -1rem;
        right: -1rem;
        border-radius: 12px;
    }
    
    .cart-button {
        border-radius: 20px !important;
        padding: 0.875rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
    
    .navbar-collapse {
        margin: 1rem -1.5rem 0 -1.5rem;
        padding: 1.25rem;
    }
}

.footer {
