

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;600;700;800&family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  --pw-primary: #ffaf4a;
  --pw-primary-hover: #ffaf4a;
  --pw-primary-light: #FFF0EB;
  --pw-primary-rgb: 255, 67, 5;
  --pw-dark: #161616;
  --pw-dark-rgb: 22, 22, 22;
  --pw-muted: #787878;
  --pw-bg-light: #F9F9F8;
  --pw-bg-card: #F4F4F3;
  --pw-border: #E8E8E6;
  --pw-border-light: #EEEEEC;
  --pw-white: #FFFFFF;
  
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.09);
  --shadow-primary: 0 10px 25px rgba(255, 67, 5, 0.25);
  
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--pw-dark);
  background-color: var(--pw-bg-light);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--pw-dark);
  line-height: 1.15;
}

p {
  color: var(--pw-muted);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--pw-bg-light);
}
::-webkit-scrollbar-thumb {
  background: #D5D5D3;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--pw-primary);
}

.container-custom {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-wide {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* BADGES & PILLS */
.badge-pawwell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--pw-primary-light);
  color: var(--pw-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 67, 5, 0.15);
}

.badge-pawwell.badge-white {
  background: var(--pw-white);
  color: var(--pw-primary);
  border-color: rgba(255, 67, 5, 0.2);
  box-shadow: var(--shadow-sm);
}

.badge-pawwell.badge-dark {
  background: var(--pw-dark);
  color: var(--pw-white);
  border-color: var(--pw-dark);
}

.badge-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-tag-orange {
  background: var(--pw-primary);
  color: var(--pw-white);
}

.badge-tag-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--pw-dark);
  backdrop-filter: blur(8px);
}

/* BUTTONS */
.btn-pawwell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-bounce);
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn-pawwell-primary {
  background-color: var(--pw-primary);
  color: var(--pw-white) !important;
  box-shadow: var(--shadow-primary);
}

.btn-pawwell-primary:hover {
  background-color: var(--pw-primary-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 67, 5, 0.35);
  color: var(--pw-white) !important;
}

.btn-pawwell-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-pawwell-secondary {
  background-color: var(--pw-white);
  color: var(--pw-dark) !important;
  border: 1px solid var(--pw-border);
  box-shadow: var(--shadow-sm);
}

.btn-pawwell-secondary:hover {
  background-color: #F0F0EE;
  border-color: #D6D6D4;
  transform: translateY(-2px);
  color: var(--pw-dark) !important;
}

.btn-pawwell-dark {
  background-color: var(--pw-dark);
  color: var(--pw-white) !important;
}

.btn-pawwell-dark:hover {
  background-color: #000;
  transform: translateY(-2px);
  color: var(--pw-white) !important;
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pw-white);
  border: 1px solid var(--pw-border);
  color: var(--pw-dark);
  transition: var(--transition-smooth);
}

.btn-icon:hover {
  background: var(--pw-primary);
  color: var(--pw-white);
  border-color: var(--pw-primary);
  transform: scale(1.08);
}

/* HEADER */
.pw-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.35s ease;
}

.pw-header.scrolled {
  padding: 4px 0;
  background: rgba(249, 249, 248, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pw-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pw-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--pw-dark);
  letter-spacing: -0.04em;
}

.pw-brand .brand-icon {
  color: var(--pw-primary);
  display: flex;
  align-items: center;
}

.pw-nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pw-nav-links li a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--pw-dark);
  position: relative;
  padding: 6px 0;
}

.pw-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--pw-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.pw-nav-links li a:hover,
.pw-nav-links li a.active {
  color: var(--pw-primary);
}

.pw-nav-links li a:hover::after,
.pw-nav-links li a.active::after {
  width: 100%;
}

.pw-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-toggle-btn {
  position: relative;
  background: var(--pw-white);
  border: 1px solid var(--pw-border);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pw-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cart-toggle-btn:hover {
  background: var(--pw-primary-light);
  border-color: var(--pw-primary);
  color: var(--pw-primary);
}

.cart-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--pw-primary);
  color: var(--pw-white);
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(255, 67, 5, 0.4);
}

.mobile-nav-toggler {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--pw-dark);
  cursor: pointer;
  padding: 4px;
}

/* HERO SECTION */
.hero-section {
  padding-top: 160px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-content {
  max-width: 840px;
  margin: 0 auto;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px 6px 8px;
  background: var(--pw-white);
  border: 1px solid var(--pw-border);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pw-dark);
}

.hero-trust-pill .avatar-stack {
  display: flex;
  align-items: center;
}

.hero-trust-pill .avatar-stack img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--pw-white);
  margin-left: -6px;
}

.hero-trust-pill .avatar-stack img:first-child {
  margin-left: 0;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 22px;
  color: var(--pw-dark);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.10rem);
  line-height: 1.6;
  color: #555555;
  max-width: 700px;
  margin: 0 auto 36px;
}

/* Fanned Cards */
.hero-fan-wrapper {
  margin-top: 50px;
  position: relative;
  width: 100%;
  padding: 40px 10px 20px;
}

.hero-fan-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  perspective: 1200px;
  position: relative;
  min-height: 330px;
}

.fan-card {
  width: 185px;
  height: 270px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  cursor: pointer;
  flex-shrink: 0;
  background: #EFEFEF;
  border: 4px solid var(--pw-white);
}

.fan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fan-card:hover {
  transform: translateY(-24px) scale(1.12) rotate(0deg) !important;
  z-index: 50 !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.fan-card:hover img {
  transform: scale(1.08);
}

.fan-card-1 { transform: rotate(-12deg) translateY(18px); z-index: 1; }
.fan-card-2 { transform: rotate(-8deg) translateY(6px); z-index: 2; }
.fan-card-3 { transform: rotate(-4deg) translateY(-4px); z-index: 3; }
.fan-card-4 { transform: rotate(0deg) translateY(-10px); z-index: 4; }
.fan-card-5 { transform: rotate(4deg) translateY(-4px); z-index: 3; }
.fan-card-6 { transform: rotate(8deg) translateY(6px); z-index: 2; }
.fan-card-7 { transform: rotate(12deg) translateY(18px); z-index: 1; }

.fan-card-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(22, 22, 22, 0.8);
  backdrop-filter: blur(8px);
  color: var(--pw-white);
  padding: 6px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.fan-card:hover .fan-card-tag {
  opacity: 1;
  transform: translateY(0);
}

/* ABOUT SECTION */
.about-section {
  padding: 90px 0;
}

.about-card-box {
  background: var(--pw-white);
  border-radius: var(--radius-lg);
  padding: 54px;
  border: 1px solid var(--pw-border-light);
  box-shadow: var(--shadow-sm);
}

.about-img-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

.about-img-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--pw-white);
  transition: var(--transition-smooth);
}

.about-img-card:hover {
  transform: translateY(-8px);
}

.about-img-card.img-sm {
  width: 145px;
  height: 185px;
}

.about-img-card.img-lg {
  width: 210px;
  height: 250px;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.about-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.stat-item-pill {
  background: var(--pw-bg-card);
  padding: 26px 20px;
  border-radius: 22px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid var(--pw-border-light);
}

.stat-item-pill:hover {
  background: var(--pw-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(255, 67, 5, 0.25);
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--pw-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--pw-muted);
  margin: 0;
}

/* BENTO GRID */
.bento-section {
  padding: 90px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.bento-card {
  background: var(--pw-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--pw-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 67, 5, 0.25);
}

.bento-card-body {
  padding: 38px 36px 28px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bento-card-text {
  flex: 1;
}

.bento-card-text h3 {
  font-size: 1.7rem;
  margin: 16px 0 10px;
}

.bento-card-text p {
  font-size: 0.96rem;
  margin-bottom: 0;
}

.bento-card-img {
  width: 175px;
  height: 175px;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.bento-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-card:hover .bento-card-img img {
  transform: scale(1.08);
}

.bento-card-footer {
  background: var(--pw-bg-card);
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--pw-border-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pw-dark);
  transition: var(--transition-smooth);
}

.bento-card.highlighted-bento .bento-card-footer {
  background: var(--pw-primary);
  color: var(--pw-white);
}

.bento-card:hover .bento-card-footer {
  background: var(--pw-primary);
  color: var(--pw-white);
}

/* PORTRAIT STYLES */
.styles-section {
  padding: 90px 0;
}

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.portrait-card {
  border-radius: 28px;
  overflow: hidden;
  height: 430px;
  position: relative;
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--pw-white);
}

.portrait-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.portrait-card-bg-orange { background-color: #FF5A1F; }
.portrait-card-bg-amber  { background-color: #E68A00; }
.portrait-card-bg-green  { background-color: #387D56; }
.portrait-card-bg-blue   { background-color: #2F7DBE; }

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portrait-card:hover img {
  transform: scale(1.06);
}

.portrait-card-top-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.portrait-center-action {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pw-dark);
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0.85;
  transition: var(--transition-bounce);
  z-index: 2;
}

.portrait-card:hover .portrait-center-action {
  transform: translate(-50%, -50%) scale(1.15);
  opacity: 1;
  background: var(--pw-white);
  color: var(--pw-primary);
}

.portrait-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0) 100%);
  color: var(--pw-white);
  z-index: 2;
}

.portrait-card-info h4 {
  color: var(--pw-white);
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.portrait-card-info span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* PROCESS TIMELINE */
.feature-process-section {
  padding: 90px 0;
}

.feature-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--pw-white);
  height: 500px;
}

.feature-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-timeline {
  position: relative;
  padding-left: 60px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 23px;
  width: 2px;
  background: var(--pw-border);
}

.timeline-step {
  position: relative;
  margin-bottom: 36px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-node {
  position: absolute;
  top: 0;
  left: -60px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pw-white);
  border: 2px solid var(--pw-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--pw-dark);
  transition: var(--transition-smooth);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.timeline-step:hover .timeline-node,
.timeline-step.active .timeline-node {
  background: var(--pw-primary);
  border-color: var(--pw-primary);
  color: var(--pw-white);
  transform: scale(1.15);
  box-shadow: var(--shadow-primary);
}

.timeline-content h4 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.96rem;
  margin-bottom: 0;
}

/* REVIEWS */
.reviews-section {
  padding: 90px 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--pw-white);
  border-radius: 26px;
  padding: 34px;
  border: 1px solid var(--pw-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 67, 5, 0.25);
}

.review-stars {
  color: #FF9800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-quote {
  font-size: 0.98rem;
  color: #3e3e3e;
  line-height: 1.65;
  font-style: normal;
  margin-bottom: 24px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--pw-border-light);
  padding-top: 18px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pw-border);
}

.review-author-info h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.review-author-info span {
  font-size: 0.82rem;
  color: var(--pw-muted);
}

/* TEAM */
.team-section {
  padding: 90px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.team-card {
  background: var(--pw-white);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--pw-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 67, 5, 0.25);
}

.team-img-wrapper {
  height: 290px;
  overflow: hidden;
  background: #EFEFEF;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.06);
}

.team-info {
  padding: 22px 16px;
}

.team-info h4 {
  font-size: 1.18rem;
  margin-bottom: 4px;
}

.team-info span {
  font-size: 0.85rem;
  color: var(--pw-muted);
  font-weight: 500;
}

/* FAQ */
.faq-section {
  padding: 90px 0;
}

.pw-accordion-item {
  background: var(--pw-white);
  border-radius: 22px;
  border: 1px solid var(--pw-border);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.pw-accordion-item:hover {
  border-color: #D6D6D4;
}

.pw-accordion-header {
  padding: 0px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.pw-accordion-header h4 {
  font-size: 1.18rem;
  margin: 0;
  color: var(--pw-dark);
  font-weight: 700;
  transition: color 0.3s ease;
}

.pw-accordion-item.active .pw-accordion-header h4 {
  color: var(--pw-primary);
}

.accordion-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pw-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--pw-dark);
  transition: var(--transition-bounce);
  flex-shrink: 0;
}

.pw-accordion-item.active .accordion-icon {
    background: var(--pw-primary);
    color: var(--pw-white) !important;
    transform: rotate(180deg);
}

.pw-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 28px;
}

.pw-accordion-item.active .pw-accordion-body {
  max-height: 400px;
  padding: 0 28px 26px;
  transition: max-height 0.45s ease-in-out, padding 0.3s ease;
}

.pw-accordion-body p {
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}

/* PRE-FOOTER CTA */
.pre-footer-section {
  padding: 100px 0 70px;
  position: relative;
  text-align: center;
}

.pre-footer-fan {
  position: relative;
  max-width: 900px;
  margin: 0 auto 40px;
  min-height: 120px;
}

.floating-thumb {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--pw-white);
  transition: var(--transition-bounce);
}

.floating-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-thumb:hover {
  transform: scale(1.2) rotate(0deg) !important;
  z-index: 10;
}

.ft-1 { top: -20px; left: 8%; transform: rotate(-10deg); }
.ft-2 { top: 20px; left: 24%; transform: rotate(6deg); width: 78px; height: 78px; }
.ft-3 { top: -30px; right: 24%; transform: rotate(-8deg); width: 84px; height: 84px; }
.ft-4 { top: 15px; right: 8%; transform: rotate(12deg); }

/* GIANT BRAND BANNER */
.giant-brand-banner {
  background-color: var(--pw-primary);
  border-radius: 40px 40px 0 0;
  padding: 60px 24px 40px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.giant-brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3.5rem, 15vw, 12.5rem);
  color: var(--pw-white);
  letter-spacing: -0.05em;
  line-height: 0.9;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.5vw, 36px);
  white-space: nowrap;
}

.giant-brand-icon {
  font-size: 0.88em;
  display: inline-flex;
}

/* FOOTER */
.pw-footer {
  background-color: var(--pw-white);
  padding: 70px 0 40px;
  border-top: 1px solid var(--pw-border);
}

.footer-col h5 {
  font-size: 1.08rem;
  margin-bottom: 20px;
  color: var(--pw-dark);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: var(--pw-muted);
  font-size: 0.94rem;
}

.footer-links li a:hover {
  color: var(--pw-primary);
  padding-left: 4px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--pw-border);
  background: var(--pw-bg-light);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-smooth);
}

.newsletter-input:focus {
  border-color: var(--pw-primary);
  background: var(--pw-white);
  box-shadow: 0 0 0 3px rgba(255, 67, 5, 0.12);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--pw-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--pw-muted);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pw-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pw-dark);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--pw-primary);
  color: var(--pw-white);
  transform: translateY(-2px);
}

/* PRODUCT SHOP PAGE */
.shop-hero {
  padding-top: 150px;
  padding-bottom: 50px;
  background: linear-gradient(180deg, rgba(255, 67, 5, 0.06) 0%, rgba(249, 249, 248, 0) 100%);
  text-align: center;
}

.filter-pills-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 32px 0 20px;
}

.filter-pill-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--pw-border);
  background: var(--pw-white);
  color: var(--pw-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-pill-btn:hover,
.filter-pill-btn.active {
  background: var(--pw-dark);
  color: var(--pw-white);
  border-color: var(--pw-dark);
  transform: translateY(-2px);
}

.product-card {
  background: var(--pw-white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--pw-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 67, 5, 0.3);
}

.product-img-box {
  position: relative;
  height: 260px;
  background: #F7F7F6;
  overflow: hidden;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-box img {
  transform: scale(1.08);
}

.product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.quick-view-trigger {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pw-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pw-dark);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  z-index: 2;
}

.product-card:hover .quick-view-trigger {
  opacity: 1;
  transform: translateY(0);
}

.quick-view-trigger:hover {
  background: var(--pw-primary);
  color: var(--pw-white);
}

.product-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pw-primary);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--pw-dark);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #FF9800;
  margin-bottom: 12px;
}

.product-rating span {
  color: var(--pw-muted);
  font-size: 0.8rem;
}

.product-card-bottom {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--pw-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--pw-dark);
}

.product-price .old-price {
  font-size: 0.95rem;
  color: var(--pw-muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 6px;
}

.btn-add-cart {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pw-bg-card);
  border: 1px solid var(--pw-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pw-dark);
  cursor: pointer;
  transition: var(--transition-bounce);
}

.btn-add-cart:hover {
  background: var(--pw-primary);
  color: var(--pw-white);
  border-color: var(--pw-primary);
  transform: scale(1.1);
}

/* CART DRAWER */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: var(--pw-white);
  z-index: 2001;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--pw-border-light);
}

.cart-drawer-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pw-border-light);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--pw-border);
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-info h6 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cart-item-price {
  font-weight: 700;
  color: var(--pw-primary);
  font-size: 0.92rem;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--pw-bg-card);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
}

.cart-qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--pw-dark);
  font-weight: 800;
  padding: 0 4px;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--pw-border-light);
  background: var(--pw-bg-light);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

/* QUICK VIEW MODAL */
.modal-content.pw-modal {
  border-radius: 28px;
  border: none;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.modal-body.pw-modal-body {
  padding: 36px;
}

/* Toast */
.pw-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--pw-dark);
  color: var(--pw-white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
}

.pw-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero-fan-container {
    gap: 10px;
  }
  .fan-card {
    width: 155px;
    height: 220px;
  }
  .portrait-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .pw-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--pw-white);
    flex-direction: column;
    padding: 90px 30px 40px;
    gap: 20px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
    z-index: 999;
  }
  .pw-nav-links.active {
    right: 0;
  }
  .mobile-nav-toggler {
    display: block;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .hero-fan-container {
    overflow-x: auto;
    padding-bottom: 20px;
    justify-content: flex-start;
  }
  .hero-fan-wrapper {
    overflow-x: hidden;
  }
  .fan-card {
    width: 140px;
    height: 200px;
  }
  .feature-hero-img {
    height: 340px;
    margin-bottom: 40px;
  }
  .about-img-stack {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 120px;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .stat-item-pill {
    padding: 16px 10px;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .portrait-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .bento-card-body {
    flex-direction: column;
    text-align: center;
  }
  .bento-card-img {
    width: 100%;
    height: 200px;
  }
  .about-card-box {
    padding: 24px;
  }
  .giant-brand-text {
    font-size: 4.2rem;
  }
}
.pw-brand img{
    width: 130px;
}
.giant-brand-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(3.5rem, 15vw, 5.5rem);
    color: var(--pw-white);
    letter-spacing: -0.05em;
    line-height: 0.9;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2.5vw, 36px);
    white-space: nowrap;
}
#declineCookie {
    background-color: #e03800!important;
}