/** Shopify CDN: Minification failed

Line 285:0 All "@import" rules must come first

**/
/* =====================================================
   JINYANHUA - Global Style Variables
   Premium & Elegant Style | Soft Colors + Breathing Feel
   ===================================================== */
:root {
  /* ==================== 核心色调 ==================== */
  --primary-color: #E8B4BC;        /* 柔雾玫瑰（恢复正确颜色） */
  --primary-light: #F5E1E4;        /* 浅玫瑰 */
  --primary-dark: #D49BA3;         /* 深玫瑰 */

  --accent-color: #C9A86C;         /* 香槟金 */
  --accent-light: #E8D5B5;         /* 浅香槟 */

  --bg-primary: #FFFFFF !important;           /* 纯白 */
  --bg-secondary: #FFFFFF !important;         /* 纯白 */
  --bg-card: #FFFFFF !important;              /* 纯白卡片 */

  --text-primary: #2D2D2D;         /* 深灰主文字 */
  --text-secondary: #6B6B6B;       /* 中灰副文字 */
  --text-light: #9A9A9A;           /* 浅灰说明文字 */

  /* ==================== 渐变色 全部改为纯白 ==================== */
  --gradient-rose: #FFFFFF;
  --gradient-gold: #FFFFFF;
  --gradient-soft: #FFFFFF;
  --gradient-hero: #FFFFFF;

  /* ==================== Typography ==================== */
  --font-display: 'Playfair Display', 'Outfit', serif;
  --font-body: 'Outfit', sans-serif;

  /* ==================== 间距 ==================== */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* ==================== 动画 ==================== */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* ==================== 阴影 ==================== */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 60px rgba(232, 180, 188, 0.12);

  /* ==================== 圆角 ==================== */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;
}

/* ==================== 强制全局背景纯白 【关键覆盖】 ==================== */
html,
body,
#MainContent,
.page-wrapper,
.page-container,
.main,
.shopify-section,
.section {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
}

/* ==================== 重置样式 ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary) !important;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==================== 通用类 ==================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== 按钮样式 ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ==================== 动画关键帧 ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ==================== 滚动动画类 ==================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ==================== 悬停效果 ==================== */
.hover-lift {
  transition: all var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.hover-scale {
  transition: transform var(--transition-base);
}

.hover-scale:hover {
  transform: scale(1.03);
}

/* ==================== 卡片样式 ==================== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-hover);
}

/* ==================== 分割线 ==================== */
.divider {
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: var(--radius-full);
  margin: var(--space-md) auto;
}

/* ==================== 响应式 ==================== */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* ==================== 字体引入 ==================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ==================== 页面加载渐入动画 ==================== */
@keyframes pageLoadIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  animation: pageLoadIn 0.6s ease-out forwards;
}

/* ==================== 按钮悬停微动增强 ==================== */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn:active {
  transform: translateY(-1px) scale(1.01);
}

/* ==================== 链接下划线动画 ==================== */
a:not(.btn) {
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width var(--transition-base);
}

a:not(.btn):hover::after {
  width: 100%;
}

a:not(.btn):hover {
  color: var(--primary-dark);
}

/* ==================== 图片懒加载淡入 ==================== */
img {
  opacity: 1;
  transition: opacity var(--transition-slow), transform var(--transition-smooth);
}

img.loading {
  opacity: 0;
}

img.loaded {
  opacity: 1;
}

img:hover {
  transform: scale(1.02);
}

/* ==================== 滚动条美化 ==================== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #ffffff;
}

/* ==================== 卡片悬停微动增强 ==================== */
.card,
.product-card,
.category-card,
.testimonial-card,
.gallery-item,
.video-card {
  transition: all var(--transition-base);
}

.card:hover,
.product-card:hover,
.category-card:hover,
.testimonial-card:hover,
.gallery-item:hover,
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* ==================== 按钮点击波纹效果 ==================== */
.btn {
  transform: translateY(0);
}

.btn:active {
  transform: translateY(2px) scale(0.98);
}

/* ==================== 输入框聚焦效果 ==================== */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(232, 180, 188, 0.2);
}

/* ==================== 页面区块依次加载动画 ==================== */
.section {
  opacity: 0;
  animation: sectionFadeIn 0.8s ease-out forwards;
}

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

.section:nth-child(1) { animation-delay: 0s; }
.section:nth-child(2) { animation-delay: 0.1s; }
.section:nth-child(3) { animation-delay: 0.2s; }
.section:nth-child(4) { animation-delay: 0.3s; }
.section:nth-child(5) { animation-delay: 0.4s; }
.section:nth-child(6) { animation-delay: 0.5s; }
.section:nth-child(7) { animation-delay: 0.6s; }
.section:nth-child(8) { animation-delay: 0.7s; }
.section:nth-child(9) { animation-delay: 0.8s; }

/* ==================== 加载指示器 ==================== */
.loading-shimmer {
  background: #fff;
  animation: shimmer 1.5s infinite;
}

/* ==================== 平滑滚动锚点 ==================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* ==================== 选中文字高亮 ==================== */
::selection {
  background: var(--primary-color);
  color: #fff;
}