/* ===========================================
   Fatema Trade Center - Component Styles
   =========================================== */

/* ===========================================
   Header Components
   =========================================== */

/* Top Bar */
.topbar {
    background: #000000;
    color: #ffffff;
    font-size: 13px;
    border-bottom: 1px solid #333333;
    position: relative;
    z-index: 1000;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.topbar-left, 
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-question {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    font-style: normal;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-phone {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
}

.topbar-email {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
}

.topbar-phone i,
.topbar-email i {
    font-size: 12px;
    color: #ffffff;
}

.topbar-phone:hover,
.topbar-email:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

.topbar-phone:hover i,
.topbar-email:hover i {
    color: #f0f0f0;
}

/* Social Links - Complete Styles */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    transform: translateY(-2px);
    color: #ffffff;
    border-color: #ffffff;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-link.web:hover {
    background: #dc2626;
    border-color: #dc2626;
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-link.pinterest:hover {
    background: #bd081c;
    border-color: #bd081c;
}

.social-link i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Social Links for Contact Page */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links .social-link {
    width: 45px;
    height: 45px;
    background: rgba(183, 28, 28, 0.1);
    border: 2px solid #B71C1C;
    border-radius: 12px;
    color: #B71C1C;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
}

.social-links .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.4);
    color: #B71C1C;
    background: rgba(183, 28, 28, 0.2);
}

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

/* Site Header */
.site-header {
    background: #27304f;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.site-header .container {
    padding: 15px 0;
}

.site-header .row {
    margin: 0;
}

.site-header .col-3,
.site-header .col-9 {
    padding: 0;
}

/* Site Brand */
.site-brand {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.site-header.scrolled .site-logo {
    height: 50px;
}

/* Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Site Navigation */
.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.site-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.site-nav-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.site-nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
}

.site-nav-list a:hover,
.site-nav-list a.active {
    color: #fef2f2;
}

.site-nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fef2f2;
    transition: width 0.3s ease;
}

.site-nav-list a:hover::after,
.site-nav-list a.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease;
    width: 0;
    height: 0;
    flex-shrink: 0;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: #27304f;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    border: 1px solid #3a4a6b;
    pointer-events: none;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: transparent;
    line-height: 1.4;
    text-align: left;
    letter-spacing: 0.5px;
    text-transform: none;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    gap: 12px;
}

.dropdown-item i {
    font-size: 18px;
    color: #dc2626;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.dropdown-item:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

.dropdown-item:hover {
    background: #dc2626;
    color: #ffffff;
}

/* Dropdown Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.submenu-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.dropdown-submenu:hover .submenu-arrow {
    transform: rotate(90deg);
}

.dropdown-submenu-content {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background: #27304f;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1003;
    list-style: none;
    border: 1px solid #3a4a6b;
    pointer-events: none;
}

.dropdown-submenu:hover .dropdown-submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

/* Enhanced hover for dropdown items with submenus */
.dropdown-item.dropdown-toggle:hover + .dropdown-submenu-content,
.dropdown-submenu:hover .dropdown-submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.dropdown-submenu-content .dropdown-item {
    padding: 12px 20px;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: transparent;
    line-height: 1.4;
    text-align: left;
    letter-spacing: 0.5px;
    text-transform: none;
    cursor: pointer;
    position: relative;
    z-index: 1004;
    gap: 10px;
    display: flex;
    align-items: center;
}

.dropdown-submenu-content .dropdown-item i {
    font-size: 16px;
    color: #dc2626;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.dropdown-submenu-content .dropdown-item:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

.dropdown-submenu-content .dropdown-item:hover {
    background: #dc2626;
    color: #ffffff;
}

/* Nested Submenu Styles */
.dropdown-submenu-content .dropdown-submenu {
    position: relative;
}

.dropdown-submenu-content .dropdown-submenu-content {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 180px;
    background: #27304f;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1005;
    list-style: none;
    border: 1px solid #3a4a6b;
    pointer-events: none;
}

/* Ensure sub-submenu is hidden by default on desktop */
@media (min-width: 992px) {
    .dropdown-submenu-content .dropdown-submenu-content {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.dropdown-submenu-content .dropdown-submenu:hover .dropdown-submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

/* Additional specificity to ensure proper hover behavior */
.dropdown-submenu-content .dropdown-submenu .dropdown-item:hover + .dropdown-submenu-content,
.dropdown-submenu-content .dropdown-submenu:hover .dropdown-submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

/* Ensure sub-submenu is hidden when not hovering */
.dropdown-submenu-content .dropdown-submenu:not(:hover) .dropdown-submenu-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.dropdown-submenu-content .dropdown-submenu-content .dropdown-item {
    padding: 10px 16px;
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: transparent;
    line-height: 1.4;
    text-align: left;
    letter-spacing: 0.5px;
    text-transform: none;
    cursor: pointer;
    position: relative;
    z-index: 1006;
    gap: 8px;
    display: flex;
    align-items: center;
}

.dropdown-submenu-content .dropdown-submenu-content .dropdown-item i {
    font-size: 14px;
    color: #dc2626;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.dropdown-submenu-content .dropdown-submenu-content .dropdown-item:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

.dropdown-submenu-content .dropdown-submenu-content .dropdown-item:hover {
    background: #dc2626;
    color: #ffffff;
}

/* Dropdown Divider */
.dropdown-divider {
    height: 1px;
    margin: 8px 0;
    background-color: #3a4a6b;
    border: none;
}

/* Dropdown Mobile Responsive */
@media (max-width: 991.98px) {
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: rgba(39, 48, 79, 0.2);
        margin-top: 6px;
        border-radius: 6px;
        padding: 8px 0;
        min-width: auto;
    }
    
    .dropdown-item {
        color: #ffffff;
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 400;
        font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
        line-height: 1.4;
        text-align: left;
        letter-spacing: 0.5px;
        text-transform: none;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .dropdown-item i {
        font-size: 16px;
        color: #dc2626;
        width: 18px;
        text-align: center;
        flex-shrink: 0;
    }
    
    .dropdown-item:hover i {
        color: #ffffff;
        transform: scale(1.05);
    }
    
    .dropdown-item:hover {
        background: rgba(220, 38, 38, 0.3);
        color: #ffffff;
    }
    
    /* Mobile Submenu Styles */
    .dropdown-submenu-content {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: rgba(39, 48, 79, 0.3);
        margin-top: 6px;
        border-radius: 6px;
        padding: 6px 0;
        min-width: auto;
        pointer-events: auto;
    }
    
    .dropdown-submenu-content .dropdown-item {
        color: #ffffff;
        padding: 10px 20px;
        font-size: 13px;
        font-weight: 400;
        font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
        line-height: 1.4;
        text-align: left;
        letter-spacing: 0.5px;
        text-transform: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .dropdown-submenu-content .dropdown-item i {
        font-size: 14px;
        color: #dc2626;
        width: 16px;
        text-align: center;
        flex-shrink: 0;
    }
    
    .dropdown-submenu-content .dropdown-item:hover i {
        color: #ffffff;
        transform: scale(1.05);
    }
    
    .dropdown-submenu-content .dropdown-item:hover {
        background: rgba(220, 38, 38, 0.3);
        color: #ffffff;
    }
    
    .submenu-arrow {
        display: none;
    }
    
    /* Mobile Nested Submenu Styles */
    .dropdown-submenu-content .dropdown-submenu-content {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: rgba(39, 48, 79, 0.4);
        margin-top: 4px;
        border-radius: 4px;
        padding: 4px 0;
        min-width: auto;
        pointer-events: auto;
    }
    
    .dropdown-submenu-content .dropdown-submenu-content .dropdown-item {
        color: #ffffff;
        padding: 8px 16px;
        font-size: 12px;
        font-weight: 400;
        font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
        line-height: 1.4;
        text-align: left;
        letter-spacing: 0.5px;
        text-transform: none;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .dropdown-submenu-content .dropdown-submenu-content .dropdown-item i {
        font-size: 12px;
        color: #dc2626;
        width: 14px;
        text-align: center;
        flex-shrink: 0;
    }
    
    .dropdown-submenu-content .dropdown-submenu-content .dropdown-item:hover i {
        color: #ffffff;
        transform: scale(1.05);
    }
    
    .dropdown-submenu-content .dropdown-submenu-content .dropdown-item:hover {
        background: rgba(220, 38, 38, 0.3);
        color: #ffffff;
    }
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .nav-toggle {
        display: flex;
        margin-left: 266px;
    }
    
    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .site-nav.active {
        right: 0;
    }
    
    .site-nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .site-nav-list a {
        font-size: 18px;
        padding: 15px 0;
        display: block;
    }
    
    .site-nav-list a::after {
        display: none;
    }
}

/* Responsive Topbar */
@media (max-width: 768px) {
    .topbar .container {
        flex-direction: column;
        gap: 8px;
        padding: 10px 0;
    }
    
    .topbar-left, 
    .topbar-right {
        gap: 15px;
    }
    
    .topbar-question {
        font-size: 13px;
    }
    
    .topbar-contact {
        gap: 12px;
    }
    
    .topbar-phone,
    .topbar-email {
        font-size: 12px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
    }
    
    .social-link i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .topbar .container {
        flex-direction: column;
        gap: 6px;
        padding: 8px 0;
    }
    
    .topbar-left, 
    .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .topbar-question {
        font-size: 12px;
    }
    
    .topbar-contact {
        gap: 10px;
    }
    
    .topbar-phone,
    .topbar-email {
        font-size: 11px;
    }
    
    .topbar-phone i,
    .topbar-email i {
        font-size: 10px;
    }
    
    .social-link {
        width: 26px;
        height: 26px;
    }
    
    .social-link i {
        font-size: 13px;
    }
}

/* Responsive Site Header */
@media (max-width: 768px) {
    .site-header .container {
        padding: 10px 0;
    }
    
    .site-logo {
        height: 50px;
    }
    
    .site-header.scrolled .site-logo {
        height: 45px;
    }
}

@media (max-width: 576px) {
    .site-header .container {
        padding: 8px 0;
    }
    
    .site-logo {
        height: 45px;
    }
    
    .site-header.scrolled .site-logo {
        height: 40px;
    }
}

/* Navigation Components */
.navbar-brand {
    font-weight: 900;
    color: #000000 !important;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.navbar-brand:hover {
    color: #000000 !important;
}

.navbar-brand .logo {
    height: 50px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    font-weight: 900;
}

.main-navbar.scrolled .navbar-brand .logo {
    height: 40px;
}

/* Button Components - Complete */
.btn-primary {
    background-color: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #dc2626;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
}

.btn-primary:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    color: #ffffff;
}

.btn-outline-primary {
    color: #dc2626;
    border-color: #dc2626;
    background-color: transparent;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #dc2626;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
}

.btn-outline-primary:hover {
    background-color: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* Read More Button */
.read-more-btn {
    background: #dc2626;
    border: none;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
}

.read-more-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    color: #ffffff;
}

/* Featured Read More Button */
.featured-read-more {
    background: #dc2626;
    border: none;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
}

.featured-read-more:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    color: #ffffff;
}

/* News Read More Button */
.news-read-more {
    background: #dc2626;
    border: none;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
}

.news-read-more:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    color: #ffffff;
}

/* Client Loyalty Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23dc2626" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23dc2626" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23dc2626" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="%23dc2626" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="%23dc2626" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stat-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
    border-color: #dc2626;
}

.stat-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 0.9rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.stat-card:hover .stat-icon i {
    transform: scale(1.1);
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 4px;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    color: #b91c1c;
    transform: scale(1.05);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-label {
    color: #333;
}

/* Responsive Stats Section */
@media (max-width: 768px) {
    .stats-section {
        padding: 25px 0;
    }
    
    .stat-card {
        padding: 12px 10px;
        margin-bottom: 15px;
    }
    
    .stat-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 6px;
    }
    
    .stat-icon i {
        font-size: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
        margin-bottom: 3px;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 20px 0;
    }
    
    .stat-card {
        padding: 10px 8px;
    }
    
    .stat-icon {
        width: 25px;
        height: 25px;
        margin-bottom: 5px;
    }
    
    .stat-icon i {
        font-size: 0.7rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
}

/* News Details Page Styles */
.news-details-section {
    background: #f8f9fa;
    min-height: 80vh;
}

.news-article {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.article-header {
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.article-meta i {
    color: #dc2626;
    font-size: 16px;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
}

.article-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.article-content {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 30px;
}

.article-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 40px 0 20px 0;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
}

.article-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
    color: #555;
}

.article-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

.blockquote {
    background: #f8f9fa;
    border-left: 4px solid #dc2626;
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.blockquote-footer {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.article-tags {
    margin: 40px 0;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.article-tags h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.tag-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: #dc2626;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-share {
    margin: 40px 0;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.article-share h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: #ffffff;
}

.share-btn.twitter {
    background: #1da1f2;
    color: #ffffff;
}

.share-btn.linkedin {
    background: #0077b5;
    color: #ffffff;
}

.share-btn.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

/* News Sidebar */
.news-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.widget-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dc2626;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
}

/* Related Articles */
.related-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-article {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.related-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.related-content h4 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content h4 a:hover {
    color: #dc2626;
}

.related-meta {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Categories */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #dc2626;
}

.count {
    background: #dc2626;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

/* Recent Posts */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post {
    display: flex;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-content h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.recent-content h5 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-content h5 a:hover {
    color: #dc2626;
}

.recent-meta {
    font-size: 11px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
}

.newsletter-widget .widget-title {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.newsletter-form .btn {
    border: none;
    background: #ffffff;
    color: #dc2626;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive News Details */
@media (max-width: 768px) {
    .news-article {
        padding: 25px;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-meta {
        gap: 15px;
    }
    
    .article-image img {
        height: 250px;
    }
    
    .article-content h3 {
        font-size: 1.4rem;
    }
    
    .share-buttons {
        gap: 10px;
    }
    
    .share-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .related-article {
        flex-direction: column;
        gap: 10px;
    }
    
    .related-image {
        width: 100%;
        height: 150px;
    }
    
    .recent-post {
        flex-direction: column;
        gap: 8px;
    }
    
    .recent-image {
        width: 100%;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .news-article {
        padding: 20px;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-image img {
        height: 200px;
    }
    
    .tag-list {
        gap: 8px;
    }
    
    .tag {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
}


.btn-warning {
    background-color: #FFEB3B;
    border-color: #FFEB3B;
    color: #000000;
}

.btn-warning:hover {
    background-color: #FFC107;
    border-color: #FFC107;
    color: #000000;
}

.btn-success {
    background-color: #27ae60;
    border-color: #27ae60;
}

.btn-success:hover {
    background-color: #229954;
    border-color: #229954;
}

.btn-danger {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

.btn-danger:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}




/* Card Components */

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
    margin-bottom: 32px;
  }
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-card-body {
    padding: 20px;
}

.product-card h5 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.product-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.product-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background-color: #a93226;
    color: #fff;
}

/* Contact Components */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
    min-width: 30px;
}

.contact-item h5 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Map Component */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 10px;
}

/* Back to Top Component */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #dc2626;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

/* ===========================================
   News Page Components
   =========================================== */

/* Featured News Card */
.featured-news-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.featured-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-news-image {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-news-content {
    padding: 40px;
}

.featured-news-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-news-excerpt {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.news-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.news-tag {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #dc2626;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.featured-read-more:hover {
    background: #b91c1c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* News Cards */
/*  news fix  */

.news-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: auto;
    margin: 15px 0;
    padding: 15px;
}

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

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

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

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

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #dc2626;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #888;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: #dc2626;
}

.news-headline a {
  text-decoration: none !important;
  color: #1a1a1a;
}

.news-headline a:hover {
  color: #007bff;
  font-weight: 700;
  margin-bottom: 15px;
   line-height: 1.4;
}


.news-content a{
    text-decoration:none !important;

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.news-read-more {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    color: #ffffff;
    background: #dc2626;
    gap: 12px;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(220, 38, 38, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.newsletter-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.newsletter-header {
    margin-bottom: 30px;
}

.newsletter-header i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 20px;
}

.newsletter-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.newsletter-header p {
    color: #666;
    font-size: 1.1rem;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px 0 0 10px;
    padding: 15px 20px;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.newsletter-form .btn {
    border-radius: 0 10px 10px 0;
    padding: 15px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pagination */
.pagination {
    margin-top: 50px;
}

.pagination .page-link {
    color: #dc2626;
    border: 2px solid #e9ecef;
    margin: 0 5px;
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
}

.pagination .page-item.active .page-link {
    background-color: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
}

.pagination .page-item.disabled .page-link {
    color: #ccc;
    border-color: #e9ecef;
}

/* Responsive News Page */
@media (max-width: 768px) {
    .featured-news-content {
        padding: 25px;
    }
    
    .featured-news-title {
        font-size: 1.5rem;
    }
    
    .featured-news-excerpt {
        font-size: 1rem;
    }
    
    .newsletter-card {
        padding: 30px 20px;
    }
    
    .newsletter-header h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .featured-news-content {
        padding: 20px;
    }
    
    .featured-news-title {
        font-size: 1.3rem;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-headline {
        font-size: 1.1rem;
    }
    
    .newsletter-card {
        padding: 25px 15px;
    }
    
    .newsletter-header i {
        font-size: 2.5rem;
    }
    
    .newsletter-header h3 {
        font-size: 1.3rem;
    }
}

/* ===========================================
   Contact Page Components
   =========================================== */

/* Contact Info Cards */
.contact-info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.contact-info-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.contact-details p {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
}

.contact-details a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-form-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 5px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-input {
    margin: 0;
}

.form-check-label {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Contact Map Card */
.contact-map-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.map-header {
    text-align: center;
    margin-bottom: 25px;
}

.map-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.map-header p {
    color: #666;
    font-size: 1rem;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

/* Quick Contact Info */
.quick-contact-info {
    border-top: 1px solid #e9ecef;
    padding-top: 25px;
}

.quick-contact-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.quick-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.quick-contact-item i {
    font-size: 1.2rem;
    color: #dc2626;
    margin-top: 2px;
    flex-shrink: 0;
}

.quick-contact-item strong {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 5px;
}

.quick-contact-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    margin: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #999;
    font-weight: 600;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 25px;
    }
    
    .contact-form-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-map-card {
        padding: 25px;
    }
    
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 20px;
    }
    
    .contact-form-header h3 {
        font-size: 1.3rem;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-map-card {
        padding: 20px;
    }
    
}

/* Product Category Sections */
.product-category-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.category-header {
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.category-title i {
    font-size: 2.2rem;
    color: #dc2626;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-description {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.subcategory-section {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.subcategory-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.subcategory-title i {
    font-size: 1.5rem;
    color: #dc2626;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Highlight section when navigated to */
.product-category-section:target,
.subcategory-section:target {
    animation: highlightSection 2s ease-in-out;
}

@keyframes highlightSection {
    0% {
        background: rgba(220, 38, 38, 0.1);
        transform: scale(1);
    }
    50% {
        background: rgba(220, 38, 38, 0.2);
        transform: scale(1.02);
    }
    100% {
        background: rgba(248, 249, 250, 1);
        transform: scale(1);
    }
}

/* Responsive adjustments for category sections */
@media (max-width: 768px) {
    .category-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-title i {
        font-size: 1.8rem;
    }
    
    .category-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .subcategory-title {
        font-size: 1.5rem;
    }
    
    .subcategory-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .product-category-section {
        margin-bottom: 3rem;
        padding: 1.5rem 0;
    }
}

/* ===========================================
   Products Page Components
   =========================================== */

/* Products Content Section */
.products-content-section {
    background: #f8f9fa;
    min-height: 80vh;
}

/* Category Filter */
.category-filter {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: #ffffff;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Product Cards */
/*products fix*/

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
      margin-bottom:50px;
  }
}

/* Make sure the parent uses flexbox */
.row {
  display: flex;
  flex-wrap: wrap;
}


.product-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 0;
}

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

.product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image-main,
.product-image-hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.product-image-hover {
    opacity: 0;
    transform: scale(1.1);
}

.product-card:hover .product-image-main {
    opacity: 0;
}

.product-card:hover .product-image-hover {
    opacity: 1;
    transform: scale(1);
}

.product-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #dc2626;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 38, 38, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

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

.product-quote-btn {
    background: #ffffff;
    color: #dc2626;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-quote-btn:hover {
    background: #f0f0f0;
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: 'Roboto', 'Arial', 'Tahoma', sans-serif;
}

.card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-features {
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
}

.features-list i {
    color: #dc2626;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
}

.price-label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.price-value {
    font-weight: 700;
    color: #dc2626;
    font-size: 1rem;
}

.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-details-btn,
.product-contact-btn {
    flex: 1;
    min-width: 120px;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-details-btn {
    background: transparent;
    border: 2px solid #dc2626;
    color: #dc2626;
}

.product-details-btn:hover {
    background: #dc2626;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.product-contact-btn {
    background: #dc2626;
    border: 2px solid #dc2626;
    color: #ffffff;
}

.product-contact-btn:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* No Products Message */
.no-products-message {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.no-products-message i {
    font-size: 4rem;
    color: #dc2626;
    margin-bottom: 20px;
}

.no-products-message h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.no-products-message p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1 !important;
    min-width: 120px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.product-actions .read-more-btn {
    background: transparent;
    border: 2px solid #dc2626;
    color: #dc2626;
}

.product-actions .read-more-btn:hover {
    background: #dc2626;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.product-actions .contact-btn {
    background: transparent;
    border: 2px solid #6c757d;
    color: #6c757d;
}

.product-actions .contact-btn:hover {
    background: #6c757d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Products Pagination */
#products-pagination {
    margin-top: 50px;
}

#products-pagination .page-link {
    color: #dc2626;
    border: 2px solid #e9ecef;
    margin: 0 5px;
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#products-pagination .page-link:hover {
    background-color: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
}

#products-pagination .page-item.active .page-link {
    background-color: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
}

#products-pagination .page-item.disabled .page-link {
    color: #ccc;
    border-color: #e9ecef;
}

/* Responsive Products Page */
@media (max-width: 768px) {
    .category-filter {
        padding: 20px;
    }
    
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-details-btn,
    .product-contact-btn {
        width: 100%;
        min-width: auto;
    }
    
    .no-products-message {
        padding: 40px 15px;
    }
    
    .no-products-message i {
        font-size: 3rem;
    }
    
    .no-products-message h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .category-filter {
        padding: 15px;
    }
    
    .filter-buttons {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    .features-list li {
        font-size: 0.85rem;
    }
    
    .product-price {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .no-products-message {
        padding: 30px 10px;
    }
    
    .no-products-message i {
        font-size: 2.5rem;
    }
    
    .no-products-message h3 {
        font-size: 1.3rem;
    }
    
    .no-products-message p {
        font-size: 1rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .product-actions .btn {
        width: 100%;
        min-width: auto;
        padding: 10px 16px;
    }
}

/* ===========================================
   Product Details Page Components
   =========================================== */

/* Product Details Section */
.product-details-section {
    background: #ffffff;
    min-height: 80vh;
    padding: 60px 0;
}

/* Product Gallery */
.product-gallery {
    background: transparent;
    padding: 0;
}

.main-image-container {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.main-product-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image-container:hover .main-product-image {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-container:hover .image-overlay {
    opacity: 1;
}

.gallery-zoom-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #dc2626;
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-zoom-btn:hover {
    background: #dc2626;
    color: #ffffff;
    transform: scale(1.1);
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    margin-top: 20px;
}

.thumbnail-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail.active {
    border-color: #dc2626;
    transform: scale(1.05);
}

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

.thumbnail:hover img {
    transform: scale(1.1);
}

/* Product Info */
.product-info {
    background: transparent;
    padding: 0;
    padding-left: 40px;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.product-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.1;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.stars {
    display: flex;
    gap: 3px;
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-text {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.product-price-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.price-main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.price-label {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.price-value {
    font-weight: 800;
    color: #dc2626;
    font-size: 1.5rem;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
}

.price-note i {
    color: #dc2626;
}

.product-short-description {
    margin-bottom: 30px;
}

.product-short-description p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.product-features-section {
    margin-bottom: 35px;
}

.product-features-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
    font-size: 1.05rem;
    padding: 8px 0;
}

.features-list i {
    color: #dc2626;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.product-actions-section {
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.action-btn-primary,
.action-btn-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.action-btn-primary span,
.action-btn-secondary span {
    font-weight: 700;
    font-size: 1.1rem;
}

.action-btn-primary small,
.action-btn-secondary small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.product-stats {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-top: 2px solid #e9ecef;
    border-bottom: 2px solid #e9ecef;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #dc2626;
    font-size: 1rem;
    font-weight: 600;
}

.stat-item i {
    font-size: 1.5rem;
}

/* Product Gallery */
.product-gallery {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.1);
    position: relative;
    z-index: 2;
}

.main-image-container {
    position: relative;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-product-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image-container:hover .main-product-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-container:hover .image-overlay {
    opacity: 1;
}

.gallery-zoom-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #dc2626;
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-zoom-btn:hover {
    background: #dc2626;
    color: #ffffff;
    transform: scale(1.1);
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    margin-top: 15px;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: #dc2626;
}

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

.thumbnail:hover img {
    transform: scale(1.1);
}

/* Product Info */
.product-info {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.1);
    height: fit-content;
    position: relative;
    z-index: 2;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    color: #dc2626;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.product-price-section {
    background: rgba(220, 38, 38, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.price-value {
    font-weight: 700;
    color: #dc2626;
    font-size: 1.2rem;
}

.product-short-description {
    margin-bottom: 25px;
}

.product-short-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Product Features */
.product-features-section {
    margin-bottom: 25px;
}

.product-features-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    font-size: 1rem;
}

.features-list i {
    color: #dc2626;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Product Actions */
.product-actions-section {
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-actions-section .btn {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.product-actions-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Product Specifications */
.product-specifications h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.specs-table {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #333;
    flex: 1;
}

.spec-value {
    color: #666;
    font-weight: 500;
    text-align: right;
}

/* Product Specifications Section */
.product-specifications-section {
    background: #ffffff;
    position: relative;
}

.specifications-header {
    margin-bottom: 40px;
}

.specifications-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.specifications-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.specifications-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.1);
}

/* Product Specifications Section */
.product-specifications-section {
    background: #f8f9fa;
    position: relative;
}

.specifications-header {
    margin-bottom: 40px;
}

.specifications-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.specifications-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.specs-table {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Product Description Section */
.product-description-section {
    background: #ffffff;
}

.product-description-content {
    background: transparent;
    padding: 0;
}

.description-header {
    margin-bottom: 40px;
}

.description-header h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.description-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-btn.active,
.tab-btn:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.tab-content {
    margin-top: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.description-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.description-content p {
    margin-bottom: 20px;
}

.features-detailed {
    display: grid;
    gap: 25px;
}

.detailed-feature-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.detailed-feature-item h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detailed-feature-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.applications-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px;
}

.applications-list li,
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #555;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.applications-list li:hover,
.benefits-list li:hover {
    background: rgba(220, 38, 38, 0.05);
    transform: translateX(5px);
}

.applications-list i {
    color: #dc2626;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefits-list i {
    color: #ffc107;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Product Highlights */
.product-highlights {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.product-highlights h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(220, 38, 38, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.highlight-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.product-description-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.description-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Product Sidebar */
.product-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dc2626;
}

.product-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 0.95rem;
}

.info-item i {
    color: #dc2626;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Contact Widget */
.contact-widget {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
}

.contact-widget h4 {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.contact-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: #ffffff;
    font-size: 1.1rem;
}

.contact-widget .btn {
    background: #ffffff;
    color: #dc2626;
    border: none;
    font-weight: 600;
}

.contact-widget .btn:hover {
    background: #f0f0f0;
    color: #dc2626;
}

/* Related Products Section */
.related-products-section {
    background: #f8f9fa;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.related-product-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.related-product-image {
    height: 200px;
    overflow: hidden;
}

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

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

.related-product-content {
    padding: 20px;
}

.related-product-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.related-product-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.related-product-content .btn {
    width: 100%;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 6px;
}

/* Image Modal */
.modal-image-container {
    text-align: center;
    margin-bottom: 20px;
}

.modal-image {
    max-width: 100%;
    max-height: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-thumbnails {
    margin-top: 20px;
}

.modal-thumbnail-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.modal-thumbnail.active {
    border-color: #dc2626;
}

.modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Product Details */
@media (max-width: 768px) {
    .product-title {
        font-size: 2.2rem;
    }
    
    .product-info {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .main-product-image {
        height: 400px;
    }
    
    .specifications-header h2 {
        font-size: 2rem;
    }
    
    .specs-table {
        padding: 25px;
    }
    
    .product-actions-section {
        flex-direction: column;
    }
    
    .product-actions-section .btn {
        width: 100%;
        min-width: auto;
    }
    
    .description-header h3 {
        font-size: 1.8rem;
    }
    
    .description-tabs {
        justify-content: center;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .thumbnail-container {
        justify-content: center;
    }
    
    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .spec-value {
        text-align: left;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .product-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-description-content {
        padding: 20px;
    }
    
    .sidebar-widget {
        padding: 15px;
    }
    
    .main-product-image {
        height: 300px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
/* Enhanced Product Details Styles */

/* Product Stats */
.product-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 15px;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 10px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-item i {
    font-size: 1.2rem;
}

/* Image Badge */
.image-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #dc2626;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #ffc107;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

/* Enhanced Price Section */
.price-main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.price-note i {
    color: #dc2626;
}

/* Enhanced Action Buttons */
.action-btn-primary,
.action-btn-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.action-btn-primary span,
.action-btn-secondary span {
    font-weight: 700;
    font-size: 1rem;
}

.action-btn-primary small,
.action-btn-secondary small {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Description Tabs */
.description-header {
    margin-bottom: 30px;
}

.description-tabs {
    display: flex;
    gap: 5px;
    margin-top: 20px;
    background: #f8f9fa;
    padding: 5px;
    border-radius: 10px;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #666;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-btn.active {
    background: #dc2626;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.tab-content {
    margin-top: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Detailed Features */
.detailed-feature-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #dc2626;
}

.detailed-feature-item h5 {
    color: #dc2626;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detailed-feature-item p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Applications and Benefits Lists */
.applications-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.applications-list li,
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}

.applications-list li:last-child,
.benefits-list li:last-child {
    border-bottom: none;
}

.applications-list i {
    color: #28a745;
    font-size: 1.1rem;
}

.benefits-list i {
    color: #ffc107;
    font-size: 1.1rem;
}

/* Product Highlights */
.product-highlights {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(220, 38, 38, 0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: #dc2626;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h5 {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.highlight-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Enhanced Sidebar Widgets */
.delivery-widget {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
}

.delivery-widget h4 {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.delivery-item i {
    color: #ffffff;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.delivery-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.delivery-item strong {
    font-weight: 600;
    font-size: 0.9rem;
}

.delivery-item span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Enhanced Contact Widget */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: #ffffff;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-item strong {
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-item span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Enhanced Info Items */
.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.info-item i {
    color: #dc2626;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.info-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-item strong {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.info-item span {
    font-size: 0.85rem;
    color: #666;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .product-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .description-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .action-btn-primary,
    .action-btn-secondary {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .product-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .price-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .delivery-info,
    .contact-info {
        gap: 10px;
    }
}

/* ===========================================
   Product Details Page Styles
   =========================================== */

/* Product Details Page Specific Styles */
.product-details-page {
    background-color: #f4f6fb;
    font-family: 'Roboto', sans-serif;
    color: #1e2a4a;
}

.product-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d1b3d;
}

.main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.main-img:hover {
    transform: scale(1.02);
}

.thumb-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
}

.thumb-img:hover,
.thumb-img.active {
    border: 2px solid #0d6efd;
    transform: scale(1.05);
}

.spec-table th {
    background-color: #e9edf7;
    width: 45%;
    font-weight: 600;
    color: #0d1b3d;
}

.btn-custom {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-contact {
    background-color: #0d6efd;
    color: #fff;
}

.btn-contact:hover {
    background-color: #084298;
}

.btn-about {
    background-color: #27304f;
    color: #fff;
}

.btn-about:hover {
    background-color: #1a1f36;
}

.social-icons a {
    font-size: 1.4rem;
    margin: 0 10px;
    color: #27304f;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #0d6efd;
}

#lightbox {
    display: none;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

#lightbox:target {
    display: flex;
}

.breadcrumb-nav {
    background: #f8f9fa;
    padding: 15px 0;
    margin-bottom: 30px;
}

.breadcrumb-nav .breadcrumb {
    margin: 0;
    background: none;
}

.loading-message {
    text-align: center;
    padding: 50px 0;
}

.error-message {
    text-align: center;
    padding: 50px 0;
    color: #dc3545;
}

/* Product Details Responsive */
@media (max-width: 768px) {
    .product-title {
        font-size: 1.8rem;
    }
    
    .thumb-img {
        width: 70px;
        height: 70px;
    }
    
    .btn-custom {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}
