/* ============================================
   卡米诺手作 · 咖啡 — Camino Handmade & Coffee
   配色：浅粉 + 淡蓝 清爽系列
   图片：Unsplash 高质量摄影 + 回退渐变色
   动效：粒子 / 倾斜 / 计数器 / 发光 / 进度条
   ============================================ */

/* ===== CSS Variables ===== */
:root {
  --pink-lightest: #FFF5F5;
  --pink-lighter:  #FEF0F0;
  --pink-light:    #FCE4E4;
  --pink:          #F2C9C9;
  --pink-deep:     #E8B4B8;
  --pink-dark:     #D4959A;
  --blue-lightest: #F5F8FF;
  --blue-lighter:  #F0F4FF;
  --blue-light:    #E0EAF8;
  --blue:          #C9DFF2;
  --blue-deep:     #B0C8E0;
  --blue-dark:     #8AA0B8;
  --cream:         #FFFBF5;
  --white:         #FFFFFF;
  --text:          #4A4A4A;
  --text-light:    #787878;
  --text-lighter:  #A0A0A0;
  --gold:          #C8A96E;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.10);
  --shadow-pink:   0 4px 20px rgba(232,180,184,0.25);
  --font-cn:       'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display:  'Playfair Display', 'Noto Sans SC', serif;
  --navbar-height: 72px;
  --radius-sm:     12px;
  --radius-md:     16px;
  --radius-lg:     24px;
}

/* ===== GLOBAL ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--navbar-height); }
body {
  font-family: var(--font-cn); color: var(--text);
  background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
::selection { background: var(--pink-light); color: var(--pink-dark); }
a { text-decoration: none; color: inherit; }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--pink-deep), var(--blue-deep), var(--pink));
  width: 0%; transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ===== FLOATING PARTICLES ===== */
.particles-container {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: particleFloat linear infinite;
  opacity: 0;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1.5) rotate(720deg); opacity: 0; }
}

/* ===== SECTION HELPERS ===== */
.section-padding { padding: 100px 0; }
.section-header { margin-bottom: 20px; }
.section-label {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 4px;
  color: var(--text-lighter); margin-bottom: 6px; font-weight: 500;
}
.section-title {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
  color: var(--text); margin-bottom: 12px; letter-spacing: 1px;
}
.section-desc {
  color: var(--text-light); font-size: 1.05rem; max-width: 500px;
  margin: 16px auto 0; line-height: 1.7;
}
.section-divider {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--pink-deep), var(--blue-deep));
  border-radius: 3px; margin: 0 auto;
}
.bg-light-pink  { background: var(--pink-lightest); }
.bg-light-blue  { background: var(--blue-lightest); }
.bg-light-cream { background: var(--cream); }

/* ===== REVEAL TEXT ANIMATION ===== */
.reveal-text {
  animation: revealText 1s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}
@keyframes revealText {
  from { opacity: 0; transform: translateY(20px); letter-spacing: 8px; }
  to   { opacity: 1; transform: translateY(0); letter-spacing: 4px; }
}
.reveal-divider {
  animation: revealDivider 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}
@keyframes revealDivider {
  from { width: 0; opacity: 0; }
  to   { width: 50px; opacity: 1; }
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--blue-dark) 50%, var(--pink-deep) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

/* ===== NAVBAR ===== */
#mainNav {
  background: rgba(255,255,255,0.85); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.35s ease; height: var(--navbar-height); z-index: 1030;
}
#mainNav.scrolled { background: rgba(255,255,255,0.96); box-shadow: var(--shadow-sm); }
.navbar-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.3rem; color: var(--text) !important; }
.brand-icon { font-size: 1.6rem; line-height: 1; animation: brandPulse 3s ease-in-out infinite; }
@keyframes brandPulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.15); }
}
.navbar-nav .nav-link {
  color: var(--text) !important; font-size: 0.9rem; font-weight: 500;
  padding: 8px 16px !important; position: relative; transition: color 0.3s;
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  transform: scaleX(0); transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link:hover { color: var(--pink-dark) !important; }

/* ===== HERO ===== */
.hero-section { position: relative; overflow: hidden; }
.heroSwiper { width: 100%; height: 100vh; }
.hero-slide { position: relative; overflow: hidden; }

.hero-bg-img-wrap {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #F8E8E8, #E8F0F8, #F0E0E8);
}
.hero-bg-img-wrap.fallback-coffee {
  background: linear-gradient(135deg, #E8D5B0, #D4C4A0, #C8B8A0, #E0D5C0);
}
.hero-bg-img-wrap.fallback-bakery {
  background: linear-gradient(135deg, #FDF0D8, #F8E4C0, #FCE8C8, #FDF4E0);
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  position: relative; z-index: 1;
  animation: heroZoomOut 6s ease-out;
}
@keyframes heroZoomOut {
  from { transform: scale(1.15); }
  to   { transform: scale(1); }
}
.swiper-slide-active .hero-bg-img {
  animation: heroZoomOut 6s ease-out;
}

/* Shimmer loading */
.hero-img-shimmer {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  animation: shimmer 1.8s ease-in-out infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(135deg,
    rgba(255,245,245,0.72) 0%,
    rgba(245,248,255,0.68) 50%,
    rgba(255,255,255,0.60) 100%);
}
.hero-overlay { position: relative; z-index: 4; }
.hero-text-col { padding-top: 40px; }
.hero-subtitle {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 6px;
  color: var(--pink-dark); margin-bottom: 16px; font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.hero-subtitle-deco {
  display: inline-block; width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--pink-deep), transparent);
  animation: decoStretch 2s ease-in-out infinite;
}
@keyframes decoStretch {
  0%,100% { width: 40px; }
  50%     { width: 60px; }
}
.hero-title {
  font-family: var(--font-display); font-size: 4rem; font-weight: 700;
  line-height: 1.15; margin-bottom: 24px; letter-spacing: 1px;
}
.hero-desc {
  font-size: 1.1rem; color: var(--text-light); line-height: 1.8;
  margin-bottom: 32px; max-width: 400px;
}

/* Hero circle */
.hero-feature-img { display: flex; justify-content: center; align-items: center; }
.hero-circle-img {
  width: 340px; height: 340px; border-radius: 50%;
  object-fit: cover; position: relative; z-index: 1;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  animation: float 3.5s ease-in-out infinite;
  border: 6px solid rgba(255,255,255,0.8);
  transition: transform 0.5s ease;
}
.fallback-circle-coffee {
  background: linear-gradient(135deg, #E8D5B0, #D4C4A0, #C8B8A0, #E0D5C0);
  width: 340px; height: 340px; border-radius: 50%; border: 6px solid rgba(255,255,255,0.8);
  box-shadow: 0 12px 48px rgba(0,0,0,0.12); animation: float 3.5s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center; font-size: 100px;
}
.fallback-circle-bakery {
  background: linear-gradient(135deg, #FDF0D8, #F8E4C0, #FCE8C8, #FDF4E0);
  width: 340px; height: 340px; border-radius: 50%; border: 6px solid rgba(255,255,255,0.8);
  box-shadow: 0 12px 48px rgba(0,0,0,0.12); animation: float 3.5s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center; font-size: 100px;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-18px); }
}

/* Buttons */
.btn-hero {
  background: linear-gradient(135deg, var(--pink-deep), var(--pink));
  color: white; border: none; padding: 14px 36px; border-radius: 50px;
  font-weight: 600; font-size: 1rem; letter-spacing: 1px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 18px rgba(232,180,184,0.35);
  position: relative; overflow: hidden;
}
.btn-hero::after {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
  animation: btnShine 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShine {
  0%,100% { transform: translate(-30%, -30%) scale(0.5); opacity: 0; }
  50%     { transform: translate(30%, 30%) scale(1.5); opacity: 0.6; }
}
.btn-glow {
  animation: btnGlow 3s ease-in-out infinite;
}
@keyframes btnGlow {
  0%,100% { box-shadow: 0 4px 18px rgba(232,180,184,0.35); }
  50%     { box-shadow: 0 4px 35px rgba(232,180,184,0.65), 0 0 0 8px rgba(232,180,184,0.08); }
}
.btn-hero:hover {
  transform: translateY(-2px); color: white;
  box-shadow: 0 8px 30px rgba(232,180,184,0.5);
  background: linear-gradient(135deg, var(--pink-dark), var(--pink-deep));
}
.btn-outline-pink {
  border: 2px solid var(--pink); color: var(--pink-dark);
  padding: 12px 30px; border-radius: 50px; font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-pink:hover {
  background: var(--pink-light); border-color: var(--pink-deep); color: var(--pink-dark);
}

/* Hero nav */
.hero-pagination .swiper-pagination-bullet {
  width: 10px; height: 10px; background: var(--pink); opacity: 0.5;
}
.hero-pagination .swiper-pagination-bullet-active {
  opacity: 1; width: 28px; border-radius: 5px;
  background: linear-gradient(90deg, var(--pink-deep), var(--blue-deep));
}
.hero-nav { color: var(--pink-dark) !important; opacity: 0.6; transition: all 0.3s; }
.hero-nav:hover { opacity: 1; transform: scale(1.2); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center;
  gap: 8px; color: var(--text-lighter); font-size: 0.75rem; letter-spacing: 3px;
  animation: fadeInUp 1s ease 0.8s both;
}
.scroll-mouse { width: 24px; height: 38px; border: 2px solid var(--text-lighter); border-radius: 12px; position: relative; }
.scroll-dot {
  width: 4px; height: 8px; background: var(--pink); border-radius: 2px;
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { top: 8px; opacity: 1; } 100% { top: 24px; opacity: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===== 3D TILT CARD ===== */
.tilt-card {
  transition: transform 0.2s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d; perspective: 1000px;
}
.tilt-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}

/* ===== CATEGORY CARDS ===== */
.category-card {
  display: block; background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.category-img-wrap { position: relative; overflow: hidden; }
.category-img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.category-card:hover .category-img { transform: scale(1.1); }
.category-overlay {
  position: absolute; inset: 0;
  background: rgba(232,180,184,0.82);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s ease;
}
.category-card:hover .category-overlay { opacity: 1; }
.category-link-text { color: white; font-weight: 600; font-size: 1rem; letter-spacing: 1px; }
.category-info { padding: 18px 16px; text-align: center; }
.category-info h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.category-info p  { font-size: 0.83rem; color: var(--text-light); margin: 0; }

/* ===== SWIPER IMAGE CLASSES ===== */
.swiper-img-main {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius-lg); display: block;
}
.swiper-img-detail {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-md); display: block;
}
.swiper-img-bread {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius-md); display: block;
}
.swiper-img-shop {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius-lg); display: block;
}
.showcase-img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block;
  border: 3px solid var(--white);
  transition: all 0.4s ease;
}
.showcase-img:hover {
  transform: scale(1.05); box-shadow: var(--shadow-md);
  z-index: 2; position: relative;
}
.productMainSwiper, .productDetailSwiper, .dessertShowcaseSwiper {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.product-slide-label {
  text-align: center; margin-top: 22px;
  font-size: 1.05rem; color: var(--text); font-weight: 500;
}

/* ===== GALLERY THUMBNAILS ===== */
.gallery-thumb {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; transition: all 0.35s ease;
  box-shadow: var(--shadow-sm); background: var(--white);
}
.gallery-thumb:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gallery-thumb-img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  display: block; transition: transform 0.5s ease;
}
.gallery-thumb:hover .gallery-thumb-img { transform: scale(1.1); }
.gallery-thumb-info {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px; background: var(--white);
}
.thumb-name  { font-size: 0.9rem; font-weight: 500; color: var(--text); }
.thumb-price { font-size: 0.9rem; font-weight: 700; color: var(--pink-dark); }

/* ===== BREAD CARDS ===== */
.bread-slide-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}
.bread-slide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bread-slide-info { padding: 18px 16px; text-align: center; }
.bread-slide-info h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.bread-slide-info p  { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ===== PRODUCT DETAIL TEXT ===== */
.product-detail-text { padding: 20px; }
.product-detail-text h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 12px; font-weight: 700; }
.product-detail-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.badge-pink { background: var(--pink-light); color: var(--pink-dark); font-weight: 500; padding: 6px 14px; border-radius: 50px; font-size: 0.8rem; }
.product-features { list-style: none; padding: 0; margin: 0; }
.product-features li { padding: 6px 0; font-size: 0.92rem; color: var(--text); }
.product-features li i { color: var(--pink-deep); margin-right: 8px; }

/* ===== SHOP SECTION ===== */
.shop-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.shop-slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 50px 30px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: white; border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.shop-slide-caption h4 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 4px; font-weight: 600; }
.shop-slide-caption p { font-size: 0.9rem; margin: 0; opacity: 0.92; }

/* ===== SWIPER OVERRIDES ===== */
.swiper-pagination-bullet { background: var(--pink); opacity: 0.4; transition: all 0.3s; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--pink-deep); }
.swiper-button-next, .swiper-button-prev {
  color: var(--pink-dark) !important; opacity: 0.5; transition: all 0.3s;
}
.swiper-button-next:hover, .swiper-button-prev:hover { opacity: 1; transform: scale(1.2); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.6rem !important; font-weight: 700; }
.shop-pagination .swiper-pagination-bullet { background: var(--white); }
.shop-nav { color: var(--white) !important; }

/* ===== ABOUT ===== */
.about-img-wrap { position: relative; }
.about-main-img {
  width: 100%; aspect-ratio: 4/3.5; object-fit: cover;
  border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute; top: -16px; left: -16px;
  width: 120px; height: 120px;
  border: 4px solid var(--pink-light); border-radius: var(--radius-lg); z-index: -1;
  animation: accentPulse 4s ease-in-out infinite;
}
@keyframes accentPulse {
  0%,100% { border-color: var(--pink-light); }
  50%     { border-color: var(--pink); }
}
.about-text .section-title { font-size: 2.2rem; }
.about-text .section-divider { margin-left: 0; }
.about-intro { font-size: 1.1rem; }
.about-text p { color: var(--text-light); line-height: 1.9; font-size: 0.98rem; }
.about-stats { text-align: center; }
.stat-card {
  background: var(--white); padding: 20px 12px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-pink); }
.stat-card.counted { animation: statPop 0.6s cubic-bezier(0.25, 0.8, 0.25, 1.2); }
@keyframes statPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.stat-number {
  display: inline; font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--pink-dark); line-height: 1.2;
}
.stat-suffix {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--pink-dark);
}
.stat-label { display: block; font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

/* ===== PARALLAX DIVIDERS ===== */
.parallax-divider {
  position: relative; height: 320px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background-attachment: fixed; background-position: center;
  background-repeat: no-repeat; background-size: cover;
}
.parallax-1 { background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 50%, var(--pink-lighter) 100%); }
.parallax-2 { background: linear-gradient(135deg, #FDF0E0 0%, var(--pink-light) 40%, #FDF4E8 100%); }
.parallax-3 { background: linear-gradient(135deg, var(--blue-light) 0%, var(--pink-light) 60%, var(--blue-lighter) 100%); }
.parallax-content { text-align: center; z-index: 2; }
.parallax-quote {
  font-family: var(--font-display); font-size: 2rem; font-style: italic;
  color: var(--text); letter-spacing: 2px; line-height: 1.6; opacity: 0.85;
  animation: quoteFloat 4s ease-in-out infinite;
}
@keyframes quoteFloat {
  0%,100% { transform: translateY(0); opacity: 0.85; }
  50%     { transform: translateY(-6px); opacity: 1; }
}

/* ===== FOOTER ===== */
.footer-section { background: #2D2D2D; color: #CCC; padding: 80px 0 40px; position: relative; }
.footer-brand h3 { font-family: var(--font-display); color: var(--white); font-size: 1.5rem; margin: 12px 0 6px; }
.brand-icon-lg { font-size: 3rem; display: block; line-height: 1; }
.footer-tagline { color: var(--pink); font-weight: 500; font-size: 0.9rem; letter-spacing: 2px; }
.footer-desc { color: #999; font-size: 0.9rem; margin-top: 12px; line-height: 1.7; }
.footer-heading {
  color: var(--white); font-size: 1.05rem; font-weight: 600;
  margin-bottom: 16px; position: relative; padding-bottom: 10px;
}
.footer-heading::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px; background: var(--pink); border-radius: 2px;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { padding: 5px 0; font-size: 0.9rem; color: #BBB; line-height: 1.7; }
.footer-list li i { color: var(--pink); }
.footer-link { color: #BBB; transition: color 0.3s; }
.footer-link:hover { color: var(--pink); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center;
  color: #CCC; font-size: 1.2rem; transition: all 0.3s ease;
}
.social-link:hover { background: var(--pink); color: var(--white); transform: translateY(-4px) rotate(8deg); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom p { color: #888; font-size: 0.85rem; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--pink-dark); z-index: 100;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all 0.35s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--pink); color: var(--white); transform: translateY(-4px) rotate(-8deg); box-shadow: var(--shadow-pink); }

/* ===== MODAL ===== */
.modal-content { border: none; border-radius: var(--radius-lg); overflow: hidden; }
.modal-header { padding: 16px 20px 0; }
.modal-body  { padding: 20px 30px 36px; }
.modal-product-img { border-radius: var(--radius-md); overflow: hidden; }
.modal-main-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-md); display: block; }
.modal-product-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; }
.modal-product-price { font-size: 1.6rem; font-weight: 700; color: var(--pink-dark); margin: 8px 0; }
.modal-product-rating i { color: #F0C040; font-size: 0.9rem; }
.modal-product-desc { color: var(--text-light); line-height: 1.8; }
.modalThumbSwiper { border-radius: var(--radius-sm); overflow: hidden; }
.modalThumbSwiper .swiper-slide { border-radius: var(--radius-sm); overflow: hidden; }
.modal-thumb-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-sm); display: block; }
.shop-modal-img { width: 100%; max-height: 65vh; object-fit: cover; border-radius: var(--radius-md); display: block; }

/* ===== IMAGE FALLBACK GRADIENTS (for onerror) ===== */
.img-fallback-coffee { object-fit: cover; background: linear-gradient(135deg, #E8D5B0, #D4C4A0, #C8B8A0, #E0D5C0); min-height: 100%; }
.img-fallback-cake   { object-fit: cover; background: linear-gradient(135deg, #FDE8EC, #F8D6E0, #FCE4E8, #FDE0E8); min-height: 100%; }
.img-fallback-bread  { object-fit: cover; background: linear-gradient(135deg, #FDF0D8, #F8E4C0, #FCE8C8, #FDF4E0); min-height: 100%; }
.img-fallback-dessert{ object-fit: cover; background: linear-gradient(135deg, #F5E8F0, #EDD8E8, #F8ECF4, #F0E0EC); min-height: 100%; }
.img-fallback-shop   { object-fit: cover; background: linear-gradient(135deg, #E8F0F5, #D8E8F0, #E0ECF4, #ECF4F8); min-height: 100%; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-title { font-size: 3.2rem; }
  .hero-circle-img, .fallback-circle-coffee, .fallback-circle-bakery { width: 260px; height: 260px; font-size: 70px; }
}
@media (max-width: 992px) {
  .section-padding { padding: 70px 0; }
  .section-title { font-size: 2rem; }
  .hero-title { font-size: 2.6rem; }
  .hero-desc { font-size: 1rem; }
  .hero-circle-img, .fallback-circle-coffee, .fallback-circle-bakery { width: 220px; height: 220px; font-size: 56px; }
  .hero-img-col { display: none; }
  .parallax-divider { height: 240px; }
  .parallax-quote { font-size: 1.5rem; }
  .about-img-accent { display: none; }
  .product-detail-text { padding: 10px 0 0; }
  .product-detail-text h3 { font-size: 1.4rem; }
}
@media (max-width: 768px) {
  .section-padding { padding: 50px 0; }
  .section-title { font-size: 1.7rem; }
  .section-label { font-size: 0.75rem; letter-spacing: 3px; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.7rem; letter-spacing: 4px; }
  .hero-circle-img, .fallback-circle-coffee, .fallback-circle-bakery { width: 180px; height: 180px; font-size: 44px; }
  .hero-text-col { text-align: center; }
  .hero-desc { max-width: none; font-size: 0.9rem; }
  .hero-bg-overlay { background: rgba(255,255,255,0.8); }
  .parallax-divider { height: 200px; }
  .parallax-quote { font-size: 1.2rem; letter-spacing: 1px; }
  .modal-body { padding: 16px 16px 24px; }
  .modal-product-title { font-size: 1.4rem; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
  .col-lg-15 { flex: 0 0 auto; width: 50%; }
}
@media (max-width: 576px) {
  .hero-title { font-size: 1.8rem; }
  .hero-circle-img, .fallback-circle-coffee, .fallback-circle-bakery { width: 150px; height: 150px; font-size: 34px; }
  .btn-hero { padding: 12px 28px; font-size: 0.9rem; }
  .scroll-indicator { display: none; }
  .parallax-divider { height: 160px; }
  .parallax-quote { font-size: 1.05rem; }
  .category-info h3 { font-size: 1rem; }
  .category-info p { font-size: 0.75rem; }
}

.col-lg-15 { flex: 0 0 auto; width: 20%; }

.btn:focus, .btn:active:focus, .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(232,180,184,0.25) !important;
}

img[loading="lazy"] { opacity: 0; transition: opacity 0.5s ease; }
img[loading="lazy"].loaded { opacity: 1; }
