/* ============================================
   FKKRR - Wear Your Pride
   Brand Colors from logo: Pink bg (#EDD5E3), 
   Rainbow accents, Black text, 
   Warm tones: yellow, orange, cyan, magenta
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  --pink-light: #F5E6EF;
  --pink-bg: #FDF2F8;
  --pink-mid: #EDD5E3;
  --pink-accent: #E84393;
  --magenta: #D63384;
  --orange: #F39C12;
  --yellow: #F1C40F;
  --cyan: #00BCD4;
  --green: #2ECC71;
  --blue: #3498DB;
  --black: #1A1A1A;
  --dark: #2D2D2D;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --white: #FFFFFF;
  --gradient-pride: linear-gradient(135deg, #E84393, #F39C12, #F1C40F, #2ECC71, #00BCD4, #3498DB, #9B59B6);
  --gradient-warm: linear-gradient(135deg, #F39C12, #E84393);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--pink-bg);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--pink-light); }
::-webkit-scrollbar-thumb { background: var(--pink-accent); border-radius: 4px; }

/* ---- UTILITY ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ---- PRIDE GRADIENT BAR ---- */
.pride-bar {
  height: 4px;
  background: var(--gradient-pride);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 242, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(237, 213, 227, 0.5);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  position: relative;
  letter-spacing: 0.02em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-pride);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cart {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav-cart:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}

.nav-cart svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--pink-accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 67, 147, 0.08) 0%, transparent 70%);
  animation: floatBlob 12s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.06) 0%, transparent 70%);
  animation: floatBlob 15s ease-in-out infinite reverse;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: slideUp 0.8s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink-accent);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--pink-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .pride-text {
  background: var(--gradient-pride);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

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

.btn-pride {
  background: var(--gradient-pride);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.hero-visual {
  position: relative;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pink-light);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}

.hero-image-wrapper .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray);
}

.hero-float-badge {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}

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

.hero-float-badge .stars {
  color: var(--yellow);
  font-size: 0.85rem;
}

.hero-float-badge span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================
   COLLECTION STRIP (scrolling)
   ============================================ */
.collection-strip {
  padding: 24px 0;
  background: var(--black);
  overflow: hidden;
  margin: 0;
}

.strip-track {
  display: flex;
  gap: 48px;
  animation: scrollStrip 20s linear infinite;
  width: max-content;
}

@keyframes scrollStrip {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.strip-item {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 16px;
}

.strip-item .sep {
  width: 6px;
  height: 6px;
  background: var(--pink-accent);
  border-radius: 50%;
}

/* ============================================
   SECTION STYLING
   ============================================ */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pink-accent);
  margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gradient-pride);
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--pink-accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  z-index: 2;
}

.product-card-img {
  aspect-ratio: 1/1;
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.product-card-img .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.85rem;
  background: linear-gradient(135deg, #f8f0f5 0%, #f0e8ed 100%);
}

.product-card-img .placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-card-overlay {
  opacity: 1;
}

.product-card-overlay .btn {
  transform: translateY(10px);
  transition: var(--transition);
}

.product-card:hover .product-card-overlay .btn {
  transform: translateY(0);
}

.product-card-info {
  padding: 20px;
}

.product-card-collection {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-accent);
  margin-bottom: 6px;
}

.product-card-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-card-tagline {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.product-card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
}

.product-card-price .original {
  text-decoration: line-through;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 400;
  margin-left: 8px;
}

.product-card-colors {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: var(--transition);
}

.color-dot:hover, .color-dot.active {
  box-shadow: 0 0 0 2px var(--pink-accent);
}

/* ============================================
   COLLECTIONS SECTION
   ============================================ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.collection-card-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: var(--transition);
}

.collection-card:hover .collection-card-bg {
  transform: scale(1.05);
}

.collection-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
}

.collection-card-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.collection-card-content p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ============================================
   ABOUT / BRAND STORY
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pink-light);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-visual-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  background: var(--gradient-pride);
  opacity: 0.2;
  z-index: -1;
}

.about-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--pink-mid);
}

.about-stat h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-pride);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-pride);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author-info h5 {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-author-info p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 24px;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-pride);
}

.newsletter h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.newsletter p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 24px;
  border-radius: 50px;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  outline: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
  border-color: var(--pink-accent);
  background: rgba(255,255,255,0.15);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--gray);
  margin: 16px 0 24px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--pink-accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer ul a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer ul a:hover {
  color: var(--pink-accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--pink-mid);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-bottom-links a:hover {
  color: var(--pink-accent);
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 40px;
}

.breadcrumb a:hover {
  color: var(--pink-accent);
}

.breadcrumb .sep {
  color: var(--gray);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.product-gallery-main {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-light);
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
}

.product-gallery-main .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray);
  background: linear-gradient(135deg, #f8f0f5, #f0e8ed);
}

.product-gallery-main .placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.3;
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
}

.product-gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-light);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
  border-color: var(--pink-accent);
}

.product-info h1 {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.product-info .product-collection-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink-accent);
  margin-bottom: 16px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.product-rating .stars {
  color: var(--yellow);
  font-size: 0.9rem;
}

.product-rating span {
  font-size: 0.85rem;
  color: var(--gray);
}

.product-price-block {
  margin-bottom: 28px;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--black);
}

.product-price .original {
  text-decoration: line-through;
  color: var(--gray);
  font-size: 1.1rem;
  font-weight: 400;
  margin-left: 12px;
}

.product-price .save-badge {
  display: inline-flex;
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  margin-left: 12px;
}

.product-description {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

/* Size Selector */
.option-group {
  margin-bottom: 28px;
}

.option-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.option-label .selected-val {
  color: var(--pink-accent);
  font-weight: 400;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-btn {
  min-width: 52px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0d6dc;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  background: var(--white);
  color: var(--dark);
  transition: var(--transition);
  padding: 0 14px;
}

.size-btn:hover {
  border-color: var(--black);
}

.size-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.size-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Color Selector */
.color-options {
  display: flex;
  gap: 12px;
}

.color-option {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.color-option::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: var(--transition);
}

.color-option:hover::after,
.color-option.active::after {
  border-color: var(--pink-accent);
}

/* Quantity */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid #e0d6dc;
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}

.quantity-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  transition: var(--transition);
}

.quantity-btn:hover {
  background: var(--gray-light);
}

.quantity-val {
  width: 52px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  border-left: 2px solid #e0d6dc;
  border-right: 2px solid #e0d6dc;
}

.add-to-cart-group {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.add-to-cart-group .btn {
  flex: 1;
  justify-content: center;
}

.wishlist-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0d6dc;
  border-radius: 50%;
  background: var(--white);
  transition: var(--transition);
  flex-shrink: 0;
}

.wishlist-btn:hover {
  border-color: var(--pink-accent);
  color: var(--pink-accent);
}

.wishlist-btn svg {
  width: 22px;
  height: 22px;
}

.product-meta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--pink-mid);
}

.product-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--gray);
}

.product-meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--pink-accent);
  flex-shrink: 0;
}

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.shop-hero {
  text-align: center;
  padding: 40px 0 60px;
}

.shop-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.shop-hero p {
  color: var(--gray);
  font-size: 1.1rem;
}

.shop-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--pink-mid);
  color: var(--dark);
  transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.sort-select {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--pink-mid);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  outline: none;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page {
  padding-top: 100px;
}

.about-hero {
  text-align: center;
  padding: 60px 0 80px;
}

.about-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.about-hero h1 .pride-text {
  background: var(--gradient-pride);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero p {
  color: var(--gray);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.value-card h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  padding-top: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0d6dc;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink-accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.contact-info-item h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ============================================
   SIZE GUIDE TABLE
   ============================================ */
.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.size-guide-table th,
.size-guide-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
}

.size-guide-table th {
  background: var(--black);
  color: var(--white);
  font-weight: 600;
}

.size-guide-table th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.size-guide-table th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.size-guide-table td {
  border-bottom: 1px solid var(--pink-mid);
}

.size-guide-table tr:hover td {
  background: var(--pink-light);
}

/* ============================================
   TOAST / NOTIFICATIONS
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--black);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateY(120%);
  transition: var(--transition);
  z-index: 2000;
}

.toast.show {
  transform: translateY(0);
}

.toast .toast-icon {
  font-size: 1.2rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pink-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; }
  .menu-toggle { display: flex; }
  
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 40px; }
  .hero h1 { font-size: 2.4rem; }
  
  .collections-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter { padding: 48px 28px; margin: 0 16px; }
  .newsletter-form { flex-direction: column; }
  
  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  
  .add-to-cart-group { flex-direction: column; }
  .add-to-cart-group .btn { width: 100%; }
  
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .product-card-info { padding: 14px; }
  .product-card-name { font-size: 0.9rem; }
  .hero-buttons { flex-direction: column; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .about-stats { flex-direction: column; gap: 20px; }
}
