.mobileHeader,
.mobileMenu {
  display: none !important;
}

.collectioncomments.mobile-show {
  display: none;
}

@media screen and (max-width: 767px),
screen and (min-width: 768px) and (max-width: 1023px) {
  body.menuActive {
    overflow: hidden;
  }

  /* Old header hidden - new app-bar used instead */
  header:not(.app-bar) {
    display: none;
  }

  /* Keep app-bar visible on mobile */
  header.app-bar {
    display: block !important;
  }

  .mobileHeader {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 3;
    justify-content: space-between;
    padding: 13px 17px 0 10px;
  }

  .mobileHeader .logo {
    display: block;
    margin-top: 7px;
    height: 57px;
  }

  .mobileHeader .logo img {
    max-height: 100%;
  }

  .mobileHeader .menuButton {
    width: 43px;
    height: 43px;
    padding: 14px 10px;
    border-radius: 100%;
    background: #2E2E2D;
    row-gap: 4px;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .mobileHeader .menuButton span {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
    transform-origin: center;
    transition: 0.3s ease all;
  }

  .mobileHeader .menuButton span:nth-child(2) {
    position: absolute;
    width: calc(100% - 20px);
    top: 50%;
    transform: translateY(-100%);
  }

  .mobileHeader.menuActive .logo {
    opacity: 0;
    user-select: none;
    pointer-events: none;
  }

  .mobileHeader.menuActive .menuButton {
    background-color: transparent;
  }

  .mobileHeader.menuActive .menuButton span:nth-child(1),
  .mobileHeader.menuActive .menuButton span:nth-child(4) {
    opacity: 0;
  }

  .mobileHeader.menuActive .menuButton span:nth-child(2) {
    transform: rotate(45deg) translate(-1px, -1px);
  }

  .mobileHeader.menuActive .menuButton span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .mobileMenu {
    display: block;
    position: fixed;
    left: 100vw;
    top: 0;
    bottom: 0;
    background-color: #000;
    width: calc(100vw - 60px);
    z-index: 2;
    padding-top: 55px;
    transition: 0.3s ease all;
  }

  .mobileMenu ul {
    display: flex;
    flex-direction: column;
    padding: 0 15px 0 50px;
    margin-bottom: clamp(60px, 10vh, 90px);
  }

  .mobileMenu ul li a {
    padding: 10px 0;
    display: block;
    font-size: 24px;
    color: #fff;
    font-weight: normal;
  }

  .mobileMenu ul .search {
    display: none;
  }

  .mobileMenu .subMenu {
    padding: 0 0 0 50px;
    display: flex;
    font-size: 24px;
    color: #AE0018;
    font-weight: normal;
    flex-wrap: wrap;
    column-gap: 25px;
  }

  .mobileMenu .subMenu a {
    color: #fff;
  }

  .mobileMenu .subMenu a.lang.active {
    color: #ae0018;
  }

  .mobileMenu .subMenu a:first-child {
    width: 100%;
    display: block;
    color: #ae0018;
    text-transform: uppercase;
    margin-bottom: clamp(60px, 10vh, 90px);
  }

  .mobileMenu .subMenu span {
    display: none;
  }

  .mobileMenu .subMenu b {
    display: block;
    width: 100%;
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
  }

  .mobileMenu.menuActive {
    left: 60px;
  }

  section.slider .swiper-slide {
    padding-bottom: 83%;
  }

  section.slider .swiper-slide .content .text {
    display: none;
  }

  section.slider .nav {
    display: none;
  }

  /* Marquee categories - Mobile responsive */
  section.maincategories {
    padding: 10px 0;
  }

  section.maincategories .marquee-container::before,
  section.maincategories .marquee-container::after {
    width: 30px;
  }

  section.maincategories .marquee-track {
    gap: 30px;
    animation-duration: 18s;
  }

  section.maincategories .marquee-item {
    padding: 6px 12px;
  }

  section.maincategories .marquee-item .text {
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  section.maincategories .marquee-item::after {
    right: -18px;
    font-size: 8px;
  }

  section.mainnewproduct {
    padding: 40px 0 50px;
    touch-action: pan-y;
  }

  section.mainnewproduct .wrapper {
    max-width: unset;
  }

  section.mainnewproduct .center {
    width: 100%;
    touch-action: pan-x pan-y;
  }

  section.mainnewproduct .swiper-container,
  section.mainnewproduct .newproduct-swiper {
    padding: 0 20px;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  section.mainnewproduct .swiper-slide {
    opacity: 0.5;
    transform: scale(0.97);
  }

  section.mainnewproduct .swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
  }

  /* Product Header - Mobile */
  section.mainnewproduct .product-header {
    margin-bottom: 16px;
    padding: 0 10px;
  }

  section.mainnewproduct .product-badge {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }

  section.mainnewproduct .product-header .title {
    font-size: 22px;
    margin-bottom: 6px;
  }

  section.mainnewproduct .product-header .desc {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  section.mainnewproduct .product-header .properties {
    gap: 6px;
    min-height: 32px;
    max-height: 32px;
    overflow: hidden;
  }

  /* Hide 3rd and 4th properties on mobile - show only first 2 */
  section.mainnewproduct .product-header .properties .item:nth-child(n+3) {
    display: none !important;
  }

  section.mainnewproduct .product-header .properties .item {
    padding: 6px 10px;
    gap: 5px;
  }

  section.mainnewproduct .product-header .properties .item .icon {
    width: 14px;
    height: 14px;
    min-width: 14px;
  }

  section.mainnewproduct .product-header .properties .item .text {
    font-size: 9px;
  }

  /* Hide navigation arrows on mobile */
  section.mainnewproduct .swiper-button-prev-custom,
  section.mainnewproduct .swiper-button-next-custom {
    display: none;
  }

  /* Image Area - Mobile */
  section.mainnewproduct .swiper-slide .imgarea {
    border-radius: 0;
  }

  section.mainnewproduct .btn-view-overlay {
    opacity: 1;
    transform: translateY(0);
    bottom: 10px;
    right: 10px;
    padding: 10px 16px;
    font-size: 10px;
    gap: 6px;
  }

  section.mainnewproduct .btn-view-overlay svg {
    width: 12px;
    height: 12px;
  }

  /* Navigation Dots - Mobile */
  section.mainnewproduct .swiper-nav {
    margin-top: 24px;
  }

  section.mainnewproduct .swiper-pagination {
    gap: 10px;
  }

  section.mainnewproduct .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  section.mainnewproduct .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transform: scale(1.4);
  }

  section.whichmotornavs .wrapper {
    margin: 0;
    padding: 0 12px;
  }

  section.whichmotornavs .title {
    padding: 10px 0 6px;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.3px;
    margin-bottom: 0;
  }

  section.whichmotornavs .whichNavs {
    width: calc(100% + 24px);
    margin: 0 -12px;
    padding: 0 12px 10px;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 0;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }

  section.whichmotornavs .whichNavs::-webkit-scrollbar {
    display: none;
  }

  section.whichmotornavs .whichNavs a {
    min-width: auto;
    flex: 0 0 auto;
    padding: 8px 16px;
    height: auto;
  }

  section.whichmotornavs .whichNavs a .text {
    text-align: center;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
  }

  section.whichmotornavs .whichNavs a.active .text {
    font-weight: 600;
  }

  section.whichmotornavs .whichNavs a.active .text::after {
    bottom: -8px;
  }

  section.whichmotor-navbar {
    min-height: 200px;
  }

  section.whichmotor-navbar .navbar-tab .bg1 {
    padding-bottom: 55%;
  }

  section.whichmotor-navbar .swiper-pagination-wrapper {
    padding: 15px 0;
    background: #f5f5f5;
  }

  section.whichmotor-navbar .swiper-pagination {
    padding: 0 12px;
    display: flex;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  section.whichmotor-navbar .swiper-pagination::-webkit-scrollbar {
    display: none;
  }

  section.whichmotor-navbar .swiper-pagination .swiper-pagination-bullet {
    margin-right: 15px;
    min-width: 120px;
    flex-shrink: 0;
  }

  section.whichmotor-navbar .swiper-pagination .swiper-pagination-bullet .title {
    font-size: 13px;
    color: #222;
  }

  section.whichmotor-navbar .swiper-pagination .swiper-pagination-bullet .title span {
    font-size: 10px;
  }

  section.whichmotor-navbar .navbar-tab .bg1 .view {
    right: 8px;
    bottom: 8px;
    min-width: auto;
    width: auto;
    max-width: 70px;
    padding: 8px 20px 8px 10px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  section.whichmotor-navbar .navbar-tab .bg1 .view span {
    display: none !important;
  }

  section.whichmotor-navbar .navbar-tab .bg1 .view .text {
    font-size: 0;
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
  }

  section.whichmotor-navbar .navbar-tab .bg1 .view::after {
    content: "İNCELE";
    font-size: 9px;
    font-weight: 600;
    color: #000;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.2px;
  }

  section.whichmotor-navbar .navbar-tab .bg1 .view .icon {
    fill: #000;
    width: 5px;
    height: 8px;
    right: 7px;
  }

  section.whichmotor-navbar .navbar-tab .bg1 .view .icon2 {
    display: none;
  }

  section.swhichmotorstabs {
    margin-top: 0;
  }

  section.swhichmotorstabs .tab .tabTitle {
    inset: unset;
    position: relative;
    transform: unset;
    background: #000;
    padding: 25px;
    font-size: 18px;
    line-height: 1.5;
  }

  section.swhichmotorstabs .swiper-pagination {
    background: #000;
    position: relative;
    inset: unset;
    transform: unset;
    padding: 30px 0;
  }

  section.swhichmotorstabs .swiper-pagination {
    padding-left: 0;
    display: flex;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
  }

  section.swhichmotorstabs .swiper-pagination::-webkit-scrollbar {
    display: none;
  }

  section.swhichmotorstabs .swiper-pagination .swiper-pagination-bullet {
    margin-right: 5px;
    margin-left: 0;
    min-width: 33%;
  }

  section.swhichmotorstabs .swiper-pagination .swiper-pagination-bullet .count {
    font-size: 20px;
  }

  section.swhichmotorstabs .swiper-pagination .swiper-pagination-bullet .count span {
    font-size: 20px;
    margin-right: 5px;
  }

  section.swhichmotorstabs .swiper-pagination .swiper-pagination-bullet .title {
    font-size: 15px;
  }

  section.swhichmotorstabs .swiper-pagination .swipe {
    bottom: 10px;
  }

  section.swhichmotorstabs .swiper-slide .content {
    display: none;
  }

  section.swhichmotorstabs .swiper-slide .view {
    position: relative;
    inset: 0;
    width: 100%;
    margin: 0;
    padding: 16px 60px 16px 30px;
  }

  section.swhichmotorstabs .swiper-slide .view span {
    font-size: 18px;
    margin-bottom: 5px;
  }

  section.swhichmotorstabs .swiper-slide .view .text {
    font-size: 18px;
    font-weight: 400;
  }

  section.falconwings .wrapper {
    padding-top: 30px;
    padding-bottom: 200px;
  }

  section.falconwings .wrapper .title {
    flex-direction: column-reverse;
  }

  section.falconwings .wrapper .title p {
    max-width: unset;
    width: 100%;
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
  }

  section.falconwings .wrapper .title .text {
    font-weight: 400;
  }

  section.falconwings .wrapper .title .text h2 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  section.falconwings .wrapper .title .text small {
    font-weight: 300;
    margin-top: 6px;
    font-size: 11px;
  }

  .owl-falconwing {
    margin-top: -160px;
  }

  .owl-falconwing .post {
    transition: unset;
    filter: unset !important;
    padding: 12px 12px 30px 12px;
  }

  .owl-falconwing .post .imgarea {
    margin-bottom: 20px;
  }

  .owl-falconwing .post .title {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .owl-falconwing .post .title b {
    font-weight: 600;
  }

  .owl-falconwing .post .user {
    font-size: 12px;
  }

  .owl-falconwing .post .desc {
    font-size: 11px;
    line-height: 1.4;
  }

  section.falconwings {
    padding-bottom: 60px;
  }

  section.falconwings .nav {
    display: none;
  }

  section.falconwings .btnSend {
    margin-top: 20px;
    width: 180px;
    height: 44px;
    font-size: 12px;
  }

  section.falconcollection .img-wrapper {
    margin-bottom: 60px;
  }

  section.falconcollection .img-wrapper .bigImg {
    width: 60%;
    height: unset;
    aspect-ratio: 16/9;
  }

  section.falconcollection .img-wrapper .miniImgs {
    width: 40%;
  }

  section.falconcollection .collectioncomments.mobile-show {
    display: block;
  }

  section.falconcollection .collectioncomments:not(.mobile-show) {
    display: none;
  }

  section.falconcollection .nav {
    display: none;
  }

  section.falconcollection .properties {
    flex-direction: column;
    padding: 0;
  }

  section.falconcollection .properties .item {
    padding: 15px 45px 15px 30px;
    justify-content: space-between;
    width: 100%;
    opacity: 1;
    border-bottom: 1px solid #707070;
  }

  section.falconcollection .properties .item .icon {
    opacity: 0.3;
  }

  .blogs {
    padding-bottom: 60px;
  }

  .blogs .blog {
    margin: 0 -12px;
  }

  .blogs .blog .content .title {
    font-weight: 400;
  }

  .blogs .blog .content .desc {
    margin-left: 0;
    font-weight: 300;
    margin-bottom: 85px;
  }

  .blogs .row>div:nth-child(even) {
    margin-top: 30px;
    margin-bottom: -30px;
  }

  /* Main Blog Section - Mobile */
  section.mainblog {
    padding: 30px 0 40px;
  }

  section.mainblog .blog-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  section.mainblog .sectionTitle {
    font-size: 18px;
  }

  section.mainblog .sectiondesc {
    font-size: 12px;
  }

  section.mainblog .allBlogs {
    padding: 8px 16px;
    font-size: 10px;
  }

  section.mainblog .blog-card .blog-image {
    padding-bottom: 55%;
  }

  section.mainblog .blog-card .blog-content {
    padding: 12px 14px;
  }

  section.mainblog .blog-card .blog-title {
    font-size: 13px;
    margin-bottom: 6px;
  }

  section.mainblog .blog-card .blog-excerpt {
    font-size: 11px;
    margin-bottom: 10px;
  }

  section.mainblog .blog-card .blog-link {
    font-size: 10px;
  }

  section.mainblog .blogs-nav {
    margin-top: 20px;
    gap: 12px;
  }

  section.mainblog .blogs-prev,
  section.mainblog .blogs-next {
    width: 34px;
    height: 34px;
  }

  section.mainblog .blogs-prev .icon,
  section.mainblog .blogs-next .icon {
    width: 6px;
    height: 10px;
  }

  section.mainblog .blogs-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  section.mainblog .blogs-pagination .swiper-pagination-bullet-active {
    width: 16px;
  }

  /* Footer Stats - Mobile */
  footer .stats {
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0;
    background: #f8f8f8;
    border-radius: 0;
    gap: 0;
  }

  footer .stats .item {
    flex: 1;
    min-width: 0;
    padding: 20px 8px;
    border-bottom: none;
    margin-bottom: 0;
  }

  footer .stats .item:nth-child(1),
  footer .stats .item:nth-child(2) {
    border-bottom: none;
  }

  footer .stats .item:nth-child(odd) {
    border-right: none;
  }

  footer .stats .item:not(:last-child) {
    border-right: 1px solid #e5e5e5;
  }

  footer .stats .item:before {
    display: none;
  }

  footer .stats .item .icon {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
  }

  footer .stats .item .title {
    font-size: 12px;
    margin-bottom: 3px;
    letter-spacing: 0;
  }

  footer .stats .item .desc {
    font-size: 9px;
    line-height: 1.25;
    max-width: 90px;
  }

  /* Footer Main - Mobile */
  .footer-main {
    padding: 40px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .footer-col.footer-info {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 15px;
  }

  .footer-logo .icon {
    width: 30px;
    height: 30px;
  }

  .footer-logo span {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .footer-desc {
    max-width: 100%;
    margin: 0 auto 15px;
    font-size: 13px;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-contact a {
    font-size: 13px;
  }

  .footer-links h4 {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .footer-links ul li {
    margin-bottom: 8px;
  }

  .footer-links ul li a {
    font-size: 13px;
  }

  /* Footer Social Bar - Mobile */
  .footer-social-bar {
    padding: 25px 0;
  }

  .social-icons {
    gap: 12px;
    flex-wrap: wrap;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }

  .social-icons a .icon,
  .social-icons a .icon-img {
    width: 20px;
    height: 20px;
  }

  /* Footer Bottom - Mobile */
  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-legal-links {
    justify-content: center;
    gap: 15px;
  }

  .footer-legal-links a {
    font-size: 11px;
  }

  .footer-copyright {
    font-size: 11px;
    order: 2;
  }

  .footer-brand {
    order: -1;
  }

  .footer-brand .icon {
    width: 28px;
    height: 28px;
  }

  /* Back to Top Button - Mobile */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .back-to-top .icon {
    width: 18px;
    height: 18px;
  }

  /* Footer Background Watermark - Mobile */
  .footer-falcon-bg {
    font-size: 120px;
    letter-spacing: 10px;
  }

  /* Legacy footer styles */
  footer .info .title {
    font-weight: 400;
    margin-bottom: 10px;
  }

  footer .info a:not(:last-of-type) {
    font-weight: 600;
  }

  footer .social {
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 30px;
    margin-bottom: 30px;
    margin-top: 20px;
  }

  footer .social a {
    width: 36px;
    height: 36px;
  }

  footer .social a .icon {
    width: 16px;
    height: 16px;
  }

  footer .footerLists {
    flex-wrap: wrap;
  }

  footer .footerLists .list {
    width: 50%;
    margin-bottom: 60px;
  }

  footer .footerLists .list:nth-child(odd) {
    padding-right: 30px;
    padding-left: 18px;
  }

  footer .footerLists .list:nth-child(even) {
    padding: 0;
  }

  footer .footerLists .list h4 {
    font-size: 14px;
    font-weight: 400;
  }

  footer .footerLists .list ul>li>a {
    font-size: 14px;
    font-weight: 300;
    padding-right: 5px;
  }

  footer hr:not([size]) {
    display: none;
  }

  footer .logo .charkmedia {
    margin-bottom: 50px;
  }

  section.blankpage {
    padding: 0;
  }

  section.blankpage .sidebar ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
  }

  section.blankpage .sidebar ul li {
    display: inline-block;
    margin-bottom: 0;
  }

  section.blankpage .sidebar ul li a {
    font-size: 20px;
    line-height: 1.8;
    font-weight: 500;
  }

  /* Old navModels styles - Deprecated, using new mega menu */
  section.navModels {
    display: none !important;
  }

  section.mediapage {
    margin-top: 100px;
  }

  section.mediapage .titleArea {
    flex-direction: column;
  }

  section.mediapage .titleArea .pageTitle {
    margin-bottom: 30px;
    width: 100%;
  }

  .videoGalleryPopup .videoArea {
    width: 90vw;
  }

  .videoGalleryPopupback .closeBtn {
    right: 20px;
    top: 20px;
  }

  section.contact .contactInfos {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  section.contact .contactInfos .item {
    max-width: unset;
    margin-bottom: 20px;
  }

  section.allproducts {
    margin-top: 15px;
  }

  section.allproducts .productList {
    padding: 0 10px;
  }

  section.allproducts .productList .item {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 15px;
  }

  section.allproducts .categories {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-bottom: 20px;
    padding: 0 15px;
    position: sticky;
    /* Gradient fade to indicate scroll */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 90%, transparent 100%);
  }

  section.allproducts .categories::-webkit-scrollbar {
    display: none;
  }

  section.allproducts .categories a {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 12px;
    font-size: 13px;
    margin: 0 4px;
  }

  section.allproducts .categories a:first-child {
    margin-left: 10px;
  }

  section.allproducts .categories a:last-child {
    margin-right: 20px;
  }

  .productBanner {
    height: 35vh;
    min-height: 350px;
  }

  .productBanner img {
    position: relative;
    transform: unset;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    max-height: unset;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .productBanner .content .goNext {
    bottom: 10px;
  }

  .productBanner .content .left {
    left: 12px;
    bottom: 40px;
    max-width: unset;
  }

  .productBanner .content .left .text1 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
  }

  .productBanner .content .left .text2 {
    line-height: 24px;
    font-size: 16px;
  }

  .productBanner .content .left .kullanim-kosulu-uyari {
    text-align: left;
    font-size: 10px;
  }

  .productBanner .content .right {
    max-width: unset;
    right: 12px;
    bottom: 12px;
  }

  .productBanner .content .right .text1 {
    font-size: 20px;
  }

  .productBanner::before {
    display: none;
  }

  section.productDetail .slogan1 {
    font-size: 28px;
    line-height: 1.33;
    padding: 40px 15px 60px;
  }

  section.productDetail .collection .productname {
    font-size: 65px;
    line-height: 61px;
    max-width: unset;
  }

  /* Video Review Section Mobile */
  .videoReviewSection {
    padding: 50px 0;
  }

  .video-slogan {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .video-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .video-container {
    border-radius: 8px;
  }

  .video-thumbnail .play-btn svg {
    width: 60px;
    height: 42px;
  }

  .collectionGallery {
    margin: 0;
  }

  .collectionGallery .gallery-container {
    padding: 20px 16px;
  }

  .collectionGallery .gallery-content {
    flex-direction: column;
    gap: 12px;
  }

  .collectionGallery .main-image .imgarea {
    padding-bottom: 66.67%;
  }

  .collectionGallery .gallery-index {
    bottom: 8px;
    right: 8px;
    padding: 4px 10px;
    font-size: 12px;
  }

  .collectionGallery .gallery-info {
    padding: 20px 0 10px;
  }

  .collectionGallery .gallery-info .productname {
    font-size: 20px;
  }

  .collectionGallery .gallery-info .collectionname {
    font-size: 14px;
  }

  .collectionGallery .thumbnails {
    flex-direction: row;
    width: 100%;
    max-height: unset;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding: 0;
  }

  .collectionGallery .thumbnails::-webkit-scrollbar {
    height: 3px;
    width: auto;
  }

  .collectionGallery .thumbnails .photo {
    width: 72px;
    flex-shrink: 0;
  }

  .collectionGallery .thumbnails .photo .imgarea {
    padding-bottom: 66.67%;
  }

  .productprp {
    padding-top: 45px;
  }

  .productprp .title {
    font-size: 35px;
    line-height: 1.33;
  }

  .productprp .properties {
    flex-direction: column;
    padding: 0;
  }

  .productprp .properties .item {
    flex-direction: row;
    padding: 10px 20px;
    justify-content: flex-start;
    width: 100%;
    opacity: 1;
    border-bottom: 1px solid #707070;
    gap: 12px;
  }

  .productprp .properties .item .icon {
    opacity: 0.5;
    order: -1;
    margin-left: 0;
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .productColors .chooses {
    margin: 10px 0 30px;
    text-align: center;
    position: relative;
    left: unset;
    bottom: unset;
    transform: unset;
  }

  /* Product Features Carousel Mobile */
  .productFeaturesSection {
    padding: 24px 0;
  }

  .productFeaturesSection .section-header {
    margin-bottom: 16px;
  }

  .productFeaturesSection .section-title {
    font-size: 20px;
  }

  .features-carousel-wrapper {
    padding: 0 16px 16px;
    /* Compact padding for mobile with single card per slide */
  }

  .features-prev,
  .features-next {
    display: none !important;
    /* Hide nav buttons on mobile - swipe only */
  }

  .feature-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  }

  .feature-image {
    padding-bottom: 75%;
    /* 4:3 aspect ratio maintained */
  }

  .feature-content {
    padding: 12px 14px 14px;
  }

  .feature-title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .feature-desc {
    font-size: 13px;
    line-height: 1.45;
    /* Mobile: Max 4 lines to match desktop */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .features-pagination {
    margin-top: 12px;
    display: block;
    bottom: auto !important;
    position: relative;
    width: 100%;
    text-align: center;
  }

  .features-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .features-pagination .swiper-pagination-bullet-active {
    background: #000;
    transform: scale(1.25);
  }

  /* Force single slide on mobile - full width */
  .featuresSwiper {
    overflow: hidden;
  }

  .featuresSwiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
  }

  .accordion .accordion-item .accordion-body {
    padding: 10px 12px 50px;
  }

  /* Tab Bar Mobile Styles */
  .detailedSpecifications .title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .detailedSpecifications .tab-nav {
    flex-wrap: nowrap;
    overflow-x: visible;
  }

  .detailedSpecifications .tab-btn {
    min-width: unset;
    flex: 1;
    padding: 10px 8px;
    font-size: 11px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  .detailedSpecifications .tab-contents {
    padding: 20px 16px;
  }

  .detailedSpecifications .specifications .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .detailedSpecifications .specifications .item b {
    width: 100%;
    min-width: unset;
    font-size: 14px;
  }

  .detailedSpecifications .specifications .item p {
    font-size: 14px;
  }

  .detailedSpecifications .navButtons {
    flex-direction: column;
    margin-top: 40px;
  }

  .detailedSpecifications .navButtons .container {
    flex-direction: column;
    gap: 12px;
  }

  .detailedSpecifications .navButtons .btn {
    width: 100%;
    height: auto;
    padding: 20px;
    font-size: 16px;
    line-height: 1.4;
  }

  /* Video Review Section Small Mobile */
  .videoReviewSection {
    padding: 40px 0;
  }

  .video-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .video-slogan {
    font-size: 12px;
  }

  .video-thumbnail .play-btn svg {
    width: 50px;
    height: 35px;
  }

  .productList .product {
    padding: 10px;
  }

  .productList .product .imgarea {
    margin-bottom: 10px;
  }

  .productList .product .title {
    font-size: 13px;
    line-height: 1.2;
    min-height: 32px;
  }

  .productList .product .price {
    font-size: 11px;
    min-height: 28px;
  }

  .productList .product .view {
    display: none;
  }

  .productList .product:hover {
    transform: scale(1);
    box-shadow: none;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  header .menu ul {
    justify-content: space-between;
    width: 100%;
  }

  header .menu ul li a {
    padding: 0 5px;
    text-align: center;
    font-size: 13px;
  }

  header .menu ul li.search {
    margin-left: 0;
  }

  header .menu ul li.search a .icon {
    width: 20px;
    height: 20px;
  }

  header a.logo {
    width: 160px;
    min-width: 160px;
    margin: 20px 20px 0 10px;
  }

  header.index .menu ul {
    padding-left: 10px;
  }

  section.mainnewproduct .swiper-container,
  section.mainnewproduct .newproduct-swiper {
    padding: 0 60px;
  }

  section.mainnewproduct .product-header .title {
    font-size: 26px;
  }

  section.mainnewproduct .product-header .properties .item {
    padding: 8px 14px;
  }

  section.mainnewproduct .swiper-nav {
    margin-top: 30px;
  }

  section.whichmotornavs .whichNavs {
    margin: 0;
  }

  section.swhichmotorstabs .swiper-slide .content .slogan {
    font-size: 25px;
    text-align: left;
    bottom: 35px;
  }

  section.falconcollection .properties {
    flex-wrap: wrap;
  }

  section.falconcollection .properties .item {
    flex: auto;
    width: 25%;
    margin-bottom: 30px;
  }

  section.falconcollection .properties .item .icon {
    margin: 0 20px;
  }

  section.falconcollection .nav .arrow {
    bottom: 200px;
  }

  footer {
    padding: 110px 0 10px;
  }

  footer .stats {
    margin: 0 -40px 130px;
  }

  footer .stats .item {
    justify-content: flex-start;
  }

  footer .stats .item .title {
    font-size: 40px;
    text-align: center;
  }

  footer .stats .item .desc {
    font-size: 20px;
  }

  footer .footerLists .list ul li a {
    font-size: 13px;
  }

  footer .logo .copyright {
    margin-bottom: 50px;
  }

  section.allproducts .productList .item {
    width: 33%;
  }

  section.contact .contactInfos .item {
    padding: 0 15px;
    max-width: unset;
    flex: 0 0 auto;
    width: 25%;
  }

  section.contact .contactInfos .item::before {
    right: 0;
  }

  section.contact .mapArea iframe {
    height: 500px;
  }

  section.allproducts .productList .item {
    width: 33%;
  }

  section.slider .swiper-slide .content {
    bottom: 130px;
  }

  .productBanner {
    height: clamp(450px, 60vh, 600px);
  }

  .productBanner img {
    object-fit: cover;
  }

  .productprp .properties .item {
    flex: 0 0 auto;
    width: 14%;
    padding: 0 10px;
    justify-content: space-between;
  }

  .productprp .properties .item .text {
    font-size: 14px;
    flex: 0 0 auto;
    width: calc(100% - 35px);
  }

  .productprp .properties .item .icon {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    margin-left: 0;
  }

  .productContents .item {
    margin-top: 30px;
  }

  .collectionGallery .left .imgarea img {
    object-fit: cover;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
  section.falconwings .btnSend {
    margin-top: 60px;
  }
}

@media screen and (max-width: 375px) {
  section.swhichmotorstabs .swiper-pagination .swiper-pagination-bullet .count {
    display: none;
  }

  .video-title {
    font-size: 20px;
  }

  .video-slogan {
    font-size: 11px;
  }

  section.productDetail .slogan1 {
    font-size: 30px;
    line-height: 1.1;
  }

  section.mediapage .titleArea ul>li>a {
    margin: 0 25px;
  }

  /* Product Features smallest screens */
  .productFeaturesSection {
    padding: 30px 0;
  }

  .productFeaturesSection .section-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .features-carousel-wrapper {
    padding: 0;
  }

  .features-prev,
  .features-next {
    width: 28px;
    height: 28px;
  }
}

.productList .product {
  padding-bottom: 30px;
}

.productList .product .view {
  bottom: 10px;
  font-size: 13px;
}

.productList .product .price {
  font-size: 12px;
}

.productList .product {
  padding-bottom: 30px;
}

.productList .product .view {
  bottom: 10px;
  font-size: 13px;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG LIST PAGE - Mobile Responsive
   ═══════════════════════════════════════════════════════════════ */
@media screen and (max-width: 767px) {
  .blog-list-page {
    padding: 90px 0 60px;
  }

  .blog-container {
    padding: 0 16px;
  }

  .blog-header-section {
    margin-bottom: 30px;
  }

  .blog-page-title {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .blog-page-desc {
    font-size: 14px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card-modern {}

  .blog-card-image {
    padding-bottom: 52%;
  }

  .blog-card-content {
    padding: 16px 18px 20px;
  }

  .blog-card-date {
    font-size: 11px;
  }

  .blog-card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .blog-card-excerpt {
    font-size: 13px;
    -webkit-line-clamp: 2;
    margin-bottom: 14px;
  }

  .blog-card-cta {
    font-size: 12px;
  }

  .blog-pagination-wrapper {
    margin-top: 40px;
  }

  /* Blog Detail Page - Mobile */
  .blog-detail-page {
    padding: 20px 0 20px;
    min-height: auto;
  }

  .blog-detail-container {
    padding: 0 16px;
  }

  .blog-hero-image {
    margin-bottom: 16px;
  }

  .blog-hero-image img {
    max-height: 280px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
  }

  .blog-article-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: block !important;
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .blog-meta {
    margin-bottom: 8px;
    display: block !important;
  }

  .blog-date {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
  }

  .blog-date .icon {
    width: 14px;
    height: 14px;
    margin-right: 6px;
  }

  .blog-article-title {
    font-size: 22px;
    line-height: 1.3;
    color: #000 !important;
    display: block !important;
    margin-top: 5px;
    visibility: visible !important;
  }

  .blog-article-content p {
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .blog-article-content h2 {
    font-size: 20px;
    margin: 24px 0 12px;
  }

  .blog-article-content h3 {
    font-size: 18px;
    margin: 20px 0 10px;
  }

  .blog-article-content ul,
  .blog-article-content ol {
    margin: 16px 0;
    padding-left: 20px;
  }

  .blog-article-content li {
    font-size: 14px !important;
    margin-bottom: 6px;
  }

  .blog-article-content img {
    margin: 16px 0;
  }

  .blog-article-content blockquote {
    margin: 16px 0;
    padding: 16px 18px;
    font-size: 14px;
  }

  .blog-article-footer {
    margin-top: 20px;
    padding-top: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .blog-share {
    justify-content: center;
  }

  .share-label {
    font-size: 13px;
  }

  .share-btn {
    width: 36px;
    height: 36px;
  }

  .share-btn .icon {
    width: 16px;
    height: 16px;
  }

  .blog-back-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .blog-list-page {
    padding: 100px 0 70px;
  }

  .blog-page-title {
    font-size: 34px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .blog-detail-page {
    padding: 100px 0 70px;
  }

  .blog-article-title {
    font-size: 30px;
  }

  .blog-article-content p {
    font-size: 17px;
  }
}

/*# sourceMappingURL=mobile.css.map */