/* Global Styles */

:root {
    --primary-color: #ffc107;
    /* Deep Charcoal (tyre/rubber inspired) */
    --secondary-color: #111111;
    /* Bright Orange (highlight and CTA) */
    --dark-color: #111111;
    /* Almost black - for nav, footer */
    --light-color: #f2f2f2;
    /*
Light gray - for backgrounds */
    --success-color: #4caf50;
    /* Green - success messages */
    --warning-color: #ffc107;
    /* Amber - warnings */
    --danger-color: #d32f2f;
    /* Bold red - errors */
    --info-color: #0288d1;
    /* Strong blue - info banners */
    --body-bg: #eaeaea;
    /* Slightly off-white page bg */
    --box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 0.5rem;
}

l body {
    font-family: "Poppins", sans-serif !important;
    line-height: 1.6;
    color: #333;
    background-color: var(--body-bg);
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #2a2a2a;
    text-decoration: none;
}


/* Utilities */

.section-title {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0.5rem auto 0;
}


/* Header & Navbar */

.navbar-brand .logo {
    max-height: 60px;
}

.navbar {
    box-shadow: var(--box-shadow);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

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

.navbar-light .navbar-toggler {
    border-color: transparent;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.main-menu {
    font-weight: 500;
}

.main-menu .nav-link {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    transition: var(--transition);
}

.main-menu .nav-link:hover {
    background-color: white;
    color: var(--primary-color) !important;
}

.below-nav {
    background-color: var(--primary-color);
}

.active-menu {
    background-color: white !important;
    color: var(--primary-color) !important;
    font-weight: bold;
    border-radius: 6px;
    padding: 6px 12px;
}


/* Hero Section */

.hero-section {
    position: relative;
    color: white;
    min-height: 700px;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section .carousel-inner {
    height: 100%;
}

.hero-section .carousel-inner img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.hero-content h1,
.hero-content p {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}


/* Custom carousel transitions - Right to Left slide */

.carousel-item {
    transition: transform 0.8s ease-in-out;
}


/* Remove the fade classes and use default slide */

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Tyre Filter Section */

.tyre-filter-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.filter-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
}

.nav-link {
    color: rgb(255, 255, 255);
}

.vehicle-type-tabs {
    border-bottom: none;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vehicle-type-tabs .nav-link {
    border: 1px solid #dee2e6;
    margin: 0 8px;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    color: #111111;
}

.vehicle-type-tabs .nav-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #111111;
    font-weight: 600;
}

.vehicle-type-tabs .nav-link:hover:not(.active) {
    background-color: var(--primary-color);
    color: #111111;
}

.vehicle-type-tabs img {
    margin-bottom: 0.5rem;
}

.form-select,
.form-control {
    border: 1px solid #ced4da;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-select:focus,
.form-control:focus {
    border-color: #f48a95;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}


/* Featured Brands Section */

.brand-card {
    height: 100%;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.brand-name {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0;
}


/* Popular Tyres Section */

.product-card {
    height: 100%;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 600;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ratings {
    font-size: 0.875rem;
}

.price-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.original-price {
    font-size: 0.875rem;
    color: var(--secondary-color);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.discount-percentage {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--success-color);
}


/* Features Section */

.feature-card {
    height: 100%;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

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

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--secondary-color);
    margin-bottom: 0;
}


/* Newsletter Section */

.newsletter-section {
    background-color: var(--dark-color);
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.newsletter-form .form-control {
    height: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-form .btn {
    height: 50px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-weight: 600;
}


/* Footer Section */

.footer-section {
    background-color: #212529;
    /* Slightly darker than bg-dark */
}

.footer-title {
    position: relative;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
}

.footer-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: white;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 0.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

address p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}


/* Buttons Styling */

.btn {
    font-weight: 500;
    padding: 0.375rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

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

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

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


/* Custom
Scrollbar */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}


/* Media Queries */

@media (max-width: 767.98px) {
    .carousel-item {
        height: 350px;
    }
    .carousel-caption {
        padding: 0 10%;
    }
    .carousel-caption h1 {
        font-size: 1.75rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
    .tyre-filter-section {
        margin-top: -30px;
    }
    .filter-card {
        padding: 1rem;
    }
    .vehicle-type-tabs .nav-link {
        padding: 0.5rem 1rem;
        margin: 0 5px;
        font-size: 0.875rem;
    }
    .footer-section [class^="col-"] {
        text-align: center;
    }
    .footer-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
        display: flex;
    }
}

@media (max-width: 575.98px) {
    .carousel-item {
        height: 300px;
    }
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .navbar-brand .logo {
        max-height: 40px;
    }
    .vehicle-type-tabs .nav-link {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    .vehicle-type-tabs img {
        max-width: 40px;
    }
    .product-title {
        font-size: 0.875rem;
    }
}


/* Additional Animations */

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

.feature-card,
.product-card,
.brand-card {
    animation: fadeInUp 0.5s ease forwards;
}

.feature-card:nth-child(1),
.product-card:nth-child(1),
.brand-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2),
.product-card:nth-child(2),
.brand-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3),
.product-card:nth-child(3),
.brand-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4),
.product-card:nth-child(4),
.brand-card:nth-child(4) {
    animation-delay: 0.4s;
}


/* Preloader */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Back to Top Button */

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

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

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


/* Responsive Typography */

html {
    font-size: 16px;
}

@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 14px;
    }
}


/* Custom Styles for Product Hover Effect */

.product-card .btn {
    transition: var(--transition);
}

.product-card .product-actions {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

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


/* Search Dropdown */

.search-dropdown {
    position: relative;
}

.search-input {
    padding-right: 40px;
}

.search-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: none;
    border: none;
    color: var(--secondary-color);
}

.search-btn:hover {
    color: var(--primary-color);
}


/* Sticky Header */

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.sticky-header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


/* Mobile menu styling */

.mobile-menu-toggle {
    display: flex;
    justify-content: flex-start;
    padding: 10px 0;
}


/* Custom styling for the offcanvas menu to match your image */

.offcanvas {
    max-width: 280px;
}


/* Hide the main-menu on mobile and show only on larger screens (lg and up) */

@media (max-width: 991.98px) {
    .main-menu {
        display: none !important;
    }
}

.filter-card.compact {
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
}

.small-tabs .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
}

.filter-card.compact .form-select,
.filter-card.compact .form-control,
.filter-card.compact .btn {
    font-size: 0.9rem;
}

.hero-content {
    padding-right: 2rem;
}

@media (max-width: 991px) {
    .hero-content {
        margin-bottom: 2rem;
        text-align: center;
        padding-right: 0;
    }
}


/* =======
Brands ======= */

.brand-item {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: #fff;
    transition: var(--transition);
    margin-bottom: 20px;
    /* Added for mobile spacing */
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.brand-item img {
    max-width: 100%;
    max-height: 200px;
    /* Added to control logo size */
    object-fit: contain;
    /* Maintain aspect ratio */
}


/* ======= Why Choose Us ======= */

.why-choose-img {
    position: relative;
    margin-bottom: 40px;
    /* Added for mobile spacing */
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--radius-sm);
    padding: 15px 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-badge .number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 500;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.why-choose-icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: #ffc10729;
    color: var(--primary-color);
    font-size: 18px;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.why-choose-text h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.why-choose-text p {
    font-size: 14px;
    margin-bottom: 0;
}


/* ======= Testimonials ======= */

.testimonial-card {
    background-color: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 25px;
    /* Reduced from 30px */
    margin-bottom: 30px;
    /* Increased from 20px */
    transition: var(--transition);
    height: 100%;
    /* Added for equal height cards */
    display: flex;
    flex-direction: column;
}

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

.testimonial-rating {
    color: rgb(255, 174, 0);
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    flex: 1 0 auto;
    /* Added for flex layout */
}

.testimonial-text p {
    position: relative;
    padding-left: 20px;
}

.testimonial-text p:before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    line-height: 1;
    color: var(--primary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 13px;
    color: #6c757d;
}

.slider-controls {
    display: inline-flex;
    gap: 10px;
    margin-top: 20px;
    /* Added for mobile spacing */
}

.slider-controls .btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    border-radius: 50%;
    background-color: #fff;
    color: var(--dark-color);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.slider-controls .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}


/* Search Box */

.search-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.search-box {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 500px;
}

.custom-search input:focus {
    outline: none;
    box-shadow: none;
}


/* MODAL */

.modal-header {
    background-color: #000 !important;
}

.modal-body {
    background-color: #fff !important;
    padding: 1.5rem !important;
}


/* Responsive */

@media (max-width: 768px) {
    .search-box {
        width: 90%;
        right: 5%;
    }
}


/* CART
*/

.quick-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    height: 100%;
    background: #fff;
    color: #111111;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    transition: transform 0.3s ease-in-out;
}

.quick-cart.d-none {
    transform: translateX(100%);
}

.quick-cart.show {
    transform: translateX(0%);
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

@media (max-width: 480px) {
    .quick-cart {
        width: 100%;
    }
}

button.btn.btn-view-all.btn-lg {
    background: #ffc107;
    color: #1a1a1a;
}


/* SOCIAL
MEDIA FEED FOOTER */

.social-feed-section {
    background-color: #f8f9fa;
}

.social-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

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

.social-media-img {
    height: 100px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.social-icon {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

.section-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tweet p,
.facebook-post p {
    font-size: 0.9rem;
    padding: 13px;
}

.card-footer a {
    transition: all 0.3s ease;
}

.card-footer a:hover {
    transform: scale(1.05);
}


/* TRUSTED STORIES */

.trusted-tales-header {
    text-align: center;
    margin-bottom: 30px;
}

.trusted-tales-header h2 {
    font-size: 28px;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.trusted-tales-header p {
    font-size: 16px;
    color: #5d6d7e;
    max-width: 700px;
    margin: 0 auto;
}

.hashtag {
    color: #b07c4f;
    font-weight: 600;
}


/* Products
Slider */

.products-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    gap: 20px;
    padding: 10px 0;
    justify-content: center;
}

.slider-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}


/* Product Card */

.product-card {
    flex: 0 0 280px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-video {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fallback-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card:hover .product-media {
    transform: scale(1.05);
}


/* Controls */

.interaction-controls {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.like-btn,
.share-btn {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.like-btn:hover,
.share-btn:hover {
    background-color: rgba(255, 255, 255, 1);
}


/* Product Info */

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 42px;
}

.product-description {
    font-size: 12px;
    color: #7f8c8d;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 36px;
}

.product-price {
    font-size: 14px;
    font-weight: 600;
    color: #ffc107;
    margin-bottom: 15px;
}

.add-to-bag {
    display: block;
    width: 100%;
    padding: 8px 0;
    background-color: transparent;
    color: #ffc107;
    border: 1px solid #ffc107;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-bag:hover {
    background-color: #ffc107;
    color: white;
}


/* Video Controls */

.play-pause-btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-video:hover .play-pause-btn {
    opacity: 1;
}


/* Navigation Arrows */

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: background-color 0.3s ease;
}

.nav-arrow:hover {
    background-color: white;
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}


/* Responsive */

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 220px;
    }
    .product-video {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .product-card {
        flex: 0 0 180px;
    }
    .product-video {
        height: 200px;
    }
    .trusted-tales-header h2 {
        font-size: 24px;
    }
}


/* Enhanced Addon Strip Styles */

.addon-strip {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-top: 2px solid #dee2e6;
  border-bottom: 2px solid #dee2e6; */
    padding: 40px 0;
}

.addon-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.addon-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffc107;
    border-radius: 2px;
}

.addon-item {
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.addon-item:hover {
    transform: translateY(-8px);
    background: white;
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.15);
    border-color: #ffc107;
}

.addon-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid #e9ecef;
}

.addon-item:hover .addon-icon {
    background: linear-gradient(135deg, #ffc107 0%, #c82333 100%);
    color: white;
    border-color: #ffc107;
    transform: scale(1.1);
}

.addon-icon i {
    font-size: 28px;
    color: #ffc107;
    transition: color 0.3s ease;
}

.addon-item:hover .addon-icon i {
    color: white;
}

.addon-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.addon-item:hover .addon-label {
    color: #ffc107;
}

.addon-price {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}


/* Admin Controls */


/* .admin-controls {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1050;
            background: rgba(0,0,0,0.9);
            padding: 20px;
            border-radius: 12px;
            color: white;
            min-width: 250px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        } */


/* Responsive Design */

@media (max-width: 768px) {
    .addon-strip,
    .category-strip {
        padding: 30px 0;
    }
    .addon-item {
        margin-bottom: 20px;
    }
    .category-badge {
        font-size: 14px !important;
        padding: 10px 20px !important;
    }
}


/* ======= Categories ======= */

.category-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.category-img {
    position: relative;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: #fff;
    text-align: center;
}

.category-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    margin: 0 auto 15px;
}

.category-content h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.category-content p {
    font-size: 14px;
    margin-bottom: 20px;
}

.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .overlay-content h1 {
        font-size: 2rem;
    }
    .overlay-content p {
        font-size: 1rem;
    }
    .video-controls {
        bottom: 10px;
        right: 10px;
    }
    .control-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}


/* MODAL */


/* Modal Header */

.modal-header {
    background-color: var(--primary-color) !important;
    border-bottom: 1px solid #dee2e6;
    color: var(--dark-color);
    /* fallback to black */
}


/* Modal Title */

.modal-title {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.25rem;
}


/* Modal Body */

.modal-body {
    padding: 1.5rem;
}


/* Product Quick View Image */

.modal-body img {
    border-radius: 8px;
    max-height: 300px;
    object-fit: contain;
}


/* View Product Button */

.modal-body .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 600;
}

.modal-body .btn-primary:hover {
    background-color: #e6a200;
    border-color: #e6a200;
}


/* Close Button override (optional) */

.modal-header .btn-close {
    filter: none;
}


/* CONTACT */


/* Custom CSS for Contact Page */

.contact-hero {
    background: linear-gradient(135deg, #856f2a 0%, #ffc107 100%);
    color: white;
    padding: 80px 0 60px;
}

.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}

.form-control:focus {
    border-color: rgb(255, 193, 7);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.contact-info-icon {
    background: linear-gradient(135deg, #ffc107, #e9af00);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

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

.call-btn {
    background: #007bff;
}

.contact-stats {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffc107;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

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

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

.contact-form-header h3 {
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 10px;
}

.alert-success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border: none;
    color: white;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 40px;
    }
    .section-title {
        font-size: 2rem;
    }
    .contact-form {
        padding: 30px 20px;
    }
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
}


/* Animation for form submission */

.form-submitted {
    animation: slideUp 0.5s ease-out;
}

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

button.btn.btn-primary.btn-lg {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 600;
}

button.btn.btn-primary.btn-lg:hover {
    background-color: #e6a10000;
    border-color: #e6a200;
    color: #e6a200;
}


/* STORE LOCATOR */

.store-hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.store-hero-section {
    position: relative;
    color: white;
    min-height: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.store-hero-content {
    position: relative;
    z-index: 2;
}

.search-filters {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.filter-input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.filter-input:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.btn-search {
    background: #ffc107;
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: #ffffff;
    border: 1px solid #ffc107;
    color: #ffc107;
}

.store-card {
    background: white;
    border-radius: 15px;
    padding: 13px 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.store-name {
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.store-info {
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.store-info i {
    width: 20px;
    color: #007bff;
    margin-right: 10px;
}

.store-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-open {
    background: #d4edda;
    color: #155724;
}

.status-closed {
    background: #f8d7da;
    color: #721c24;
}

.status-closing-soon {
    background: #fff3cd;
    color: #856404;
}

.store-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-action {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-directions {
    background: #ffc107;
    color: white;
}

.btn-directions:hover {
    background: #ffffff00;
    color: #ffc107;
    border: 1px solid #ffc107;
    transform: translateY(-1px);
}

.btn-call {
    background: #28a745;
    color: white;
}

.btn-call:hover {
    background: #1e7e34;
    color: white;
    transform: translateY(-1px);
}

.btn-details {
    background: #6c757d;
    color: white;
}

.btn-details:hover {
    background: #495057;
    color: white;
    transform: translateY(-1px);
}

.map-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: sticky;
    top: 20px;
}

.map-placeholder {
    text-align: center;
    color: #666;
}

.filter-tags {
    margin-top: 20px;
}

.filter-tag {
    display: inline-block;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 5px 15px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-tag:hover,
.filter-tag.active {
    background: #ffc107;
    color: white;
    border-color: #ffc107;
    font-weight: none !important;
}

.results-header {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: between;
    align-items: center;
    flex-wrap: wrap;
}

.sort-dropdown {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px 12px;
    background: white;
    margin-left: 10px;
}

.distance-badge {
    background: #e9ecef;
    color: #495057;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.store-features {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-badge {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-results i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .store-hero-section {
        padding: 60px 0 40px;
    }
    .search-filters {
        margin-top: -20px;
        padding: 20px;
    }
    .store-actions {
        justify-content: center;
    }
    .map-container {
        height: 300px;
        position: relative;
    }
    .results-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* Offers Page Specific Styles */

.secondary-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.secondary-hero::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="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.secondary-hero .container {
    position: relative;
    z-index: 2;
}

.secondary-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.secondary-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.offer-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    background: white;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e40000;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
}

.offer-badge.hot {
    background: #ff000025;
    color: #e40000;
}

.offer-badge.limited {
    background: #ffc107;
}

.offer-badge.new {
    background: #00d2d3;
}

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

.offer-image {
    height: 400px;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.offer-discount {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.offer-content {
    padding: 2rem;
}

.offer-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.offer-description {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.offer-features li {
    padding: 0.5rem 0;
    color: #34495e;
    display: flex;
    align-items: center;
}

.offer-features li i {
    color: #27ae60;
    margin-right: 0.75rem;
    width: 16px;
}

.btn-claim {
    background: #ffc107;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-claim:hover {
    background: #e6a200;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    color: white;
}

.featured-offer {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE5CC 100%);
    border: 3px solid #ffc38b;
    position: relative;
}

.featured-offer::before {
    content: 'FEATURED';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff000025;
    color: #e40000;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.filter-tabs {
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.filter-tabs .nav-link {
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    color: #7f8c8d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-tabs .nav-link.active {
    background: #ffc107;
    color: white;
}

.newsletter-signup {
    background: linear-gradient(135deg, #926f06 0%, #ffc107 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 25px;
    margin: 4rem 0;
    text-align: center;
}

.newsletter-signup h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-signup p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    background: white;
    color: #e6a200;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .secondary-hero h1 {
        font-size: 2.5rem;
    }
    .offer-image {
        height: 200px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .timer-display {
        gap: 0.5rem;
    }
}

.success-page {
    padding: 2rem 0;
    background-color: var(--light-color);
}

.message-box {
    box-shadow: 0 15px 25px #00000019;
    padding: 45px;
    width: 100%;
    text-align: center;
    margin: 40px auto;
}

._failed {
    border-bottom: solid 4px red !important;
}

._failed i.fa {
    color: red !important;
}

._success i.fa {
    color: #28a745;
}

._success {
    border-bottom: solid 4px #28a745;
}

.message-box i.fa {
    font-size: 55px;
    margin-bottom: 20px;
}

.success-page h2 {
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
}

._success h2 {
    color: #28a745;
}

._failed h2 {
    color: red !important;
}

.success-page h3 {
    font-size: 17px;
}

.success-page p {
    margin-bottom: 0px;
    font-size: 18px;
    color: #495057;
    font-weight: 500;
}


@media (max-width: 768px) {
.container.position-absolute.top-50.start-0.translate-middle-y.text-white.px-4 {
    margin-left: 5% !important;
    margin-top: -190px;
}

.container.position-absolute.bottom-0.end-0.mb-5.me-5 {
    margin-right: 22px !important;
}
}



.price-section{
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden !important;
    max-width:540px;
    width: 100%;
}
}
.current-price {
    font-size: 38px !important;
}

.original-price {
    font-size: 14.8px !important;
}


@media (max-width: 364px) {
.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: center;
}
}
