/*
Theme Name: 简壹广告-发光字外贸站
Author: 简壹广告
Version: 1.0
Description: 广告标识/发光字定制外贸独立站主题
Text Domain: jianyi-sign-theme
*/

/* 原有所有CSS样式 */
@layer utilities {
  .toggle-checkbox:checked { right: 0; border-color: #8B0000; }
  .toggle-checkbox:checked + .toggle-label { background-color: #8B0000; }
  .page { display: none; }
  .page.active { display: block; }
  .product-img { transition: opacity 0.6s ease-in-out; }
  .text-shadow-sm { text-shadow: 0 1px 2px rgba(0,0,0,0.05); }
  .hover-scale { transition: transform 0.4s ease; }
  .hover-scale:hover { transform: scale(1.02); }
  /* 购物车动画 */
  .cart-animation {
    position: fixed;
    z-index: 999;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: #8B0000; border-radius: 3px; }
.bg-gradient-jianyi {
  background: linear-gradient(120deg, #F9F6F0 0%, #FFFFFF 100%);
}
/* 在线客服悬浮样式 */
.customer-service {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 998;
  background: #8B0000;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.customer-service:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(139, 0, 0, 0.4);
}
.service-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 998;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 16px;
  width: 280px;
  display: none;
}
/* 新增：确保导航栏和语言菜单在最顶层 */
.nav-container {
  position: relative;
  z-index: 1000; /* 高于其他内容的层级 */
}
#langSelect {
  position: relative;
  z-index: 1000;
}
#currencySelect {
  position: relative;
  z-index: 1000;
}