@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Poppins:wght@400;500;600&display=swap');

:root {
    --primary: #0062E6;
    --primary-dark: #0052cc;
    --orange: #0062E6;
    --orange-hover: #0052cc;
    --secondary: #0A1C42;
    --light: #ffffff;
    --dark: #0A1C42;
    --text-muted: #64748b;
    --border-radius: 12px;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif !important;
    background-color: #f8fafc;
    color: var(--dark);
}

h1, h2, h3, h4, h5, h6, 
.display-1, .display-2, .display-3, .display-4,
.brand-text, .section-title, .footer-heading {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

a:hover {
    color: var(--primary);
}

/* Top Announcement Bar */
.top-announcement-bar {
    background: #0f172a !important; /* deep slate black */
    font-size: 0.825rem;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header */
.shop-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(190%);
    -webkit-backdrop-filter: blur(12px) saturate(190%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Brand */
.brand-icon-wrapper {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 98, 230, 0.1);
    color: var(--orange);
    border-radius: 10px;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-icon-wrapper {
    transform: rotate(-15deg) scale(1.05);
    background: var(--orange);
    color: white;
}

.brand-text {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.text-orange {
    color: var(--orange) !important;
}

.border-orange {
    border-color: var(--orange) !important;
}

.bg-orange-soft {
    background: rgba(0, 98, 230, 0.1) !important;
}

/* Navigation Links */
.nav-link {
    font-weight: 550;
    font-size: 0.95rem;
    color: #475569 !important; /* slate color */
    padding: 0.5rem 1.2rem !important;
    border-radius: 8px;
    position: relative;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--orange) !important;
    background: rgba(0, 98, 230, 0.05);
}

.nav-link.active {
    color: var(--orange) !important;
    font-weight: 600;
}

.nav-link::after {
    display: none; /* remove old line indicator */
}

/* Actions */
.btn-icon-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #475569;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    font-size: 1.15rem;
}

.btn-icon-action:hover {
    background: rgba(0, 98, 230, 0.08);
    color: var(--orange);
    border-color: rgba(0, 98, 230, 0.2);
    transform: translateY(-2px);
}

/* Cart Badge */
.cart-badge-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--orange);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 98, 230, 0.4);
}

/* Login Button */
.btn-login-nav {
    background: #0f172a;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid #0f172a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-login-nav:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 98, 230, 0.2);
}

/* Profile Dropdown */
.btn-profile-dropdown {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    padding: 4px 14px 4px 4px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #334155;
    transition: all 0.25s ease;
}

.btn-profile-dropdown:hover, .btn-profile-dropdown:focus {
    background: rgba(0, 98, 230, 0.05);
    border-color: rgba(0, 98, 230, 0.15);
    color: var(--orange);
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.btn-profile-dropdown:hover .avatar-circle {
    background: var(--orange);
    color: white;
}

/* Custom Hamburger Icon */
.navbar-toggler-custom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    margin: 0 auto;
}

.navbar-toggler-custom .icon-bar {
    width: 100%;
    height: 2px;
    background-color: #0f172a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-custom .icon-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-custom .icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-custom .icon-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

/* Search Modal */
.modal-backdrop.show {
    opacity: 0.8;
    backdrop-filter: blur(5px);
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, 0.98);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(10, 28, 66, 0.9) 0%, rgba(10, 28, 66, 0.75) 100%), url('../images/hero-bg.png') no-repeat center center;
    background-size: cover;
    border-radius: 24px;
    overflow: hidden;
    color: white;
    margin-top: 30px;
    padding: 100px 60px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 98, 230, 0.08) !important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 98, 230, 0.15);
    border: 1px solid rgba(0, 98, 230, 0.25);
    color: #b3d4ff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-weight: 850;
    font-size: 3.6rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 550px;
}

.hero-btn {
    background: var(--orange);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--orange);
}

.hero-btn:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 98, 230, 0.3);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 24px;
        margin-top: 15px;
        border-radius: 16px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem !important;
    }
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    border: 1px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 98, 230, 0.06);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

/* Product Cards */
.product-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(15, 23, 42, 0.05);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 98, 230, 0.15);
}

.product-badge.bg-success {
    background: rgba(16, 185, 129, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
    color: #10b981 !important;
    box-shadow: none;
}

.product-img-wrapper {
    aspect-ratio: 1 / 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    padding: 1.5rem;
    overflow: hidden;
    position: relative;
}

.product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(10, 28, 66, 0.06);
    border-color: rgba(0, 98, 230, 0.15);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-details {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 98, 230, 0.05);
    color: var(--primary) !important;
    border: 1px solid rgba(0, 98, 230, 0.1) !important;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    margin-top: auto;
    width: 100%;
}

.add-btn:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
}

.btn-card-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: var(--primary);
    background: rgba(0, 98, 230, 0.05);
    border: 1px solid rgba(0, 98, 230, 0.1);
    transition: all 0.25s ease;
    padding: 0;
}

.btn-card-cart:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.btn-in-cart {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px !important;
    padding: 0 !important;
}

/* Product detail action buttons – modern black & orange */
.btn-product-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-product-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: transparent;
}

.btn-product-outline:disabled {
    border-color: #dee2e6;
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-product-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
}

.btn-product-primary:hover {
    background: var(--orange);
    color: #fff;
}

.btn-product-primary:disabled {
    background: var(--text-muted);
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Footer */
.shop-footer {
    background: #0b0f19;
    color: #e2e8f0;
    padding: 70px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .brand-text {
    color: #ffffff;
}

.footer-about-text {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-heading {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links-list {
    padding-left: 0;
    list-style: none;
}

.footer-link {
    color: #94a3b8;
    font-size: 0.925rem;
    display: inline-block;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
    color: var(--orange);
    transform: translateX(4px);
}

.social-circle-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-circle-btn:hover {
    background: var(--orange);
    color: #ffffff;
    border-color: var(--orange);
    transform: translateY(-3px) rotate(8deg);
}

/* Newsletter Input Form */
.newsletter-input-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 4px;
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: rgba(0, 98, 230, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 98, 230, 0.15);
}

.newsletter-input-group .form-control {
    background: transparent;
    border: none;
    color: #ffffff;
    padding-left: 16px;
    font-size: 0.9rem;
}

.newsletter-input-group .form-control:focus {
    background: transparent;
    box-shadow: none;
    color: #ffffff;
}

.newsletter-input-group .form-control::placeholder {
    color: #64748b;
}

.btn-orange-newsletter {
    background: var(--orange);
    color: #ffffff;
    border-radius: 50px !important;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.25s ease;
}

.btn-orange-newsletter:hover {
    background: var(--orange-hover);
    color: #ffffff;
    transform: scale(1.05);
}

.border-dark-slate {
    border-color: rgba(255, 255, 255, 0.06) !important;
}

/* Utils */
.section-title {
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

[dir="rtl"] .section-title::after {
    left: auto;
    right: 0;
}

.btn-add-to-cart {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-add-to-cart:hover {
    background: var(--primary-dark);
    color: white;
}

/* Empty state (e.g. maintenance no products) */
.empty-state-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.empty-state-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    background: rgba(0, 98, 230, 0.06);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.empty-state-title {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.15rem;
}

.empty-state-text {
    font-size: 0.95rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.btn-empty-state {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.1s;
}

.btn-empty-state:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-1px);
}

/* Contact & Location Section */
.contact-section-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 16px 45px rgba(10, 28, 66, 0.04);
}

.contact-input {
    border: 1px solid #edf0f4 !important;
    background: #f8f9fb !important;
    border-radius: 12px !important;
    padding: 12px 16px;
    font-size: 0.925rem;
    transition: all 0.25s ease;
}

.contact-input:focus {
    background: #ffffff !important;
    border-color: rgba(0, 98, 230, 0.4) !important;
    box-shadow: 0 0 0 3px rgba(0, 98, 230, 0.15) !important;
}

.work-hours-list {
    padding-left: 0;
    list-style: none;
}

.work-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.work-hours-item:last-child {
    border-bottom: 0;
}

.contact-info-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 98, 230, 0.06);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.store-map-iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 40px 20px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .search-bar {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .navbar-nav {
        padding: 1rem 0;
        gap: 1rem !important;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .product-card {
        border-radius: 16px !important;
        overflow: hidden;
    }

    .product-img-wrapper {
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        padding: 0.5rem !important; /* Minimal padding to make image larger */
        background: #f8fafc !important;
    }
    
    .product-img {
        max-height: 100% !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }

    .product-details {
        padding: 12px !important;
    }

    .product-title {
        font-size: 0.825rem !important;
        white-space: normal !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        height: 2.5em !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    .product-price {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }

    .product-details .d-flex.align-items-center.gap-2.w-100 {
        flex-direction: column !important;
        gap: 6px !important;
    }

    .add-btn {
        width: 100% !important;
        padding: 8px 10px !important;
        font-size: 0.75rem !important;
        border-radius: 8px !important;
        text-align: center;
        margin-top: 0 !important;
    }

    .btn-card-cart, .btn-in-cart {
        width: 100% !important;
        height: 34px !important;
        border-radius: 8px !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem !important;
    }
    
    .category-card {
        padding: 15px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    /* Related products mobile styling */
    .related-product-img-wrapper {
        height: 140px !important;
        padding: 0.5rem !important;
        background: #f8fafc !important;
    }
}

/* Training CTA Banner */
.training-banner {
    background: linear-gradient(135deg, rgba(10, 28, 66, 0.95) 0%, rgba(10, 28, 66, 0.6) 100%), url('../images/training-bg.png') no-repeat center center;
    background-size: cover;
    border-radius: 28px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    color: white;
}

.training-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 98, 230, 0.15);
    border: 1px solid rgba(0, 98, 230, 0.25);
    color: #b3d4ff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.training-banner h2 {
    font-weight: 850;
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.training-banner .text-highlight {
    color: var(--primary);
}

.training-banner p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.75);
}

.btn-training-cta {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 12px rgba(0, 98, 230, 0.2);
}

.btn-training-cta:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 98, 230, 0.35);
}

@media (max-width: 991.98px) {
    .training-banner {
        padding: 50px 30px;
        text-align: center;
    }
    
    .training-banner h2 {
        font-size: 2.2rem;
    }
}

/* About Section */
.about-section-wrapper {
    padding: 80px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.about-img-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(10, 28, 66, 0.08);
}

.about-img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-box:hover img {
    transform: scale(1.03);
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 575.98px) {
    .about-feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 98, 230, 0.06);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.about-feature-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--dark);
}

.about-feature-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

/* Alternating Modern Sections */
.alternating-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.alternating-section.bg-light-soft {
    background: #f8fafc;
}

.alternating-section-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

@media (max-width: 767.98px) {
    .alternating-section-title {
        font-size: 2rem;
    }
}

.alternating-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 98, 230, 0.06);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.alternating-section-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.alternating-img-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(10, 28, 66, 0.08);
}

.alternating-img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.alternating-img-box:hover img {
    transform: scale(1.03);
}

.alternating-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-alternating-primary {
    background: var(--primary);
    color: white !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
}

.btn-alternating-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 98, 230, 0.25);
}

.btn-alternating-outline {
    background: transparent;
    color: var(--dark) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--dark);
}

.btn-alternating-outline:hover {
    background: var(--dark);
    color: white !important;
    transform: translateY(-2px);
}

.tracking-form-box {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 24px;
}

/* Premium flat design overrides to remove AI-like drop shadows and standard glow aesthetics */
.shop-header,
.cart-badge-dot,
.btn-login-nav:hover,
.avatar-circle,
.hero-section,
.hero-btn:hover,
.category-card,
.category-card:hover,
.product-card,
.product-badge,
.product-card:hover,
.btn-product-outline:hover,
.btn-product-primary:hover,
.empty-state-card,
.contact-section-card,
.store-map-iframe,
.btn-training-cta:hover,
.about-img-box,
.alternating-img-box,
.btn-alternating-primary:hover,
.btn-alternating-outline:hover,
.tracking-form-box,
.home-quick-card,
.home-quick-card:hover,
.home-section-shell,
.tracking-card,
.home-feature-banner,
.home-feature-banner:hover {
    box-shadow: none !important;
}

/* Enforce flat, crisp card borders */
.product-card,
.category-card,
.home-quick-card,
.home-section-shell,
.empty-state-card,
.contact-section-card,
.tracking-form-box,
.about-img-box,
.alternating-img-box,
.about-section-wrapper {
    border: 1px solid #e2e8f0 !important;
    background: #ffffff;
}

.store-map-iframe {
    border: 1px solid #e2e8f0 !important;
}

/* Standardize hover micro-animations to feel human-designed and premium (2px translateY max) */
.product-card:hover,
.category-card:hover,
.home-quick-card:hover {
    transform: translateY(-2px) !important;
    border-color: var(--primary) !important;
}

.btn-login-nav:hover,
.hero-btn:hover,
.btn-training-cta:hover,
.btn-alternating-primary:hover,
.btn-alternating-outline:hover {
    transform: translateY(-2px) !important;
}

/* Standardized Spacing class for Homepage Sections */
.home-section-spacer {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
}

/* Fullscreen Mobile Menu Overlay */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    body.mobile-menu-active {
        overflow: hidden !important;
    }
    
    body.mobile-menu-active .shop-header {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: none !important;
    }

    body.mobile-menu-active .navbar-brand img {
        filter: brightness(0) invert(1) !important;
    }

    body.mobile-menu-active .navbar-toggler-custom .icon-bar {
        background-color: #ffffff !important;
    }

    .navbar-brand,
    .navbar-toggler {
        position: relative;
        z-index: 1010 !important;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #0A1C42 !important; /* Rich solid brand navy */
        z-index: 999;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 100px 40px 40px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s cubic-bezier(0.85, 0, 0.15, 1), visibility 0.4s cubic-bezier(0.85, 0, 0.15, 1);
    }
    
    .navbar-collapse.collapsing {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh !important;
        background: #0A1C42 !important;
        z-index: 999;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 100px 40px 40px;
        opacity: 0;
        transition: opacity 0.4s cubic-bezier(0.85, 0, 0.15, 1) !important;
    }
    
    .navbar-collapse.collapse.show {
        opacity: 1;
        visibility: visible;
        display: flex !important;
    }
    
    .navbar-collapse .navbar-nav {
        width: 100%;
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .navbar-collapse .nav-item {
        margin: 15px 0;
        opacity: 0;
    }
    
    .navbar-collapse.show .nav-item {
        animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    .navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.4s; }
    
    .navbar-collapse .nav-link {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 2rem !important;
        font-weight: 700 !important;
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 10px 24px !important;
        transition: all 0.25s ease;
        display: inline-block;
    }
    
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: #ffffff !important;
        background: transparent !important;
        transform: scale(1.05);
    }
    
    .navbar-collapse .navbar-actions {
        opacity: 0;
        justify-content: center;
        width: 100%;
        margin-top: 0 !important;
    }
    
    .navbar-collapse.show .navbar-actions {
        animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        animation-delay: 0.5s;
    }

    .navbar-collapse .btn-icon-action {
        color: rgba(255, 255, 255, 0.8) !important;
        border-color: rgba(255, 255, 255, 0.15) !important;
        background: rgba(255, 255, 255, 0.05);
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }

    .navbar-collapse .btn-icon-action:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
    }

    .navbar-collapse .cart-badge-dot {
        border-color: #0A1C42 !important;
    }

    .navbar-collapse .btn-profile-dropdown {
        background: rgba(255, 255, 255, 0.05) !important;
        border-color: rgba(255, 255, 255, 0.15) !important;
        color: #ffffff !important;
        padding: 6px 16px 6px 6px;
    }
    
    .navbar-collapse .avatar-circle {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
    }

    .navbar-collapse .btn-login-nav {
        background: #ffffff !important;
        color: #0A1C42 !important;
        border-color: #ffffff !important;
        padding: 10px 30px !important;
    }
    
    .navbar-collapse .btn-login-nav:hover {
        background: rgba(255, 255, 255, 0.9) !important;
        color: #0A1C42 !important;
    }
}

/* Animated Promo Badge */
@keyframes promoPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.promo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ef4444 !important;
    color: white !important;
    padding: 4px 12px !important;
    border-radius: 50px !important;
    font-size: 0.725rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
    animation: promoPulse 2s infinite ease-in-out;
}


