/* ============================================================
   LiIcon — Premium Fashion Landing
   Mobile First • Luxury Minimalism
   ============================================================ */

:root {
  --pink: #f8c4d4;
  --pink-soft: #fdeef3;
  --pink-deep: #ff5d89;
  --lavender: #e8d5f0;
  --lavender-soft: #f5eef9;
  --purple: #c9a0dc;
  --white: #ffffff;
  --off-white: #fdfbfc;
  --cream: #faf7f8;
  --text: #2c2c2c;
  --text-soft: #6b6b6b;
  --text-light: #9a9a9a;
  --dark: #1a1a1a;
  --shadow: 0 8px 32px rgba(200, 140, 170, 0.12);
  --shadow-hover: 0 16px 48px rgba(200, 140, 170, 0.2);
  --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.04);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-head: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 480px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
}

.section-sub {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 40px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Header / Hero ---------- */
.hero-catalog {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, var(--pink-soft) 0%, var(--lavender-soft) 35%, var(--off-white) 100%);
  overflow: hidden;
  padding: 0 0 32px;
}

.hero-catalog::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.55) 0%, transparent 70%);
  pointer-events: none;
}

.hero-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 0;
  position: relative;
  z-index: 2;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
}

.logo span {
  font-weight: 400;
  opacity: 0.7;
}

.hero-intro {
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 24px 8px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.hero-intro > * {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin: 0 0 14px;
  opacity: 0.9;
  text-align: center;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 7.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--dark);
  margin: 0 0 18px;
  text-align: center;
  width: 100%;
}

.hero-trust {
  font-size: 0.78rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 0;
  opacity: 0.85;
  text-align: center;
  width: 100%;
}

.catalog-lead {
  display: none;
}

.selected-bag {
  display: none;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-soft);
  margin: 0 0 16px;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.selected-bag.visible {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #ff5886 0%, #ce63ff 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(200, 140, 170, 0.35);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 140, 170, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: var(--white);
  color: var(--dark);
  border: 1.5px solid rgba(200, 140, 170, 0.3);
  box-shadow: var(--shadow-soft);
}

.btn-outline:hover {
  border-color: var(--pink-deep);
  box-shadow: var(--shadow);
}

.btn-full {
  width: 100%;
}



/* ---------- Benefits ---------- */
.benefits {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefit-card {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}

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

.benefit-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--pink-soft), var(--lavender-soft));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  color: var(--pink-deep);
}

.benefit-card h3 {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--dark);
}

.benefit-card p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ---------- Catalog ---------- */
.catalog {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  background: transparent;
  padding: 24px 20px 0;
  position: relative;
  z-index: 2;
}

.catalog-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

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

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.04);
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--dark);
}

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

.product-card-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.product-card-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--pink-deep);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.product-card-colors {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

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

.color-dot.light { background: #f5e6e0; }
.color-dot.dark { background: #3d2c2c; }

/* ---------- Product Detail Blocks ---------- */
.product-block {
  background: var(--white);
  padding: 56px 0;
}

.product-block:nth-child(even) {
  background: var(--cream);
}

.product-block .container {
  max-width: var(--max);
}

.product-gallery {
  margin-bottom: 28px;
  position: relative;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 1;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--cream);
}

.gallery-thumb.active,
.gallery-thumb:hover {
  opacity: 1;
  border-color: var(--pink-deep);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
  border: none;
}

.gallery-nav:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }

.gallery-nav svg {
  width: 18px;
  height: 18px;
}

.product-info h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--pink-deep);
  margin-bottom: 16px;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 20px;
  line-height: 1.65;
}

.product-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.meta-row span:first-child {
  color: var(--text-light);
}

.meta-row span:last-child {
  font-weight: 500;
  color: var(--dark);
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.feature-tag {
  background: var(--pink-soft);
  color: var(--dark);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 50px;
}

.color-select {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.color-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.08);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
}

.color-option.active {
  border-color: var(--pink-deep);
  background: var(--pink-soft);
}

.color-option .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 20, 0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 100%;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.lightbox-nav.prev { left: -10px; }
.lightbox-nav.next { right: -10px; }

/* ---------- Reviews ---------- */
.reviews {
  background: linear-gradient(180deg, var(--lavender-soft) 0%, var(--white) 100%);
}

.reviews-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
}

.review-name {
  font-weight: 500;
  font-size: 0.95rem;
}

.review-stars {
  color: #f0b429;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  text-align: left;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
  background: none;
  border: none;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
  opacity: 0.5;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ---------- Order Form ---------- */
.order {
  background: linear-gradient(165deg, var(--pink-soft) 0%, var(--lavender-soft) 50%, var(--white) 100%);
  padding-bottom: 80px;
}

.order-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 1.5px solid transparent;
  transition: var(--transition);
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--pink-deep);
  background: var(--white);
}

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

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.radio-label:hover {
  background: var(--pink-soft);
}

.radio-label input {
  accent-color: var(--pink-deep);
  width: 18px;
  height: 18px;
}

.radio-label.active {
  background: var(--pink-soft);
  border: 1.5px solid var(--pink-deep);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-message {
  display: none;
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
}

.form-message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
}

.form-message.error {
  display: block;
  background: #fce4ec;
  color: #c62828;
}

.form-success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: #c8e6c9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 40px 0 28px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.footer p {
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 16px 0;
  font-size: 0.8rem;
}

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ---------- Tablet & Desktop ---------- */
@media (min-width: 600px) {
  :root {
    --max: 560px;
  }
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .section-title {
    font-size: 2.3rem;
  }
}

@media (min-width: 900px) {
  :root {
    --max: 960px;
  }
  .hero-catalog {
    padding-bottom: 48px;
  }
  .hero-intro {
    max-width: 480px;
    padding-top: 36px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .catalog {
    max-width: 960px;
  }
  .catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .product-block .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1000px;
  }
  .product-gallery {
    margin-bottom: 0;
    position: sticky;
    top: 24px;
  }
  .reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }
  .review-card {
    flex: none;
  }
  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1200px) {
  :root {
    --max: 1100px;
  }
}

/* Lazy loading placeholder */
img[loading="lazy"] {
  background: var(--cream);
}

/* Focus visible for a11y */
:focus-visible {
  outline: 2px solid var(--pink-deep);
  outline-offset: 2px;
}
