/* ========================================
   云速国际物流 - 主页样式 (复刻版)
   ======================================== */

/* CSS Variables - 精确颜色值 */
:root {
  --primary-blue: #1A365D;
  --secondary-blue: #2c4a7c;
  --accent-orange: #E67E22;
  --text-dark: #333333;
  --text-light: #666666;
  --text-gray: #888888;
  --white: #ffffff;
  --bg-light: #F5F5F5;
  --bg-gray: #EEEEEE;
  --transition: all 0.3s ease;

  --color-primary: #1a2b4a;
  --color-primary-dark: #0f1a30;
  --color-secondary: #333333;
  --color-accent: #d4a843;
  --color-accent-hover: #c49a38;
  --color-accent-light: #f5e6c0;
  --color-bg-light: #f5f5f5;
  --color-bg-gray: #e8e8e8;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-green: #28a745;
  --color-blue: #0066cc;
  --color-border: #dee2e6;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
}
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.t2{
    color: #666;
}

.t-desc{
    font-size: 1.1rem;
    color: #666;
    line-height: 1.4rem;
}
.mb-10{
    margin-bottom: 10px;
}
.mb-15{
    margin-bottom: 15px;
}
.mb-20{
    margin-bottom: 20px;
}
.mb-50{
    margin-bottom: 50px;
}
.text-center{
    text-align: center;
}




@media (max-width: 1200px) {
    .mb-10{
        margin-bottom: 10px;
    }
    .mb-15{
        margin-bottom: 12px;
    }
    .mb-20{
        margin-bottom: 15px;
    }
    .mb-50{
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .mb-10{
        margin-bottom: 8px;
    }
    .mb-15{
        margin-bottom: 10px;
    }
    .mb-20{
        margin-bottom: 12px;
    }
    .mb-50{
        margin-bottom: 20px;
    }
}



/* ========================================
   Header Navigation
   ======================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-top{
    display: flex;
    justify-content: space-between;
    background-color: #23506d;
    color: var(--white);
    height: 40px;
    line-height: 40px;
    font-size: 14px;
}
.header-top-box{
    display: flex;
    justify-content: space-between;
    background-color: #23506d;
    color: var(--white);
    height: 40px;
    line-height: 40px;
    font-size: 14px;
}


.header-top-left-sp1{
    font-size: 16px;
    margin-right: 20px;
}
.header-top .header-top-nav{
    display: flex;
    list-style: none;
    gap: 15px;
}
.header-top-item{
    position: relative;
}
.header-top-dropdown-menu{
    list-style: none;
    padding: 10px 25px;
    display: none;
    background: #fff;
    position: absolute;
    top: 40px;
    right: 0;
    z-index: 9999;
    width: 240px;
    border-radius: 0 0 15px 15px;
}
.header-top-item:hover .header-top-dropdown-menu{
    display: inline-block;
}


.header-top-dropdown-menu-social img{
    width: 40px;
}



.header-top-dropdown-item{
    color: #3961a0;
}
.dropdown{
    padding-right:20px;
}
.dropdown .header-top-text-wrap::after {
    content: '';
    position: absolute;
    z-index: 1001;
    bottom: 12px;
    right: 1px;
    width: 14px;
    height: 14px;
    background: url(../images/ico-1.png) center;
    background-size: cover;
}
.dropdown .nav-text-wrap::after {
    content: '';
    position: absolute;
    z-index: 1001;
    bottom: 2px;
    right: -20px;
    width: 14px;
    height: 14px;
    background: url(../images/ico-1.png) center;
    background-size: cover;
}
.header-nav .navbar {
  padding: 0;
  margin: 0 auto;
  padding: 0 5vw;
  background: rgba(0, 0, 0, 0.3)
}
.header-nav .navbar .navbar-collapse{
    justify-content: end;
    position: relative;
    gap: 30px;
}




/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  text-decoration: none;
}

.logo-text {
  width: 100px;
}

.navbar{
      transition: right 0.3s ease;
      right:0;
}

/* Navigation Menu */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  padding: 22px 18px !important;
  font-size: 14px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Flip Text Effect */
.nav-text-wrap {
  display: block;
  position: relative;
  height: 20px;
    color: var(--white);
}

.nav-normal,
.nav-hover {
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Default state - show normal text */
.nav-normal {
  color: var(--white);
  transform: translateY(0);
}

.nav-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: rgb(26, 50, 99);
  font-weight: 600;
  transform: translateY(100%);
}

/* Hover state - flip up 
.nav-item:hover .nav-normal {
  transform: translateY(-100%);
}

.nav-item:hover .nav-hover {
  transform: translateY(0);
}
*/
/* Nav link base - for positioning */
.nav-link {
  position: relative;
  z-index: 1002;
}

/* Active state */
.nav-link.active {
  position: relative;
}
/* Ensure dropdown z-index is lower than underline */
.dropdown-menu {
  z-index: 1000;
}

.nav-link.active .nav-normal {
  color: #fff;
  font-weight: 600;
}

/* Remove dropdown caret arrow */
.dropdown-toggle::after {
  display: none;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: var(--white);
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  width: 100%;
    position: fixed;
    top: 103px;
    background: #fff;  
    
    
}

.dropdown-item {
  padding: 12px 20px;
  position: relative;
  color: var(--text-dark);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Dropdown indicator - sliding blue bar from left */
.dropdown-item .dropdown-indicator {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.dropdown-item:hover .dropdown-indicator {
  width: 0;
}

.dropdown-item:hover {
  background: var(--bg-light);
  padding-left: 28px;
  color: var(--primary-blue);
}


.dropdown-menu-box{
    display: flex;
    justify-content: space-between;
}

.dropdown-menu-child-title{
    color: #23506d;
    font-size: 1.2rem;
}

.dropdown-menu-child-title .dropdown-item{
    color: #23506d;
    font-size: 1.2rem;
    font-weight: bold;
}


.dropdown-menu-child-title .dropdown-item:hover{
    color: #23506d;
}
.dropdown-menu-product{
    width:360px;
}
.dropdown-menu-product .best-prodcut-info-right .best-prodcut-btn{
    background:#23506d;
    color: #fff;
}
.dropdown-menu-product img{
    width: 100%;
    border-radius: 20px;
}






/* Right Side Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.action-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
  margin-top: 4px;
}

.action-icon:hover {
  color: var(--white);
}

.bi-buy{
    display: inline-block;
    width: 26px;
    height: 26px;
    background: url('../images/ico-2.png') center;
    background-size: cover;
}








.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-left: 10px;
  padding-left: 15px;
  border-left: 1px solid #ddd;
}

.lang-btn {
  color: var(--text-gray);
  transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
  color: rgb(26, 50, 99);
}

.lang-divider {
  color: #ddd;
}

/* Mobile Toggle */
.navbar-toggler {
  border: none;
  padding: 8px;
  background: none;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-blue);
  transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}


/* ========================================
   Second Video Section
   ======================================== */
.second-video-section {
  position: relative;
  width: 100%;
}

.second-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 388;
  overflow: hidden;
}





@media (max-width: 1200px) {
  .second-video-container {
    aspect-ratio: 16 / 9;
  }
  .header-nav .navbar .navbar-collapse{
      position: fixed;
  }
  .position-box{
      top: 80px!important;
  }
}

@media (max-width: 768px) {
  .second-video-container {
    aspect-ratio: 4 / 3;
  }
  .header-nav .navbar .navbar-collapse{
      position: fixed;
  }
  
}

/* 响应式调整第二个视频的宽高比 */
@media (max-width: 1200px) {
  .second-video-container {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .second-video-container {
    aspect-ratio: 4 / 3;
  }
}

.second-video-container .container{
    position: relative;
    z-index: 99;
}

/* ========================================
   third Video Section
   ======================================== */
.third-video-section {
  position: relative;
  width: 100%;
}

.third-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 388;
  overflow: hidden;
}





@media (max-width: 1200px) {
  .third-video-container {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .third-video-container {
    aspect-ratio: 4 / 3;
  }
}

/* 响应式调整第二个视频的宽高比 */
@media (max-width: 1200px) {
  .third-video-container {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .third-video-container {
    aspect-ratio: 4 / 3;
  }
}

.third-video-container .container{
    position: relative;
    z-index: 99;
}




.newest{
    width: 340px;
    color: #fff;
    padding-top: 15%;
}
/* 响应式调整第二个视频的宽高比 */
@media (max-width: 1400px) {
    .newest{
        padding-top: 10%;
    }
}

@media (max-width: 768px) {
    .newest{
        padding-top: 20px;
    }
}




.newest-t2{
    margin: 30px 0;
}
.newest-btn{
    background: #fbc92e;
    border-radius: 10px;
    text-align: center;
    line-height: 3rem;
    padding: 0 20px;
    display: inline-block;
}

.newest-btn:hover{
    background: #fcbf00;
}


.newest-btn a{
    font-size: 2rem;
}


/* Banner Video Container */
.hero-banner {
  position: relative;
  padding-top: 40px;
  padding-bottom: 0;
}

/* Banner Video Container */
.banner-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 400;
  overflow: hidden;
}

/* 响应式调整宽高比 */
@media (max-width: 1200px) {
  .banner-video-container {
    aspect-ratio: 10 / 4;
  }
}

@media (max-width: 768px) {
  .banner-video-container {
    aspect-ratio: 4 / 3;
  }
}

.video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.video-wrapper.loaded {
  opacity: 1;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 隐藏视频控制栏 */
  controls: false;
}

/* 确保视频不显示原生控制栏 */
.video-wrapper video::-webkit-media-controls {
  display: none !important;
}
.video-wrapper video::-webkit-media-controls-enclosure {
  display: none !important;
}


.video-introduce{
    position: absolute;
    left: 50%;
    bottom: 100px;
    width: 260px;
    margin-left: -130px;
    z-index: 3;
}
.video-introduce-item{
    width: 260px;
    height: 60px;
    background: rgba(35, 80, 110, 0.5);
    text-align: center;
    line-height: 60px;
    border-radius: 10px;
    color: #fff;
    font-size: 30px;
}





.banner-slide {
  min-height: 520px;
  height: 820px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.banner-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(44, 74, 124, 0.75) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  padding: 60px 0;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.banner-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.banner-subtitle {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 400;
}

.banner-desc {
  font-size: 13px;
  letter-spacing: 4px;
  opacity: 0.8;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.banner-tags {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.banner-menu{
    padding: 0;
}
.banner-menu-box{
    gap: 50px;
    list-style: none;
    display: flex;
    justify-content: center;
    height: 50px;
    background: #dcdfe6;
}

.banner-menu-box li{
    height: 50px;
    line-height: 50px;
}

.banner-menu-box li a{
    color: #666666;
    font-size: 20px;
}

.position-box{
    position: absolute;
    top: 110px;
    left: 0;
    z-index: 999;
    width: 100%;
    color: #fff;
}

    .alpine-recommender{
        padding: 50px 5vw;
        display: flex;
        background: #666666;
    }
    .alpine-recommender-left{
        width: 100px;
         flex-shrink: 0;   /* 禁止收缩 */
    }

    .alpine-recommender-left img{
        width: 100%;
    }


    .alpine-recommender-center{
        color: #fff;
        padding: 0 50px;  
        flex: 1;          /* 自适应，填充剩余空间 */
        min-width: 0;     /* 防止内容溢出时撑破布局 */
    }

    .alpine-recommender-center .p1{
        font-size: 1.2rem;
        line-height: 2rem;
    }
    .alpine-recommender-center .p2{
        font-size: 1rem;
        line-height: 2rem;
    }
    
    
    .alpine-recommender-right{
        width: 300px;
        flex-shrink: 0;   /* 禁止收缩 */
    }    
    
    
    .alpine-recommender-btn{
        width: 200px;
        background: #fbc92e;
        border-radius: 10px;
        text-align: center;
        line-height: 3rem;
        padding: 0 10px;
        display: inline-block;
    }
    
    .alpine-recommender-btn a{
        color: #000;   
    }
    
    .alpine-recommender-right .p2{
        color: #e6e6e6;
    }
    
    
    
    .any-questions{
        background: #b3b3b3;
        color:#fff;
        padding: 50px 0;
    }
    
    
    
    
    
.faq-section{    
  background: :#6e6e6e  ;
}
    
.faq-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}





@media (max-width: 1200px) {
  .faq-video-container {
    aspect-ratio: 2 / 3;
  }
}

@media (max-width: 768px) {
  .faq-video-container {
    aspect-ratio: 3 / 2;
  }
}

/* 响应式调整第二个视频的宽高比 */
@media (max-width: 1200px) {
  .faq-video-container {
    aspect-ratio: 2 / 3;
  }
}

@media (max-width: 768px) {
  .faq-video-container {
    aspect-ratio: 3 / 2;
  }
}
    
    
.accordion-body{
    padding: 10px 0;
}    
    
    
    
/* ---------- Awards Section ---------- */
.awards-section {
  background-color: #d4a843;
  padding: 60px 0;
  text-align: center;
}
.awards-section .award-logo{
    text-align: center;
}
.awards-section .award-logo img {
  width: 80%;
  border-radius: 50%;
  margin: 0 12px 16px;
}
.awards-section .award-logo span{
    font-size: 0.8rem;
}
.awards-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.awards-section p {
  opacity: 0.8;
}
    
    
    
    

/* ---------- Recommended Section ---------- */
.recommended-section {
  background-color: #fff;
  display: none;
}
.recommended-section.active{
    display: block;
}
.recommended-section .section-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #23506d;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-accent);
}

.search-tag {
  display: inline-block;
  background-color: var(--color-bg-light);
  color: #23506d;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin: 0 8px 8px 0;
  transition: var(--transition);
  cursor: pointer;
}

.search-tag:hover {
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
}

.rec-product-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.rec-product-item:last-child {
  border-bottom: none;
}

.rec-product-item .rec-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.rec-product-item .rec-badge {
  font-size: 0.65rem;
  font-weight: 600;
  background: var(--color-primary);
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  margin-bottom: 2px;
  display: inline-block;
}

.rec-product-item .rec-badge.stock-badge {
  background: var(--color-green);
}

.rec-product-item .rec-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #23506d;
  margin-bottom: 2px;
}

.rec-product-item .rec-spec {
  font-size: 0.8rem;
  color: #666;
}

.view-all-link {
  color: #23506d;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 12px;
  display: inline-block;
}


.blog-empty {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}
    
    
/* ---------- Support Page ---------- */
.support-hero {
  background-color: #4d4d4d;
  padding: 150px 0;
  text-align: center;
  color: #fff;
  margin-top: 40px;
}


.support-hero .search-box {
  max-width: 650px;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
}

.support-hero .search-box .bi-search{
    color: #666;
    margin-top: 8px;
    font-size: 24px;
    width: 80px;
    text-align: center;
}

.support-hero .search-box .form-control {
  padding: 14px 24px 14px 0;
  font-size: 1rem;
  border: none;
  border-radius: 0 30px 30px 0;
}
    
    
    
    
    
    
.support-quick-links {
  padding: 50px 0;
  background: #f7f7f9;
}

.quick-link-card {
  text-align: center;
  padding: 30px 20px;
  height: 100%;
}


.quick-link-card .ql-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.quick-link-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.quick-link-card p {
  font-size: 0.85rem;
}

.quick-link-card .btn-ql {
  margin-top: 12px;
  display: inline-block;
  background-color: #ffe034;
  color: #3587a4;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 20px;
}

.resource-title{
    color: #666;
}
.resource-card{
    background: #f7f7f9;
    padding: 10px 15px;
}    
.rc-title{    
    color:#999999
}
.rc-desc{
    color: #666;
}
/*hot-prodcut*/


    .base-prodcut .swiper-container {
      margin: 20px auto;
      position: relative;
    }

    .base-prodcut .swiper {
      width: 100%;
      overflow: hidden;
    }
    .base-prodcut .swiper-slide a{
        display: inline-block;
        position: relative;
    }
    .base-prodcut .swiper-slide img{
        width: 100%;
        aspect-ratio: 1 / 1.2;
            border-radius: 20px;
    }
    

    
    .alpine-prodcut-name ,.hot-prodcut-name{
        height: 60px;
        line-height: 60px;
        text-align: center;
        position: absolute;
        left: 0;
        width: 100%;
        bottom: 0;
        background: rgba(0,0,0,0.2);
        color: #fff;
        border-radius: 0 0 20px 20px;
        font-size: 18px;
    }


    /* 自定义滚动条样式 */
    .base-prodcut .base-scrollbar-wrap {
      margin-top: 30px;
      padding: 0 20px;
    }

    .base-prodcut .base-swiper-scrollbar {
      background: #e5e7eb !important;
      height: 5px !important;
      border-radius: 4px !important;
      left: 0 !important;
      width: 100% !important;
    }
    

    .base-prodcut .swiper-scrollbar-drag {
      background: #23506d;
      border-radius: 4px !important;
      cursor: grab !important;
    }

    .base-prodcut .swiper-scrollbar-drag:hover,
    .base-prodcut .swiper-scrollbar-drag:active {
      background: #23506d;
      cursor: grabbing !important;
    }


.base-prodcut-title{
    color: #666;
    display: flex;
    justify-content: space-between;
}
.base-prodcut-title-btns {
    width: 88px;
    position: relative;
}
.base-prodcut-title-btns .base-swiper-button-prev{
    border: 1px solid #666;
    border-radius: 5px;
}
.base-prodcut-title-btns .base-swiper-button-next{
    border: 1px solid #666;
    border-radius: 5px;
    
}
.base-prodcut-title-btns .base-swiper-button-prev:after{
    font-size: 14px;
    color: #666;
}
.base-prodcut-title-btns .base-swiper-button-next:after{
    font-size: 14px;
    color: #666;
}



.swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal{
    bottom: -15px;
}


.best-prodcut-info{
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
}
.best-prodcut-info-left{
    text-align: left;
}
.best-prodcut-info-left .p1{
    font-size: 1.4rem;
    color: #666;
    line-height: 2rem;
    margin-bottom: 0;
}

.best-prodcut-info-left .p2{
    font-size: 1.4rem;
    color: #666;
    line-height: 2rem;
    margin-bottom: 0;
}
.best-prodcut-info-left .p3{
    font-size: 0.8rem;
    color: #666;
    line-height: 2rem;
    margin-bottom: 0;
}


.best-prodcut-info-right{
    text-align: right;
}
.best-prodcut-info-right .p1{
    font-size: 0.8rem;
    color: #666;
    line-height: 2rem;
    margin-bottom: 0;
}

.best-prodcut-info-right .p2{
    font-size: 1.2rem;
    color: #ea3838;
    line-height: 2rem;
    margin-bottom: 0;
}
.best-prodcut-info-right .best-prodcut-btn{
    background: #ea3838;
    border-radius: 5px;
    text-align: center;
    
    font-size: 0.8rem;
    color: #fff;
    line-height: 2rem;
}
.best-prodcut-info-right .best-prodcut-btn a{
    font-size: 0.8rem;
    color: #fff;
    line-height: 2rem;
    margin-bottom: 0;
}


.alpine{
    background: #23506d;
    padding: 0;
}

.alpine .alpine-box{
}
.alpine-left{
    color: #e6e6e6;
    padding-right: 20%;
    padding-top: 50px;
}
.alpine-right{
}
.alpine-right img{
   width: 100%;
}
.alpine-t1{
    color: #fff;
}

.alpine-t2{
    font-size: 0.8rem;
    line-height: 1.4rem;
    padding-bottom: 10px;
}
.alpine-t3{
    font-size: 0.8rem;
    line-height: 1.4rem;
    padding-bottom: 80px;
}

.alpine-t4{
    font-size: 0.8rem;
    line-height: 1.4rem;
}

.alpine-btn{
    background: #fbc92e;
    border-radius: 10px;
    text-align: center;
    line-height: 3rem;
    padding: 0 20px;
    display: inline-block;
}

.alpine-btn:hover{
    background: #fcbf00;
}
.alpine-btn a{
    font-size: 1.6rem;
}


.family-owned-title{
}
.family-owned-desc{
}
.sauna-list{
    padding-top: 30px;
}

.sauna-item{
    text-align: center;
    padding: 0 20px 10px 20px;
}

.sauna-item .p1{
    
    height: 60px;
    font-size: 1.2rem;
    line-height: 30px;
    text-align: center;
    padding: 0 20px;
    margin: 20px 0 10px 0;
}

.sauna-btn{
    width: 200px;
    margin: auto;
    border: 1px solid #666;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
    border-radius: 10px;
}

.alpine-prodcut-desc{
    width: 60%;
}
.alpine-prodcut{
    padding-bottom: 0;
}

.products-item{
    padding: 10px 0;
}

.products-item img{
    border-radius: 20px;
    width: 100%;
        aspect-ratio: 1 / 1;
}

.prodcut-slide img{
        aspect-ratio: 1 / 1;
}


.contact{
    background: #f2f2f2;
}

.contact-box{
    display: flex;
    gap: 20px;
    justify-content: center;    
}

.contact-item input{
    border: 1px solid #666;
    height: 50px;
    line-height: 50px;
    width: 200px;
    padding: 0 15px;
    border-radius: 10px;
}


.contact-btn button{
    border: 1px solid #fbc92e;
    height: 50px;
    line-height: 50px;
    width: 100px;
    padding: 0 15px;
    background: #fbc92e;
    color: #fff;
    border-radius: 10px;
}









@media (max-width: 768px) {
    .contact-box{
        display: block;
    }
    .contact-item{
        width: 100%;
        margin-bottom: 10px;
    }
    
    .contact-item input{
        width: 100%;
    }
    .contact-btn{
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
}





.about-us-right img{
    width: 100%;
    border-radius: 40px;
}

.about-us-left{
    padding-left: 20px;
    padding-top: 100px;
}


.about-video{
    color: #fff;
    background: linear-gradient(to bottom, #999999 0%, #999999 400px, transparent 400px);
}
.about-video .t-desc{
    color: #fff;
}
.about-title-icon{
    color:#fbc92e;
    padding: 0 5px;
    font-size: 25px;
}
.about-banner-menu .mr-20{
    margin-right: 20px;
}

.about-alpine-left{
    padding: 125px 80px 0 30px;
}
.about-alpine-left .alpine-t2{
}

.about-problem{
    border-bottom: 1px solid #666;
}
.about-ask{
    height: 50px;
    line-height: 50px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.about-answer{
    padding: 10px;
    display: none;
}
.about-problem.active .about-answer{
    display: block;
}


.about-ask-ico{
    display: inline-block;
    margin-top: 13px;
    width: 24px;
    height: 24px;
    background: url(../images/ico-6.png) center;
    background-size: cover;
}





@media (max-width: 768px) {

    .about-us-right img{
        border-radius: 20px;
    }
    
    .about-alpine-left{
        padding: 50px 50px 0 20px;
    }
    .about-alpine-right img{
        margin-bottom: 10px;
    }
}






.tag-item {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: 30px;
  gap: 8px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 4px;
}

.carousel-indicators button.active {
  background: rgb(26, 50, 99);
}

/* Slide Counter */
.slide-counter {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.current-slide {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.divider-line {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
}

.total-slides {
  font-size: 16px;
  opacity: 0.7;
}

/* Banner Controls - Inside indicators */
.banner-controls {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.banner-control {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
}

.banner-control:hover {
  background: rgb(26, 50, 99);
  border-color: rgb(26, 50, 99);
}

.banner-control.prev {
  margin-right: 10px;
}

.banner-control.next {
  margin-left: 10px;
}
/* Order Search Bar */
.order-search-bar {
  background: var(--white);
  padding: 25px 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.search-wrapper {
  display: flex;
  align-items: center;
  max-width: 750px;
  margin: 0 auto;
}

.search-input-group {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 0;
}

.search-input-group i {
  position: absolute;
  left: 15px;
  color: var(--text-gray);
  font-size: 16px;
}

.search-input {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border: none;
  font-size: 13px;
  outline: none;
  background: transparent;
}

.search-btn {
  padding: 14px 35px;
  background: var(--text-dark);
  color: var(--white);
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background: rgb(26, 50, 99);
}

/* ========================================
   Section Common Styles
   ======================================== */
section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.section-title .orange {
  color: rgb(26, 50, 99);
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-light);
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
  background: var(--bg-light);
}

.transport-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.transport-item {
  text-align: center;
}

.transport-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 28px;
  color: var(--primary-blue);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.transport-item:hover .transport-icon {
  background: var(--primary-blue);
  color: var(--white);
}

.transport-item span {
  font-size: 13px;
  color: var(--text-gray);
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-card {
  width: 260px;
  padding: 35px 25px;
  background: var(--white);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.service-card .card-icon {
  width: 65px;
  height: 65px;
  margin-bottom: 18px;
  font-size: 28px;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.service-card p {
  font-size: 12px;
  color: var(--text-gray);
  margin: 0;
}

/* Active Card - Russia (Rectangle style) */
.service-card.active {
  background: var(--primary-blue);
}

.service-card.active .card-icon {
  color: var(--white);
}

.service-card.active h3,
.service-card.active p {
  color: var(--white);
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-choose-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-card {
  padding: 35px 20px;
  background: var(--white);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgb(26, 50, 99);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

/* First card - blue background */
.stat-card:first-child {
  background: var(--primary-blue);
}

.stat-card:first-child .stat-icon {
  color: var(--white);
}

.stat-card:first-child .stat-number {
  color: var(--white);
}

.stat-card:first-child .stat-label {
  color: rgba(255, 255, 255, 0.8);
}

.stat-icon {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 18px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: rgb(26, 50, 99);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-gray);
}

/* ========================================
   About Section
   ======================================== */
.about-section {
  background: var(--bg-light);
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content {
  padding-left: 20px;
}

.about-slogan {
  font-size: 16px;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 18px;
}

.about-text {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 25px;
  font-size: 14px;
}

.about-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 14px;
}

.feature-item i {
  color: rgb(26, 50, 99);
  font-size: 16px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 25px;
  border: 1px solid var(--text-gray);
  color: var(--text-gray);
  font-size: 13px;
  transition: var(--transition);
}

.btn-more:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* ========================================
   Customer Service Section
   ======================================== */
.customer-service-section {
  background: var(--primary-blue);
  position: relative;
}

.customer-service-section .section-header.light .section-title,
.customer-service-section .section-header.light .section-subtitle {
  color: var(--white);
}

.customer-service-section .section-header.light .section-subtitle {
  opacity: 0.8;
}

.service-hexagons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.hexagon-card {
  padding: 35px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}

.hexagon-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid rgba(255, 255, 255, 0.3);
}

.hexagon-card:last-child::after {
  display: none;
}

.hexagon-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hexagon-card.highlight {
  background: rgb(26, 50, 99);
}

.hexagon-icon {
  margin-bottom: 20px;
}

.hex-number {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 8px;
  display: block;
}

.hex-icon {
  font-size: 32px;
  margin-bottom: 5px;
}

.hexagon-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hexagon-card p {
  font-size: 12px;
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

/* ========================================
   News Section
   ======================================== */
.news-section {
  background: var(--bg-light);
}

.news-wrapper {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.news-left {
  flex: 0 0 55%;
}

.news-right {
  flex: 1;
  position: relative;
}

.news-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card.fixed-news .news-image {
  height: 220px;
}

.news-card.small {
  flex: 1;
}

.news-card.small .news-image {
  height: 160px;
}

.news-image {
  position: relative;
  overflow: hidden;
}

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

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

.news-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-blue);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 5px;
  text-align: center;
  line-height: 1.2;
}

.news-date .day {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.news-date .month {
  display: block;
  font-size: 10px;
  opacity: 0.8;
}

.news-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.5;
}

.news-card p {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 12px;
  flex: 1;
}

.news-link {
  color: rgb(26, 50, 99);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}

.news-row {
  display: flex;
  gap: 20px;
  height: 100%;
}

.news-row .news-card {
  margin-bottom: 0;
}

/* News Controls */
.news-control {
  position: absolute;
  top: -45px;
  width: 36px;
  height: 36px;
  border: 2px solid rgb(26, 50, 99);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(26, 50, 99);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.news-control.prev {
  right: 55px;
}

.news-control.next {
  right: 10px;
}

.news-control:hover {
  background: rgb(26, 50, 99);
  color: var(--white);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: #666;
  color: var(--white);
}

.footer-main {
  padding: 50px 0 85px;
}

.footer-brand .brand-name {
  width: 220px;
}

.footer-brand .brand-slogan {
  font-size: 1.2rem;
  opacity: 0.8;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--white);
}

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

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

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

.footer-links a:hover {
  color: rgb(26, 50, 99);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
}

.contact-info i {
  color: rgb(26, 50, 99);
  font-size: 14px;
  margin-top: 2px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icon {
  width: 42px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon  img{
    height: 32px;
}
.social-icon:hover {
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.15);
  padding: 18px 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 42px;
  height: 42px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

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

.back-to-top:hover {
  background: rgb(26, 50, 99);
}

/* ========================================
   Scroll Animations
   ======================================== */
.scroll-animate {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation Delays */
.stats-grid .scroll-item:nth-child(1) { transition-delay: 0.1s; }
.stats-grid .scroll-item:nth-child(2) { transition-delay: 0.2s; }
.stats-grid .scroll-item:nth-child(3) { transition-delay: 0.3s; }
.stats-grid .scroll-item:nth-child(4) { transition-delay: 0.4s; }

.service-hexagons .scroll-item:nth-child(1) { transition-delay: 0.1s; }
.service-hexagons .scroll-item:nth-child(2) { transition-delay: 0.2s; }
.service-hexagons .scroll-item:nth-child(3) { transition-delay: 0.3s; }
.service-hexagons .scroll-item:nth-child(4) { transition-delay: 0.4s; }

/* Banner Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(480px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }





/* Reviews Section */
.reviews-section {
  padding: 4rem 0;
  background: #fff;
}

.reviews-header {
}

.reviews-stars {
  display: flex;
  gap: 0.25rem;
  justify-content: left;
}

.reviews-stars i,
.rating-score-stars i,
.review-stars i {
  color: #fbc92e;
  font-size: 1.25rem;
 
}

.reviews-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #666666;
  margin-bottom: 0.5rem;
  text-align: left;
}

.reviews-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0 auto;
    text-align: left;
}

/* Rating Breakdown */
.rating-breakdown {
  margin-bottom: 3rem;
}

.rating-overview {
  text-align: center;
  padding: 1rem 0;
  display: flex;
}

.rating-score {
  font-size: 1.1rem;
  font-weight: 800;
  color: #666;
  line-height: 2rem;
  display: block;

}

.rating-score-stars {
  display: flex;
  gap: 0.2rem;
  justify-content: center;
  line-height: 2rem;
  margin: 0 8px;
}

.rating-score-stars i {
  font-size: 1.1rem;
}

.rating-count {
  font-size: 0.875rem;
  line-height: 2rem;
  color: #888;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-bar-label {
  font-size: 0.8rem;
  color: #666;
  font-weight: 600;
  min-width: 30px;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.rating-bar-label i {
  font-size: 0.55rem;
  color: var(--accent);
}

.rating-bar-track {
  flex: 1;
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: #000;
  border-radius: 5px;
  transition: width 0.4s ease;
}

.rating-bar-count {
  font-size: 0.8rem;
  color: #888;
  min-width: 28px;
  text-align: right;
}

.review-sort {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  width: 150px;
  float: right;
}

.sort-label {
  font-size: 0.7rem;
  line-height: 2rem;
  color: #999;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sort-select {
  min-width: 140px;
  font-size: 0.8rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  line-height: 1.5rem;
}

/* Reviews with Media */
.reviews-media-section {
  margin-bottom: 3rem;
}

.reviews-media-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 1rem;
}

.media-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #e0e0e0;
  border-radius: 10px;
}
.media-placeholder img{
  width: 100%;
  aspect-ratio: 1;
}

/* Review List */
.review-list {
  display: flex;
  flex-direction: column;
}

.review-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
}

.review-item:last-child {
  border-bottom: none;
}

.review-top-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.review-stars {
  display: flex;
  gap: 0.15rem;
}

.review-stars i {
  font-size: 1rem;
}

.review-meta {
    width: 150px;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.review-right{
    flex-grow: 1; 
}

.review-author {
  font-weight: 700;
  color: #666;
  font-size: 1.4rem;
}

.review-product {
  color: #888;
  font-size: 0.875rem;
}

.review-date {
  color: #aaa;
  font-size: 0.8rem;
}

.review-badge {
    display: flex;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: #333;
    margin-bottom: 0.75rem;
    justify-content: space-between;
}

.review-badge i {
  color: var(--accent);
  font-size: 0.85rem;
}

.review-body {
  font-size: 0.92rem;
  color: #999;
  line-height: 1.7;
}



.accordion-header{
    border: 1px solid #ddd;
}



/* ---------- Product Detail Page ---------- */
.product-detail-section {
    margin-top: 130px;
  padding: 40px 0 60px;
}

.media-gallery .main-media {
  background-color: var(--color-secondary);
  border-radius: var(--radius-lg);
    aspect-ratio: 100 / 75;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 16px;
  overflow: hidden;
}

.media-gallery .thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.media-gallery .thumb-item {
  background-color: var(--color-secondary);
  border-radius: var(--radius);
    aspect-ratio: 100 / 75;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.media-gallery .thumb-item:hover,
.media-gallery .thumb-item.active {
  border-color: var(--color-accent);
}

.media-gallery .show-more-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  color: var(--color-text-light);
  font-size: 0.85rem;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-top: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.media-gallery .show-more-btn:hover {
  background-color: var(--color-bg-light);
}

/* Product Info Panel */
.product-info-panel {
  padding-left: 30px;
}

.product-info-panel .product-brand {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info-panel .product-model {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.product-info-panel .product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.product-info-panel .product-rating .stars {
  color: var(--color-accent);
  font-size: 0.9rem;
}

.product-info-panel .product-rating .review-count {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.product-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.product-tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--color-text-light);
  cursor: pointer;
  transition: var(--transition);
}

.product-tag:hover,
.product-tag.active {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: var(--color-green);
  font-weight: 500;
}

.price-block {
  margin-bottom: 16px;
}

.price-block .original-price {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.price-block .current-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #23506d;
}

.price-block .similar-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #999;
}

.price-block .suggested-retail-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #006fba;
}
.price-block .p1{
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
    margin-top: 10px;
}
.price-block .p2{
    color: #666;
    font-size: 0.9rem;
}




.price-block .save-badge {
  display: inline-block;
  background-color: #23506d;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  margin-left: 8px;
}

.payment-info {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 20px;
}

.payment-info .weekly-price {
  font-weight: 600;
  color: #666;
}

.buy-channels {
  margin-bottom: 20px;
}

.buy-channels a {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  background: #fff;
  margin-bottom: 10px;
}
.buy-channels a img{
    max-width: 200px;
}

.product-trust-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.product-trust-badges .trust-badge {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.3;
  min-width: 0;
}

.product-trust-badges .trust-badge img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.product-trust-badges .trust-badge span {
  overflow-wrap: break-word;
  word-break: break-word;
}
.product-description {
  margin-bottom: 24px;
}

.product-description h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-description p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 10px;
}

.btn-download {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

/* Product Detail Accordion */
.detail-accordion .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  background-color: var(--color-bg-light);
  border: none;
}

.detail-accordion .accordion-button:not(.collapsed) {
  background-color: var(--color-bg-light);
  color: var(--color-primary);
}

.detail-accordion .accordion-body {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Product Detail Video Section */
.detail-video-section {
  background-color: var(--color-bg-light);
}

.detail-video-section .video-container {
  background-color: var(--color-secondary);
  border-radius: var(--radius-lg);
  aspect-ratio: 1000 / 300;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Feature Tabs */
.feature-tabs .nav-pills .nav-link {
  color: var(--color-text-light);
  font-weight: 600;
  border-radius: 0;
  padding: 12px 24px;
  border-bottom: 3px solid transparent;
}

.feature-tabs .nav-pills .nav-link.active {
  background: none;
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
}

.feature-card .feature-img {
  background-color: var(--color-accent);
  border-radius: var(--radius);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card .feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #666;
}





/* ========================================
   Responsive Styles
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
    
  .logo-text{
    color: var(--white);
  }
  .header-nav{
    background: var(--primary-blue);
  }
  .header-nav .navbar {
    max-width: 100%;
    background: var(--primary-blue);
  }
  
  .navbar-open{
      position: relative;
      right:275px;
  }
  .video-introduce{
    width: 160px;
    margin-left: -80px;
    bottom: 30px;
  }
  .video-introduce-item {
    width: 160px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
}
.banner-menu-box{
    gap:10px;
    padding-left: 10px;
    padding-right: 10px;
}
  
.banner-menu-box li a{
    font-size: 13px;
}
  
  .header-nav .navbar-collapse {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--primary-blue);
    padding: 0px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  }
  
  .header-nav .navbar-collapse.show {
    right: 0;
  }
  
  .mobile-menu-overlay.active {
    display: block;
  }
  .hamburger-icon span{
      background: var(--white);
  }
  .navbar-toggler{
    color: var(--white);
  }
  
  .navbar-toggler:focus{
      
    box-shadow:unset;
  }
  
  
  
  .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding-left: 15%;
  }
  
  .nav-link {
    color: var(--white) !important;
    padding: 15px 0 !important;
  }
  
  /* Disable flip effect on mobile */
  .nav-text-wrap {
    height: auto;
    overflow: visible;
  }
  .nav-normal {
    color: var(--white) !important;
    transform: none !important;
  }
  
  .nav-hover {
    display: none;
  }
  
  .nav-link:hover .nav-normal {
    color: rgb(26, 50, 99);
  }
  
  .dropdown-menu {
    position: static;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    padding-left: 15px;
  }
  
  .dropdown-item {
    color: var(--white);
    overflow: visible;
  }
  
  .dropdown-item .dropdown-indicator {
    display: none;
  }
  
  .dropdown-item:hover {
    background: rgba(0, 0, 0, 0.2);
    padding-left: 20px;
    color: rgb(26, 50, 99);
  }
  
  .nav-actions {
    display: none;
  }
  
  .banner-slide {
    height: 780px;
    min-height: 450px;
  }
  
  .banner-title {
    font-size: 32px;
  }
  
  .banner-subtitle {
    font-size: 18px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .service-hexagons {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .hexagon-card::after {
    display: none;
  }
  
  .about-content {
    padding-left: 0;
    margin-top: 35px;
  }
  
  .news-control.prev {
    right: 55px;
  }
  
  .news-control.next {
    right: 10px;
  }
}

/* Mobile */
@media (max-width: 767px) {
    .about-title-icon{
        padding: 0;
        font-size: 16px;
    }
    
    .newest{
        width: 100%;
    }
    .newest-t2{
        font-size: 13px;
    }
    .newest-btn{
        padding: 0 10px;
        line-height: 2rem;
    }
    
    .newest-btn a{
        font-size: 1rem;
    }
    .alpine-t3{
        padding-bottom: 30px;
    }
    .alpine-btn{
        padding: 0 10px;
        line-height: 2rem;
    }
    
    .alpine-btn a{
        font-size: 1rem;
    }
    .alpine-t4{
        margin-bottom: 20px;
    }
    
  section {
    padding: 30px 0;
  }
  
  .section-header {
    margin-bottom: 35px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .section-subtitle {
    font-size: 13px;
  }
  
  .banner-title {
    font-size: 26px;
  }
  
  .banner-subtitle {
    font-size: 16px;
  }
  
  .banner-desc {
    font-size: 11px;
    letter-spacing: 2px;
  }
  
  .banner-tags {
    gap: 10px;
  }
  
  .tag-item {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .banner-slide {
    height: 600px;
    min-height: 400px;
  }
  
  .search-wrapper {
    flex-direction: column;
  }
  
  .search-btn {
    width: 100%;
    text-align: center;
  }
  
  .order-search-bar {
    padding: 20px 0;
    margin-top: -25px;
  }
  
  .transport-icons {
    gap: 25px;
  }
  
  .transport-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
  
  .service-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .service-card {
    width: 100%;
    max-width: 320px;
    padding: 25px 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-card {
    padding: 25px 15px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-icon {
    font-size: 28px;
  }
  
  .service-hexagons {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .hexagon-card {
    padding: 25px 20px;
  }
  
  .footer-main {
    padding: 40px 0 35px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .copyright {
    font-size: 10px;
  }
  
  .slide-counter {
    top: auto;
    bottom: 70px;
    right: 15px;
    transform: none;
  }
  
  .banner-controls {
    bottom: 20px;
  }
  
  .banner-control {
    padding: 6px 15px;
    font-size: 11px;
  }
  
  .news-control.prev,
  .news-control.next {
    top: -40px;
  }
  
  .news-control.prev {
    right: 50px;
  }
  
  .news-control.next {
    right: 5px;
  }
  
  .news-wrapper {
    flex-direction: column;
  }
  
  .news-left {
    flex: none;
  }
  
  .news-card.fixed-news .news-image {
    height: 180px;
  }
  
  .news-card.small .news-image {
    height: 140px;
  }
  
  .news-row {
    flex-direction: column;
    gap: 15px;
  }
}

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 0;
    left: 10px;
    right: 80px;
    height: 40px;
    background: #000;
    z-index: 2000;
    display: none;
    padding: 0 5px 0 2%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-overlay.active {
  display: inline-block;
  align-items: center;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.search-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.search-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.search-icon i {
  font-size: 20px;
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  min-width: 0;
}

.search-input {
  flex: 1;
  height: 40px;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 0 10px;
  background: transparent;
  min-width: 0;
  color: #fff;
}

.search-input::placeholder {
  color: #999;
}

.search-close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  transition: color 0.2s;
}

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

/* Search Overlay Background */
.search-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  display: none;
}

.search-backdrop.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header-top-left-sp2{
        display: none;
    }
    .header-top-item-2,.header-top-item-3{
        display: none;
    }
  .logo-text {
    width: 80px;
  }
  
  .banner-title {
    font-size: 24px;
  }
  
  .banner-slide {
    min-height: 350px;
  }
  
  .carousel-indicators {
    bottom: 20px;
  }
  
  .slide-counter {
    display: none;
  }
  
  .banner-controls {
    display: none;
  }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open,
body.search-open {
  overflow: hidden;
}
