/* ====================================================================
   فایل: style.css
   توضیح: استایل اصلی فروشگاه اکسسوری با تم برند فرم (مشکی + آبی + صورتی)

   ساختار این فایل به ترتیب زیره (برای پیدا کردن راحت‌تر بخش‌ها):
   1. تنظیمات پایه و متغیرهای رنگ (CSS Variables)
   2. ریست استایل‌های پیش‌فرض مرورگر
   3. هدر (Header)
   4. بنر هیرو (Hero Banner) + انیمیشن شناور
   5. بخش دسته‌بندی‌ها (Categories)
   6. بخش محصولات (Products Grid)
   7. بخش "چرا ما" (Features)
   8. فوتر (Footer)
   9. ریسپانسیو (Media Queries)
   ==================================================================== */


/* ====================================================================
   1. متغیرهای رنگ و تنظیمات پایه
   نکته آموزشی: با تعریف رنگ‌ها به صورت متغیر (variable)، اگه بعداً
   خواستی رنگ نئون آبی رو عوض کنی، فقط همینجا تغییرش میدی و توی کل
   سایت اعمال میشه. نیازی نیست هر جا که رنگ هست رو تک‌تک پیدا کنی.
   #6C1BDB
   ==================================================================== */
:root {
  /* ---- رنگ‌های پس‌زمینه (براساس پالت برند فرم) ---- */
  --bg-main:        #020810;                       /* مشکی عمیق با تُن آبی */
  --bg-card:        #041020;                       /* کمی روشن‌تر برای کارت‌ها */
  --bg-card-hover:  #072038;                       /* هاور روی کارت */
  --bg-header:      rgba(2, 8, 16, 0.90);          /* هدر با شفافیت */

  /* ---- رنگ‌های اصلی برند FORM ---- */
  --brand-pink:       rgb(240, 200, 139);                     /* صورتی/مجنتای برند */
  --brand-pink-light: #F0C88B;
  --brand-blue:       #1F79B8;                     /* آبی اصلی برند */
  --brand-blue-light: #6bbde8;
  --brand-cyan:       #6bbde8;                     /* آبی روشن‌تر (از پالت) */
  --brand-gold:       #FFD0A8;                     /* طلایی گرم برند */

  /* نام‌های قدیمی برای سازگاری با فایل‌های دیگه */
  --neon-purple:       var(--brand-pink);
  --neon-purple-light: var(--brand-pink-light);
  --neon-blue:         var(--brand-blue);
  --neon-blue-light:   var(--brand-blue-light);
  --neon-gold:         #FFB830;

  /* ---- رنگ‌های متن ---- */
  --text-primary:   #F0F8FF;
  --text-secondary: #7aaecf;
  --text-muted:     #3d6d90;

  /* ---- گرادینت‌ها ---- */
  --gradient-main: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-blue) 100%);
  --gradient-text: linear-gradient(90deg, var(--brand-blue-light) 0%, var(--brand-pink-light) 100%);
  --gradient-hero: linear-gradient(135deg, #F0C88B 0%, #1F79B8 60%, #020810 100%);

  /* ---- سایه‌های گلو ---- */
  --glow-purple: 0 0 20px rgb(0, 255, 255);
  --glow-blue:   0 0 20px rgba(31, 121, 184, 0.5);
  --glow-soft:   0 0 40px rgb(240, 200, 139);
/*rgb(0, 255, 251);*/
  /* ---- فاصله‌گذاری ---- */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* ---- انتقال‌ها ---- */
  --transition-fast: 0.2s ease;
  --transition-base: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ====================================================================
   2. ریست استایل‌های پیش‌فرض مرورگر
   نکته آموزشی: هر مرورگر یه سری استایل پیش‌فرض داره (مثلاً به لیست‌ها
   bullet point میده). با این ریست، یه نقطه شروع یکسان برای همه
   مرورگرها می‌سازیم تا کنترل کامل روی ظاهر داشته باشیم.
   ==================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* یعنی padding و border داخل عرض/ارتفاع المان حساب میشه، نه اضافه بر اون */
}

html {
  scroll-behavior: smooth; /* اسکرول نرم وقتی روی لینک‌های داخلی کلیک میشه */
}

body {
  font-family: 'Vazirmatn', Tahoma, sans-serif; /* فونت فارسی خوانا */
  background-color: var(--bg-main);
  color: var(--text-primary);
  direction: rtl; /* جهت متن راست‌به‌چپ برای فارسی */
  overflow-x: hidden; /* جلوگیری از اسکرول افقی ناخواسته به خاطر افکت‌های نوری */
  position: relative;
}

/* پس‌زمینه‌ی نقطه‌چین نوری ملایم پشت کل صفحه - فقط یه بافت ظریفه */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(255, 0, 168, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(31, 121, 184, 0.07) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  display: block;
}

/* اسکرول‌بار سفارشی برای هماهنگی با تم */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--gradient-main);
  border-radius: 10px;
}

/* کلاس کمکی برای محدود کردن عرض محتوا و وسط‌چین کردنش */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* استایل فوکوس برای دسترسی‌پذیری (Accessibility) - وقتی با کیبورد Tab میزنن مشخص باشه کجا هستن */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--neon-blue);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ====================================================================
   3. هدر (Header)
   ==================================================================== */
.site-header {
  position: sticky; /* هدر موقع اسکرول بالای صفحه می‌چسبه */
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  backdrop-filter: blur(16px); /* افکت شیشه‌ی مات پشت هدر */
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 238, 255, 0.2);  
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

/* --- نام/لوگوی فروشگاه --- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-purple);
  flex-shrink: 0;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

.logo-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- منوی دسته‌بندی وسط هدر --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.main-nav a:hover {
  color: var(--text-primary);
  background: #f0c88b2e;
}

.main-nav a.active {
  color: var(--text-primary);
}

/* خط زیر لینک فعال با گرادینت نئونی */
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 16px;
  left: 16px;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
  box-shadow: var(--glow-purple);
}

/* --- اکشن‌های سمت چپ هدر (ورود/عضویت، ارتباط با ما) --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-contact {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-contact:hover {
  color: var(--neon-blue-light);
}

/* دکمه اصلی ورود/عضویت با حاشیه‌ی گرادینتی نئونی */
.btn-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  background: linear-gradient(var(--bg-main), var(--bg-main)) padding-box,
              var(--gradient-main) border-box;
  border: 1.5px solid transparent;
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-auth:hover {
  box-shadow: var(--glow-soft);
  transform: translateY(-1px);
}

.btn-auth svg {
  width: 16px;
  height: 16px;
}

/* حالت "پروفایل من" وقتی کاربر وارد شده باشه - آواتار دایره‌ای */
.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  border-radius: 999px;
  background: #f0c88b00;
  /*border: 1px solid #F0C88B;*/
  transition: var(--transition-fast);
}

.user-profile:hover {
  background: #f0c88b2f;
}

.user-profile .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.user-profile span {
  font-size: 14px;
  font-weight: 600;
}

/* دکمه منوی همبرگری برای موبایل - پیش‌فرض مخفیه */
.mobile-menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #1F79B8;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-menu-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-primary);
}


/* ====================================================================
   4. بنر هیرو — طراحی جدید برند FORM
   پالت: صورتی #F0C88B · آبی #1F79B8 · مشکی #020810
   ==================================================================== */

/* ---- پس‌زمینه‌ی لایه‌ای ---- */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* blob صورتی گرم سمت راست */
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
}

.blob-pink {
  width: 520px; height: 520px;
  background: #F0C88B;
  top: -120px; right: -100px;
}

.blob-blue {
  width: 420px; height: 420px;
  background: #1F79B8;
  bottom: -80px; left: -80px;
}

/* شبکه‌ی نقطه‌ای ظریف */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 38px 38px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 440px;
  position: relative;
  z-index: 1;
}

/* ---- محتوای متنی ---- */
.hero-content {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-gold);
  background: rgba(255, 208, 168, 0.1);
  border: 1px solid rgba(255, 208, 168, 0.3);
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-pink);
  box-shadow: 0 0 8px var(--brand-pink);
  animation: pulse-dot 2s infinite;
}

.hero-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
}

.hero-title .highlight {
  background: linear-gradient(90deg, #F0C88B 0%, #1F79B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15.5px;
  line-height: 2;
  color: var(--text-secondary);
  max-width: 420px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.btn-primary {
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #f0c88b);
  box-shadow: 0 0 24px #f0c88b33;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px #1f78b8;
}

.btn-secondary {
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  border: 1.5px solid rgba(31, 121, 184, 0.45);
  background: rgba(31,121,184,0.07);
  transition: var(--transition-base);
  cursor: pointer;
  font-family: inherit;
}

.btn-secondary:hover {
  border-color: #F0C88B;
  background: #f0c88b36;
}

/* ---- آمار سریع ---- */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
  width: 100%;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(90deg, #F0C88B, #1F79B8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ---- عنصر بصری (سمت چپ) ---- */
.hero-visual {
  order: 1;
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* حلقه‌های مداری */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.ring-outer {
  width: 370px; height: 370px;
  border: 1px solid rgba(31,121,184,0.25);
  animation: spin-slow-reverse 28s linear infinite;
}

.ring-mid {
  width: 290px; height: 290px;
  border: 1px solid #f0c88b41;
  animation: spin-slow 18s linear infinite;
}

.hero-ring-dot {
  position: absolute;
  top: -5px;
  width: 10px; height: 10px;
  border-radius: 50%;
}

.dot-pink {
  background: #F0C88B;
  box-shadow: 0 0 14px #F0C88B, 0 0 28px #F0C88B;
}

.dot-blue {
  background: #1F79B8;
  box-shadow: 0 0 14px #1F79B8, 0 0 28px #1F79B8;
}

/* مرکز لوگو */
.hero-logo-center {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: shimmer-float 6s ease-in-out infinite;
}

.hero-logo-glow {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,121,184,0.25) 0%, rgba(31,121,184,0.15) 50%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.hero-logo-box {
  width: 180px; height: 180px;
  border-radius: 28px;
  background: rgba(4, 16, 32, 0.8);
  border: 1.5px solid rgba(31,121,184,0.25);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow:
    0 0 40px #f0c88b3f,
    0 0 80px rgba(31,121,184,0.15),
    inset 0 0 30px rgba(255,0,168,0.05);
}

.hero-logo-svg {
  width: 90px; height: 90px;
}

.hero-brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 4px;
  background: linear-gradient(90deg, #F0C88B, #1F79B8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-brand-name span {
  opacity: 0.7;
}

/* ذرات شناور */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: float-particle 8s ease-in-out infinite;
}

.p1 { width: 8px;  height: 8px;  background: #F0C88B; top: 12%; right: 16%; animation-delay: 0s;   box-shadow: 0 0 10px #F0C88B; }
.p2 { width: 5px;  height: 5px;  background: #1F79B8; top: 80%; right: 22%; animation-delay: 1.8s; box-shadow: 0 0 8px  #1F79B8; }
.p3 { width: 6px;  height: 6px;  background: #FFD0A8; top: 22%; left: 8%;   animation-delay: 3.2s; box-shadow: 0 0 8px  #FFD0A8; }
.p4 { width: 4px;  height: 4px;  background: #F0C88B; top: 88%; left: 16%;  animation-delay: 4.5s; }
.p5 { width: 7px;  height: 7px;  background: #1F79B8; top: 50%; left: 4%;   animation-delay: 2s;   box-shadow: 0 0 10px #1F79B8; }

/* ---- انیمیشن‌ها ---- */
@keyframes shimmer-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.02); }
}

@keyframes spin-slow {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

@keyframes spin-slow-reverse {
  from { transform: translate(-50%,-50%) rotate(360deg); }
  to   { transform: translate(-50%,-50%) rotate(0deg); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

@keyframes float-particle {
  0%, 100% { transform: translate(0, 0);      opacity: 0.6; }
  50%       { transform: translate(-8px, -18px); opacity: 1; }
}


/* ====================================================================
   5. بخش دسته‌بندی‌ها (Categories)
   ==================================================================== */
.section {
  padding: 64px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
}

.section-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
}

.section-subtitle {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-top: 6px;
}

.section-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--neon-blue-light);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.section-link:hover {
  color: var(--neon-blue);
  gap: 9px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* الان ۶ دسته‌بندی داریم (با «ست»)، پس ۶ ستون */
  gap: 16px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid #f0c88b38;
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-purple);
  background: var(--bg-card-hover);
  box-shadow: var(--glow-soft);
}

.category-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 181, 184, 0.12);
  transition: var(--transition-base);
}

.category-card:hover .icon-wrap {
  background: var(--gradient-main);
}

.category-card .icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--neon-blue-light);
  transition: var(--transition-base);
}

.category-card:hover .icon-wrap svg {
  stroke: white;
}

.category-card span {
  font-size: 14.5px;
  font-weight: 600;
}

/* دکمه‌ی «مشاهده همه محصولات» زیر گرید دسته‌بندی‌ها توی index.html */
.all-products-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.all-products-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}


/* ====================================================================
   6. بخش محصولات (Products Grid)
   ==================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}


/* ====================================================================
   6.۱ اسلایدر افقی محصولات (فقط توی index.html، برای «پرفروش‌ترین‌ها»
   و «جدیدترین محصولات» استفاده میشه)

   نکته‌ی آموزشی: به‌جای اینکه یه کلاس عمومی مثل .product-grid رو
   عوض کنیم (که اگه اینکارو می‌کردیم، گرید محصولات توی products.html
   و account.html هم خراب می‌شد)، یه کلاس اضافه‌ی مخصوص همین بخش
   ساختیم: .carousel-track. این کلاس با .product-grid ترکیب میشه
   (توی HTML: class="product-grid carousel-track") و چون بعد از
   .product-grid توی فایل CSS نوشته شده، قوانینش رو override می‌کنه.
   ==================================================================== */
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-grid.carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x proximity; /* proximity به‌جای mandatory، تا اسکرول با دست هم نرم باشه */
  scroll-behavior: smooth;
  padding: 4px 2px 12px;
  flex: 1;
  /* مخفی کردن اسکرول‌بار پیش‌فرض مرورگر (ظاهر تمیزتر، مثل فروشگاه‌های واقعی) */
  scrollbar-width: none; /* فایرفاکس */
  -ms-overflow-style: none; /* Edge قدیمی */
}

.product-grid.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.carousel-track .product-card {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
}

/* وقتی کاربر داره با موس/انگشت می‌کشه، اسکرول نرم (smooth) رو موقتاً
   خاموش می‌کنیم چون با حرکت آزاد دست تداخل ایجاد می‌کنه و کند حس میشه */
.carousel-track.is-dragging {
  scroll-behavior: auto;
  cursor: grabbing;
  user-select: none;
}

/* --- دکمه‌های فلش قبلی/بعدی --- */
.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 0, 168, 0.25);
  background: var(--bg-card);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 2;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.carousel-arrow:hover {
  border-color: var(--neon-blue);
  background: rgba(31, 121, 184, 0.12);
  color: var(--neon-blue-light);
}

.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(31, 120, 184, 0.127);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 121, 184, 0.4);
  box-shadow: var(--glow-soft);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(155deg, #1a0f33 0%, #170a2e 100%);
}

/* حالتی که برای محصول، عکس واقعی نداریم و به‌جاش از یک نمای
   نمادین (گرادینت + آیکون دسته‌بندی) استفاده می‌کنیم.
   نکته آموزشی: وقتی عکس واقعی محصولاتت رو داشتی، کافیه به‌جای
   این div.product-image-visual یک تگ <img src="آدرس عکس"> بذاری. */
.product-image-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-image-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 0, 170, 0), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(31, 121, 184, 0.3), transparent 55%);
}

.product-image-visual svg {
  width: 30%;
  height: 30%;
  stroke: rgba(243, 232, 255, 0.85);
  stroke-width: 1.3;
  filter: drop-shadow(0 0 16px rgba(31, 121, 184, 0.3));
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image-visual svg {
  transform: scale(1.1) rotate(-4deg);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--bg-main);
  background: var(--neon-gold);
  z-index: 2;
}

.product-badge.new {
  background: var(--neon-blue);
  color: var(--bg-main);
}

.product-favorite {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 1, 24, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition-fast);
}

.product-favorite:hover {
  background: rgba(255, 0, 168, 0.4);
}

.product-favorite svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-primary);
  transition: var(--transition-fast);
}

/* وقتی محصول به علاقه‌مندی‌ها اضافه شده باشه، این کلاس اضافه میشه:
   پس‌زمینه‌ی صورتی/طلایی برند + قلب پر (fill) به‌جای فقط خط دور آن */
.product-favorite.active {
  background: var(--brand-pink);
}

.product-favorite.active svg {
  fill: var(--bg-main);
  stroke: var(--bg-main);
}

.product-info {
  padding: 18px;
}

.product-category-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.product-name {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--neon-gold);
  margin-bottom: 12px;
}

.product-rating svg {
  width: 14px;
  height: 14px;
  fill: var(--neon-gold);
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-current {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
}

.price-old {
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.btn-add-cart {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 183, 0, 0.171);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  flex-shrink: 0;
}

.btn-add-cart:hover {
  background: var(--gradient-main);
  box-shadow: var(--glow-purple);
}

.btn-add-cart svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-primary);
}


/* ====================================================================
   7. بخش "چرا ما" (Features)
   ==================================================================== */
.features-section {
  padding: 64px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 28px 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(255, 0, 168, 0.08), rgba(31, 121, 184, 0.04));
  border: 1px solid rgba(255, 0, 168, 0.15);
  transition: var(--transition-base);
}

.feature-card:hover {
  border-color: rgba(31, 121, 184, 0.35);
  transform: translateY(-4px);
}

.feature-card .icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--glow-purple);
}

.feature-card .icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: white;
}

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

.feature-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.8;
}


/* ====================================================================
   8. فوتر (Footer)
   ==================================================================== */
.site-footer {
  border-top: 1px solid rgba(31, 121, 184, 0.3);
  padding: 56px 0 24px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-about p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-top: 14px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 174, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: var(--gradient-main);
  box-shadow: var(--glow-purple);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-primary);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 13.5px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--neon-blue-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--neon-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(31, 121, 184, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom .footer-logo {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}


/* ====================================================================
   9. ریسپانسیو (Media Queries)
   نکته آموزشی: از بزرگ به کوچیک میریم. هر breakpoint یعنی
   "وقتی عرض صفحه از این مقدار کمتر شد، این استایل‌ها رو اعمال کن"
   ==================================================================== */

/* تبلت بزرگ و لپ‌تاپ کوچیک */
@media (max-width: 1080px) {
  .main-nav {
    display: none; /* منوی وسط رو مخفی می‌کنیم، با دکمه همبرگری جایگزین میشه */
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* تبلت */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    order: 2;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-visual {
    order: 1;
    height: 300px;
  }

  .ring-outer { width: 270px; height: 270px; }
  .ring-mid   { width: 210px; height: 210px; }
  .hero-logo-box { width: 150px; height: 150px; }
  .hero-logo-svg { width: 70px; height: 70px; }

  .hero-stats {
    justify-content: center;
    gap: 14px;
  }

  .blob-pink { width: 320px; height: 320px; top: -60px; right: -60px; }
  .blob-blue { width: 260px; height: 260px; }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* موبایل */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .logo span.logo-text-full {
    display: none; /* اسم کامل فروشگاه رو کوتاه می‌کنیم اگه لازم باشه */
  }

  .header-inner {
    height: 64px;
  }

  .hero {
    padding: 32px 0 48px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    text-align: center;
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

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

/* احترام به تنظیمات کاربرانی که حرکت کمتر رو ترجیح میدن (Accessibility) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ================================================================
   FINAL INTERACTION POLISH
   ================================================================ */
button,
a,
.btn-primary,
.btn-secondary,
.btn-auth,
.btn-contact,
.product-card,
.category-card,
.category-page-card,
.feature-card,
.blog-card,
.product-favorite,
.btn-add-cart,
.shop-filter-item,
.shop-page-btn {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (hover: hover) and (pointer: fine) {
  button,
  a,
  .btn-primary,
  .btn-secondary,
  .btn-auth,
  .btn-contact,
  .product-card,
  .category-card,
  .category-page-card,
  .feature-card,
  .blog-card,
  .product-favorite,
  .btn-add-cart,
  .shop-filter-item,
  .shop-page-btn {
    will-change: transform;
  }
}

/* ====================================================================
   HOME PRODUCT CAROUSEL — فروشگاهی، بدون لایه‌ی native scroll
   ==================================================================== */
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  isolation: isolate;
}

.carousel-viewport {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  padding: 10px 2px 16px;
  margin: -10px -2px -16px;
}

.product-grid.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 22px;
  width: max-content;
  max-width: none;
  min-width: 100%;
  margin: 0;
  padding: 0;
  direction: rtl;
  transform: translate3d(0, 0, 0);
  overflow: visible;
  scroll-snap-type: none;
  scroll-behavior: auto;
  scrollbar-width: auto;
  -ms-overflow-style: auto;
  touch-action: pan-y;
  user-select: none;
}

.product-grid.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track .product-card {
  flex: 0 0 260px;
  width: 260px;
  scroll-snap-align: none;
  user-select: none;
}

.carousel-track.is-animating {
  transition: transform 420ms cubic-bezier(.22, .75, .18, 1);
}

.carousel-track.is-pointer-down {
  cursor: grab;
}

.carousel-track.is-dragging {
  cursor: grabbing;
  transition: none !important;
}

/* لینک داخلی کارت باید هیچ لایه‌ی نامرئی روی خودش نداشته باشد. */
.carousel-track .product-card > a {
  position: relative;
  z-index: 1;
}

.carousel-track .product-card:hover {
  transform: translateY(-5px);
  transition: transform 280ms cubic-bezier(.22, .75, .18, 1),
              box-shadow 280ms ease,
              border-color 280ms ease;
}

.carousel-arrow {
  position: relative;
  z-index: 5;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(31, 120, 184, .20);
  background: rgba(15, 10, 31, .86);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 260ms cubic-bezier(.22,.75,.18,1),
              border-color 260ms ease,
              background 260ms ease,
              opacity 260ms ease,
              box-shadow 260ms ease;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  transition: transform 260ms cubic-bezier(.22,.75,.18,1);
}

.carousel-arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(31, 121, 184, .55);
  background: rgba(31, 121, 184, .16);
  box-shadow: 0 12px 32px rgba(31, 121, 184, .16);
}

.carousel-arrow-prev:hover:not(:disabled) svg { transform: translateX(2px); }
.carousel-arrow-next:hover:not(:disabled) svg { transform: translateX(-2px); }

.carousel-arrow:disabled {
  opacity: .28;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 900px) {
  .carousel-wrap { gap: 10px; }
  .carousel-track .product-card { flex-basis: 220px; width: 220px; }
  .carousel-arrow { flex-basis: 40px; width: 40px; height: 40px; border-radius: 12px; }
  .carousel-arrow svg { width: 18px; height: 18px; }
}

@media (max-width: 600px) {
  .carousel-wrap { display: block; }
  .carousel-viewport { width: 100%; }
  .carousel-track .product-card { flex-basis: 68vw; width: 68vw; }
  .carousel-track { overscroll-behavior-x: contain; }
  .carousel-arrow { display: none; }
}

/* ================================================================
   FORM — PRODUCT CAROUSEL V2
   هدف: اسلایدر واقعی فروشگاهی، بدون native scroll و بدون overlay روی کارت
   ================================================================ */
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.carousel-viewport {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  padding: 12px 4px 18px;
  margin: -12px -4px -18px;
}

.product-grid.carousel-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  flex-direction: row !important;
  gap: 22px;
  width: max-content;
  max-width: none;
  min-width: 100%;
  margin: 0;
  padding: 0;
  direction: rtl;
  overflow: visible !important;
  scroll-snap-type: none;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-y;
  user-select: none;
  will-change: auto;
}

.product-grid.carousel-track::-webkit-scrollbar { display: none; }

.carousel-track .product-card {
  flex: 0 0 260px !important;
  width: 260px !important;
  min-width: 260px;
  user-select: none;
  will-change: auto !important;
}

.carousel-track .product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.carousel-track .product-image-link {
  width: 100%;
  height: 100%;
}

.carousel-track .product-info {
  position: relative;
}

.carousel-track.is-dragging {
  cursor: grabbing;
}

.carousel-track.is-dragging .product-card,
.carousel-track.is-dragging .product-card:hover {
  transform: none !important;
  transition: none !important;
}

.carousel-track.is-animating {
  transition: transform 480ms cubic-bezier(.2,.8,.2,1);
}

.carousel-arrow {
  position: relative;
  z-index: 4;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 200, 139, .24);
  border-radius: 16px;
  background: rgba(20, 13, 38, .92);
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  cursor: pointer;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1),
              border-color 260ms ease,
              background 260ms ease,
              opacity 220ms ease;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1);
}

.carousel-arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(240, 200, 139, .58);
  background: rgba(240, 200, 139, .09);
}

.carousel-arrow-prev:hover:not(:disabled) svg { transform: translateX(3px); }
.carousel-arrow-next:hover:not(:disabled) svg { transform: translateX(-3px); }
.carousel-arrow:disabled { opacity: .24; cursor: default; pointer-events: none; }

@media (max-width: 900px) {
  .carousel-wrap { gap: 10px; }
  .carousel-track .product-card { flex-basis: 220px !important; width: 220px !important; min-width: 220px; }
  .carousel-arrow { flex-basis: 42px; width: 42px; height: 42px; border-radius: 13px; }
  .carousel-arrow svg { width: 18px; height: 18px; }
}

@media (max-width: 600px) {
  .carousel-wrap { display: block; }
  .carousel-viewport { width: 100%; padding: 10px 2px 16px; margin: -10px -2px -16px; }
  .carousel-track .product-card { flex-basis: 72vw !important; width: 72vw !important; min-width: 72vw; }
  .carousel-arrow { display: none; }
}

/* Product links: no overlay, no stacking layer over the card. */
.carousel-track .product-card-link {
  color: inherit;
  text-decoration: none;
}
.carousel-track .product-card-link:not(.product-image-link) {
  display: block;
}
.carousel-track .product-price-link {
  display: flex !important;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}
.carousel-track .product-price-link .price-current,
.carousel-track .product-price-link .price-old {
  pointer-events: none;
}


/* ================================================================
   HOME PRODUCT CAROUSEL — V7 CLEAN CIRCULAR
   کارت‌ها مستقیماً توسط API رندر می‌شوند. هیچ clone، overlay یا
   scroll container تو در تو برای خود کارت‌ها ساخته نمی‌شود.
   ================================================================ */
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.carousel-viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  position: relative;
  padding: 10px 2px 16px;
  margin: -10px -2px -16px;
}

.product-grid.carousel-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  gap: 22px !important;
  width: max-content !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  direction: ltr !important;
  transform: translate3d(0,0,0);
  transition: none;
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
  scrollbar-width: none !important;
  touch-action: pan-y;
  user-select: none;
}

.product-grid.carousel-track::-webkit-scrollbar { display: none !important; }

.product-grid.carousel-track > .product-card {
  direction: rtl;
  flex: 0 0 260px !important;
  width: 260px !important;
  min-width: 260px !important;
  box-sizing: border-box;
  user-select: none;
}

.product-grid.carousel-track.is-animating {
  transition: transform 620ms cubic-bezier(.16, 1, .3, 1) !important;
}

.product-grid.carousel-track.is-dragging {
  cursor: grabbing;
}

.carousel-arrow {
  position: relative;
  z-index: 3;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31,120,184,.22);
  border-radius: 14px;
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  transition: transform 260ms cubic-bezier(.16,1,.3,1), border-color 260ms ease, box-shadow 260ms ease;
}

.carousel-arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(31,121,184,.55);
  box-shadow: 0 12px 28px rgba(31,121,184,.14);
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  transition: transform 260ms cubic-bezier(.16,1,.3,1);
}

.carousel-arrow-prev:hover:not(:disabled) svg { transform: translateX(3px); }
.carousel-arrow-next:hover:not(:disabled) svg { transform: translateX(-3px); }
.carousel-arrow:disabled { opacity: .28; cursor: default; pointer-events: none; }

@media (max-width: 900px) {
  .carousel-wrap { gap: 10px; }
  .product-grid.carousel-track > .product-card {
    flex-basis: 220px !important;
    width: 220px !important;
    min-width: 220px !important;
  }
  .carousel-arrow { flex-basis: 42px; width: 42px; height: 42px; }
}

@media (max-width: 600px) {
  /* موبایل: دو کارت همزمان + فلش‌های روی خود اسلایدر
     فلش‌ها فضای جداگانه نمی‌گیرند تا عرض کارت‌ها کوچک نشود. */
  .carousel-wrap {
    display: block;
    position: relative;
    width: 100%;
  }

  .carousel-viewport {
    width: 100%;
    padding: 8px 2px 14px;
    margin: -8px -2px -14px;
  }

  .product-grid.carousel-track {
    gap: 12px !important;
  }

  .product-grid.carousel-track > .product-card {
    flex: 0 0 calc((100vw - 24px) / 2) !important;
    width: calc((100vw - 24px) / 2) !important;
    min-width: calc((100vw - 24px) / 2) !important;
  }

  /* فلش‌ها روی لبه‌های اسلایدر قرار می‌گیرند و از عرض قابل نمایش کم نمی‌کنند. */
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: grid !important;
    flex: none;
    width: 34px;
    height: 34px;
    min-width: 34px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    background: color-mix(in srgb, var(--bg-card) 88%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 5px 16px rgba(0,0,0,.20);
    transform-origin: center;
  }

  .carousel-arrow:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.05);
  }

  .carousel-arrow:active:not(:disabled) {
    transform: translateY(-50%) scale(.94);
  }

  .carousel-arrow-prev { right: 6px; }
  .carousel-arrow-next { left: 6px; }

  .carousel-arrow svg {
    width: 16px;
    height: 16px;
  }
}
