/* ======================
   COLOR PALETTE
====================== */

:root {
  --primary: #6C8CF5;
  --secondary: #FFD166;
  --accent: #EF476F;
  --light: #F8F9FA;
  --dark: #2B2D42;
  --gray: #6C757D;
}

/* ======================
   GLOBAL
====================== */

body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--light);
}

a {
  text-decoration: none;
}

/* ======================
   HEADER
====================== */

.top-header {
  background: var(--dark);
  color: white;
  padding: 6px 0;
  font-size: 14px;
}

.main-navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.navbar-brand {
  font-weight: bold;
  font-size: 24px;
  color: var(--primary);
}

/* ======================
   HERO
====================== */

.hero {
  background: linear-gradient(to right, #6c8cf5, #8fa8ff);
  color: white;
  padding: 100px 0;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
}

/* ======================
   SECTIONS
====================== */

.section {
  padding: 80px 0;
}

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

/* ======================
   FOOTER
====================== */

.footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 20px;
}

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

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

.footer-links a {
  color: #ddd;
}

.footer-links a:hover {
  color: var(--secondary);
}

/* ======================
   PLUSHIFY BUTTONS
====================== */

.btn-plush-main {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 600;
  transition: all .2s ease;
  box-shadow: 0 6px 16px rgba(108,140,245,.25);
}

.btn-plush-main:hover {
  background: #5879f0; /* slightly darker */
  transform: translateY(-2px);
  color: white;
}

.btn-plush-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 14px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all .2s ease;
}

.btn-plush-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-plush-disabled {
  background: #e0e3f5;
  color: #777;
  border-radius: 14px;
  padding: 12px 20px;
  border: none;
  font-weight: 600;
  cursor: not-allowed;
}

/* HERO SLIDER (Background Images) */
/* =========================
   HERO SLIDER (SITE VIBE)
   Uses your :root palette
   ========================= */

.hero-swiper{
  position: relative;
  height: 70vh;                 /* requested */
  min-height: 520px;            /* prevents too short hero on small laptops */
  border-radius: 26px;          /* soft + friendly */
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 18px 60px rgba(43,45,66,.18);
}

/* Each slide uses background-image inline */
.hero-swiper .swiper-slide{
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateZ(0); /* helps smooth rendering */
}

/* Overlay: strong enough for white text */
.hero-swiper .hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;

  /* 3-layer overlay:
     1) dark base for readability
     2) soft primary tint for brand vibe
     3) subtle “spotlight” */
  background:
    radial-gradient(70% 60% at 30% 35%,
      rgba(255,255,255,.10), rgba(255,255,255,0) 60%),
    linear-gradient(90deg,
      rgba(43,45,66,.78), rgba(43,45,66,.55) 55%, rgba(43,45,66,.30)),
    linear-gradient(180deg,
      rgba(108,140,245,.18), rgba(108,140,245,0) 45%, rgba(43,45,66,.55));
}

/* Optional soft “grain” feel (very light) */
.hero-swiper .hero-overlay::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .08;
  pointer-events:none;
}

/* Content */
.hero-swiper .hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(22px, 4vw, 56px);
  color: #fff;
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(10px);
  font-size: .92rem;
  color: rgba(255,255,255,.92);
}

.hero-title{
  margin-top: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.hero-lead{
  margin-top: 12px;
  max-width: 56ch;
  color: rgba(255,255,255,.88);
  text-shadow: 0 6px 22px rgba(0,0,0,.22);
}

.hero-actions .btn{
  border-radius: 16px;
  padding: 12px 18px;
  font-weight: 800;
  border-width: 2px;
}

/* If your btn-plush-main uses --primary, it will match.
   Make outline button fit hero overlay */
.hero-actions .btn-hero-outline{
  background: rgba(255,255,255,.10);
  border: 2px solid rgba(255,255,255,.28);
  color: #fff;
}
.hero-actions .btn-hero-outline:hover{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.40);
  color: #fff;
}

/* =========================
   Swiper Navigation (Arrows)
   ========================= */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.35);
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after{
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

/* Give arrows a tiny brand glow */
.hero-swiper .swiper-button-next{
  box-shadow: 0 10px 30px rgba(108,140,245,.18), 0 10px 30px rgba(0,0,0,.14);
}
.hero-swiper .swiper-button-prev{
  box-shadow: 0 10px 30px rgba(255,209,102,.16), 0 10px 30px rgba(0,0,0,.14);
}

/* =========================
   Swiper Pagination (Dots)
   ========================= */
.hero-swiper .swiper-pagination{
  bottom: 18px !important;
}

.hero-swiper .swiper-pagination-bullet{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  opacity: 1;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.22);
  transition: transform .18s ease, background .18s ease;
}

.hero-swiper .swiper-pagination-bullet-active{
  background: var(--secondary);          /* your warm yellow */
  border-color: rgba(255,255,255,.40);
  transform: scale(1.25);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 991px){
  .hero-swiper{
    height: 70vh;
    min-height: 460px;
    border-radius: 22px;
  }

  /* cleaner on mobile */
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev{
    display: none;
  }
}

@media (max-width: 575px){
  .hero-swiper{
    min-height: 430px;
  }
}

/* ===== Featured Plushies Carousel (Swiper) ===== */

.featured-swiper{
  padding-bottom: 46px; /* space for dots */
}

.featured-swiper .swiper-slide{
  height: auto; /* allows cards to stretch naturally */
}

/* Swiper arrows */
.featured-swiper .swiper-button-next,
.featured-swiper .swiper-button-prev{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(108,140,245,.12);          /* --primary tint */
  border: 1px solid rgba(108,140,245,.22);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(43,45,66,.10);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.featured-swiper .swiper-button-next:hover,
.featured-swiper .swiper-button-prev:hover{
  transform: translateY(-2px);
  background: rgba(108,140,245,.18);
  border-color: rgba(108,140,245,.35);
}

.featured-swiper .swiper-button-next:after,
.featured-swiper .swiper-button-prev:after{
  font-size: 14px;
  font-weight: 900;
  color: var(--dark);
}

/* Dots */
.featured-swiper .swiper-pagination-bullet{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  opacity: 1;
  background: rgba(43,45,66,.18);
}

.featured-swiper .swiper-pagination-bullet-active{
  background: var(--secondary);
  transform: scale(1.2);
}

/* Card polish (optional) */
.featured-card{
  border-radius: 20px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.featured-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(43,45,66,.14);
}

.featured-card img{
  height: 220px;
  object-fit: cover;
}

.featured-badge{
  background: rgba(255,209,102,.22);
  color: var(--dark);
  border: 1px solid rgba(255,209,102,.38);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
  font-size: .85rem;
}

/* ===== Custom Plush CTA Section ===== */

.custom-cta{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(108,140,245,.08),
    rgba(255,209,102,.10),
    rgba(239,71,111,.06)
  );
}

/* Floating background shapes */
.custom-cta::before{
  content:"";
  position:absolute;
  width: 360px;
  height: 360px;
  background: rgba(108,140,245,.15);
  border-radius: 50%;
  top: -120px;
  left: -120px;
  filter: blur(40px);
}

.custom-cta::after{
  content:"";
  position:absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,209,102,.18);
  border-radius: 50%;
  bottom: -120px;
  right: -100px;
  filter: blur(40px);
}

/* Main card */
.custom-cta-card{
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 26px;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 18px 50px rgba(43,45,66,.12);
  border: 1px solid rgba(108,140,245,.12);
}

.custom-cta-icon{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(108,140,245,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 14px;
}

/* Text */
.custom-cta h2{
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.custom-cta p{
  max-width: 56ch;
  margin: 12px auto 0;
  color: var(--gray);
  font-size: 1.05rem;
}

/* Button */
.custom-cta .btn-custom{
  margin-top: 28px;
  padding: 14px 26px;
  border-radius: 16px;
  font-weight: 800;
  background: linear-gradient(135deg,
    var(--primary),
    #4f6ee8
  );
  border: none;
  color: #fff;
  box-shadow: 0 10px 24px rgba(108,140,245,.35);
  transition: transform .18s ease, box-shadow .18s ease;
}

.custom-cta .btn-custom:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(108,140,245,.45);
  color: #fff;
}

/* Small highlight text */
.custom-cta-note{
  margin-top: 12px;
  font-size: .9rem;
  color: var(--gray);
}

/* ===== Header Auth Buttons (Site Vibe) ===== */

.btn-plush-auth{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 16px;
  border-radius: 999px; /* pill style */
  font-weight: 700;
  font-size: .9rem;
  line-height: 1;

  transition: all .18s ease;

  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

/* Login / Signup (outline style) */
.btn-plush-auth.outline{
  background: transparent;
  color: var(--primary);
  border-color: rgba(108,140,245,.45);
}

.btn-plush-auth.outline:hover{
  background: rgba(108,140,245,.10);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

/* Account button (soft primary) */
.btn-plush-auth.account{
  background: rgba(108,140,245,.14);
  color: var(--primary);
  border-color: rgba(108,140,245,.25);
}

.btn-plush-auth.account:hover{
  background: rgba(108,140,245,.22);
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* Logout (accent / warning style) */
.btn-plush-auth.logout{
  background: rgba(239,71,111,.12);
  color: var(--accent);
  border-color: rgba(239,71,111,.30);
}

.btn-plush-auth.logout:hover{
  background: rgba(239,71,111,.20);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* Spacing helper (optional) */
.header-auth-group{
  display: flex;
  gap: 8px;
  align-items: center;
}


