:root {
    --primary-color: #b5131c;
    --primary-color-accent: #da212a;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
html, body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Helvetica, sans-serif, Arial;
    color: #333333;
}
body {
    background: #f7f9fa;
}
a {
    color: #333333;
    text-decoration: none;
}
a:hover {
    color: #000000;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
}
h1 {
    font-size: 3rem;
    line-height: 4rem;
    font-weight: bold;
}
h2 {
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 3.3rem;
}
h3 {
    font-size: 1.8rem;
    line-height: 2.6rem;
}
.color-primary {
    color: var(--primary-color);
}
@media only screen and (max-width: 767px) {
    h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    h2 {
        font-size: 1.3rem;
        line-height: 1.8rem;
    }
}
.swiper-slide {
    height: auto !important;
}
.swiper-button-prev, .swiper-button-next {
    color: var(--primary-color) !important;
}
/* Menu */
#logo {
    max-height: 30px;
}
#header {
    background: #ffffff;
    position: fixed;
    width: 100%;
    z-index: 3;
    transition: all 0.3s ease-in;
}
#header h3 {
    font-size: 1rem;
}
#header .navbar-nav {
    position: relative;
}
#header .navbar-toggler {
    color: #fff;
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
}
#header .navbar-toggler:active, #header .navbar-toggler:focus , #header .navbar-toggler:focus-visible {
    border: 1px solid var(--primary-color) !important;
    box-shadow: none;
}
#header .dropdown-container:hover .dropdown-menu, #header .dropdown-container:hover .dropdown-menu-mega {
    display: block;
}
#header.light .navbar-toggler {
    color: #000;
}
#header .nav-item {
    padding: 0.5rem 1rem;
}
#header .dropdown-toggle::after {
    content: "\e313";
    font-family: "Material Symbols Outlined";
    font-weight: 900;
    border: 0;
    vertical-align: middle;
    font-size: 1rem;
}
#header .dropdown-toggle.open::after {
    content: "\e316";
}
#header .dropdown-menu {
    -webkit-animation-name: menuSlide;
    animation-name: menuSlide;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    box-shadow: 0 0.125rem 0.25rem rgba(29, 58, 83, 0.15);
    border: 1px solid var(--bs-border-color);
    padding: 1rem;
}
#header .dropdown-menu-mega {
    position: absolute;
    display: none;
    -webkit-animation-name: menuSlide;
    animation-name: menuSlide;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    box-shadow: 0 0.125rem 0.25rem rgba(29, 58, 83, 0.15);
    border: 1px solid var(--bs-border-color);
    padding: 1rem;
    width: 100%;
    left: 0;
    z-index: 10;
    background: #ffffff;
}
#header .dropdown-item {
    padding: 0.8rem;
    width: 100%;
}
#header .dropdown-item:hover {
    background: #efefef;
}
#header.dark {
    background: #18181a;
    color: #ffffff;
}
#header.transparent {
    background: transparent;
}
#header.dark .nav-link, #header.dark .dropdown-item {
    color: #ffffff;
}
#header.dark .dropdown-menu {
    background: #000000;
    border: 1px solid #333333;
}
#header.dark .dropdown-menu-mega {
    background: #000000;
    border: 1px solid #333333;
}
#header.dark .dropdown-item:hover {
    background: #555555;
}
#header.dark .material-symbols-outlined {
    color: #ffffff;
    font-size: 1.5rem;
}
@-webkit-keyframes menuSlide {
    from {
      -webkit-transform: translateY(10px);
              transform: translateY(10px);
    }
    to {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
}
@keyframes menuSlide {
    from {
      -webkit-transform: translateY(10px);
              transform: translateY(10px);
    }
    to {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
}
@media only screen and (max-width: 991px) {
    #header .dropdown-menu, #header .dropdown-menu-mega {
        position: relative;
        max-height: 400px;
        overflow: auto;
    }
    #header {
        max-height: 80vh;
        overflow: auto;
    }
}
#header .buy {
    background: var(--primary-color);
    padding: 1rem;
    border-radius: 10px;
    color: #fff;
    transition: all 0.3s ease;
}
#header .buy:hover {
    background: var(--primary-color-accent);
}
/* Cursor */
.cursor-pointer {
    cursor: pointer;
}
/* Buttons */
.btn-custom {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    transition: all 0.3s ease;
}
.btn-custom:hover {
    background: var(--primary-color-accent);
    border: 1px solid var(--primary-color-accent);
    color: #fff;
}
.btn-custom.btn-lg {
    font-weight: 500;
    padding: 1rem 2rem;
}
.btn-custom.btn-dark {
    font-weight: 500;
    background: #080912;
    border: 1px solid #111111;
    color: #ffffff;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}
.btn-custom.btn-dark:hover {
    background: #333333;
}
/* Home */
#home-hero {
    background: url('../image/bg/home.jpg');
    background-size: cover;
    min-height: 100vh;
    color: #fff;
}
#home-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    line-height: 4.5rem;
}
#home-hero h2 {
    font-size: 2.5rem;
    line-height: 3.5rem;
}
@media only screen and (max-width: 768px) {
    #home-hero h1 {
        font-size: 3rem;
        line-height: 4rem;
    }
}
/* Content */
.section {
    padding: 4rem 0;
    overflow: hidden;
}
.section.dark {
    background: #080912;
    color: #ffffff;
}
.section.white {
    background: #ffffff;
}
.section.padded-top-sm {
    padding-top: 6rem;
}
.section.padded-top {
    padding-top: 8rem;
}
.section.city-bikes {
    background: url('../image/bg/city-bikes.jpg');
    background-size: cover;
}
.section.mountain-bikes {
    background: url('../image/bg/mountain-bikes.jpg');
    background-size: cover;
}
.section.fixed-gear-bikes {
    background: url('../image/bg/fixed-gear-bikes.jpg');
    background-size: cover;
}
.section.foldable-bikes {
    background: url('../image/bg/foldable-bikes.jpg');
    background-size: cover;
}
.section.kids-bikes {
    background: url('../image/bg/kids-bikes.jpg');
    background-size: cover;
}
.pop {
    transition: all 0.3s ease-in;
}
.pop:hover {
    scale: 1.1;
}
/* Specs */
#colors button {
    background: transparent;
    padding: 3px;
    border-radius: 50%;
    border: 0;
}
#colors .active {
    padding: 3px;
    border: 1px solid var(--primary-color);
}
#features > div {
    border-bottom: 1px solid #ccc;
}
#features > div > div {
    padding: 20px 0;
}
/* Warranty */
#warranty {
    background: #eaeaea;
    padding: 50px;
    border-radius: 20px;
}
/* Footer */
#footer {
    background: #18181a;
    color: #f9f9f9;
    position: relative;
    margin-top: auto;
    font-size: 0.875rem;
    padding: 2rem 0 1rem 0;
}
#footer .tag {
    font-size: 1.1rem;
    font-weight: bold;
}
#footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}
#footer a {
    text-decoration: none;
    color: #f9f9f9;
}
#footer a:hover {
    color: #ccc;
}
#footer .list-unstyled li a {
    padding: 0.5rem 0;
    display: block;
}