/* ============================================
   KAKEKSPOT - Main Stylesheet
   Premium E-Commerce Landing Page
   ============================================ */

@import url('variables.css');
@import url('animation.css');
@import url('components.css');
@import url('responsive.css');

/* ---- Reset & Base ---- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--text-primary);
}

::selection {
  background: var(--color-accent);
  color: var(--color-white);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ---- Skip Link ---- */

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 9999;
  font-weight: var(--fw-semibold);
}
.skip-link:focus {
  top: 0;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: #111111;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition-base);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

[data-theme="dark"] .header {
  background: rgba(10, 14, 23, 0.95);
}

.header.is-scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-color);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 1.5rem;
  font-weight: var(--fw-extrabold);
  color: #ffffff;
  letter-spacing: var(--ls-tight);
  z-index: var(--z-sticky);
}

[data-theme="dark"] .header__logo {
  color: var(--color-white);
}

.header__logo svg {
  width: 36px;
  height: 36px;
}

.header__logo-img {
  height: auto;
  width: 180px;
  max-height: 60px;
  display: block;
  object-fit: contain;
  object-fit: contain;
}

.header__logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__link {
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--color-accent);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav__cart {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

.nav__cart:hover {
  background: rgba(255,255,255,0.1);
}

.nav__cart svg {
  width: 22px;
  height: 22px;
}

.nav__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 11px;
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  line-height: 1;
}

.dark-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8) !important;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

.dark-toggle:hover {
  background: var(--color-light);
}

.dark-toggle svg { width: 20px; height: 20px; }

.nav__cta {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: var(--z-sticky);
  padding: 0;
}

.menu-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
  position: relative;
}

.menu-toggle__bar::before,
.menu-toggle__bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
}

.menu-toggle__bar::before { top: -7px; }
.menu-toggle__bar::after { bottom: -7px; }

.menu-toggle.is-active .menu-toggle__bar {
  background: transparent;
}
.menu-toggle.is-active .menu-toggle__bar::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-toggle.is-active .menu-toggle__bar::after {
  bottom: 0;
  transform: rotate(-45deg);
}

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

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.2) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  color: var(--color-white);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(233, 69, 96, 0.15);
  color: var(--color-accent-light);
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(233, 69, 96, 0.3);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-size: var(--fs-display);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--color-white);
}

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

.hero__subtitle {
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,0.75);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-xl);
  max-width: 500px;
}

.hero__price {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.hero__price-current {
  font-size: var(--fs-h2);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
}

.hero__price-original {
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}

.hero__price-badge {
  background: var(--color-accent);
  color: var(--color-white);
  padding: var(--space-2xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-bold);
  animation: badgePulse 2s infinite;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.hero__countdown {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
  display: inline-flex;
  align-items: center;
  gap: var(--space-lg);
}

.hero__countdown-label {
  font-size: var(--fs-body-sm);
  color: rgba(255,255,255,0.7);
  font-weight: var(--fw-medium);
}

.countdown {
  display: flex;
  gap: var(--space-sm);
}

.countdown__item {
  text-align: center;
}

.countdown__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.15);
}

.countdown__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.countdown__sep {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: rgba(255,255,255,0.3);
  padding-bottom: 18px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero__image-placeholder {
  position: relative;
  width: 80%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  animation: float 6s ease-in-out infinite;
}

.hero__image-placeholder svg {
  width: 80px;
  height: 80px;
  color: rgba(255,255,255,0.3);
}

.hero__image-placeholder span {
  color: rgba(255,255,255,0.4);
  font-size: var(--fs-body-sm);
}

.hero__floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  color: var(--color-white);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.hero__floating-badge svg {
  width: 16px;
  height: 16px;
}

.hero__floating-badge--top {
  top: 10%;
  right: -5%;
  animation: float 5s ease-in-out infinite;
}

.hero__floating-badge--bottom {
  bottom: 15%;
  left: -5%;
  animation: float 5s ease-in-out infinite 1s;
}

/* ============================================
   PRODUCT SECTION
   ============================================ */

.product {
  padding: var(--space-5xl) 0;
}

.product__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* Gallery */
.product__gallery {
  position: relative;
}

.product__main-image {
  position: relative;
  width: 100%;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
  cursor: default;
}

.product__main-image svg {
  width: 100px;
  height: 100px;
  color: var(--color-gray-300);
}

.product__zoom-lens {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  background: rgba(233, 69, 96, 0.1);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.product__main-image:hover .product__zoom-lens {
  opacity: 1;
}

.product__thumbnails {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  overflow-x: auto;
  padding: var(--space-xs) 0;
}

.product__thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-section);
  cursor: pointer;
  transition: border-color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product__thumb:hover,
.product__thumb.is-active {
  border-color: var(--color-accent);
}

.product__thumb svg {
  width: 24px;
  height: 24px;
  color: var(--color-gray-400);
}

/* Product Info */
.product__info {
  padding-top: var(--space-md);
}

.product__category {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--space-sm);
}

.product__title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.product__rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.product__rating-text {
  font-size: var(--fs-body-sm);
  color: var(--text-secondary);
}

.product__price-section {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.product__price-current {
  font-size: var(--fs-h2);
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
}

.product__price-original {
  font-size: var(--fs-body-lg);
  color: var(--text-muted);
  text-decoration: line-through;
}

.product__price-save {
  background: rgba(233, 69, 96, 0.1);
  color: var(--color-accent);
  padding: var(--space-2xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-bold);
}

.product__desc {
  color: var(--text-secondary);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-xl);
}

/* Variants */
.product__variants {
  margin-bottom: var(--space-xl);
}

.product__variant-label {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.product__variant-options {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.product__variant-btn {
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

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

.product__variant-btn.is-active {
  border-color: var(--color-accent);
  background: rgba(233, 69, 96, 0.05);
  color: var(--color-accent);
}

/* Packages */
.product__packages {
  margin-bottom: var(--space-xl);
}

.product__package-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product__package {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--bg-card);
}

.product__package:hover {
  border-color: var(--color-accent);
}

.product__package.is-active {
  border-color: var(--color-accent);
  background: rgba(233, 69, 96, 0.03);
}

.product__package-name {
  font-weight: var(--fw-semibold);
}

.product__package-detail {
  font-size: var(--fs-body-sm);
  color: var(--text-secondary);
  margin-top: 2px;
}

.product__package-price {
  text-align: right;
}

.product__package-price-current {
  font-weight: var(--fw-bold);
  color: var(--color-accent);
}

.product__package-price-original {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  text-decoration: line-through;
}

.product__package-best {
  position: relative;
}

.product__package-best::after {
  content: 'BEST SELLER';
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 10px;
  font-weight: var(--fw-bold);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: var(--ls-wide);
}

/* Quantity & Actions */
.product__qty {
  margin-bottom: var(--space-xl);
}

.product__qty-label {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
}

.product__stock {
  margin-bottom: var(--space-xl);
}

.product__actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.product__actions .btn {
  flex: 1;
}

.product__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-color);
}

.product__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-body-sm);
  color: var(--text-secondary);
}

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

/* ============================================
   FEATURES (KEUNGGULAN)
   ============================================ */

.features {
  background: var(--bg-section);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  background: rgba(233, 69, 96, 0.08);
  border-radius: var(--radius-xl);
  color: var(--color-accent);
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card__title {
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}

.feature-card__desc {
  font-size: var(--fs-body-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

/* ============================================
   BENEFITS (MANFAAT)
   ============================================ */

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.benefit-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.benefit-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.benefit-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 69, 96, 0.08);
  border-radius: var(--radius-lg);
  color: var(--color-accent);
}

.benefit-item__icon svg {
  width: 22px;
  height: 22px;
}

.benefit-item__title {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2xs);
}

.benefit-item__desc {
  font-size: var(--fs-body-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

/* ============================================
   COMPARISON
   ============================================ */

.comparison {
  background: var(--bg-section);
}

.comparison__wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ============================================
   SPECIFICATION
   ============================================ */

.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.spec-table tr:nth-child(even) {
  background: var(--bg-section);
}

.spec-table th,
.spec-table td {
  padding: var(--space-md) var(--space-xl);
  text-align: left;
  font-size: var(--fs-body-sm);
  border-bottom: 1px solid var(--border-color);
}

.spec-table th {
  width: 35%;
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  background: var(--bg-section);
}

.spec-table td {
  color: var(--text-secondary);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

/* ============================================
   ARTICLE / SEO CONTENT
   ============================================ */

.article {
  background: var(--bg-section);
}

.article__content {
  max-width: 800px;
  margin: 0 auto;
}

.article__content h2 {
  font-size: var(--fs-h3);
  margin: var(--space-2xl) 0 var(--space-md);
  color: var(--text-primary);
}

.article__content h3 {
  font-size: var(--fs-h4);
  margin: var(--space-xl) 0 var(--space-sm);
  color: var(--text-primary);
}

.article__content h4 {
  font-size: var(--fs-body-lg);
  margin: var(--space-lg) 0 var(--space-sm);
  font-weight: var(--fw-bold);
}

.article__content p {
  color: var(--text-secondary);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-lg);
}

.article__content ul,
.article__content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.article__content ul { list-style: disc; }
.article__content ol { list-style: decimal; }

.article__content li {
  color: var(--text-secondary);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-xs);
}

.article__content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.article__content a:hover {
  color: var(--color-accent-dark);
}

.article__content blockquote {
  border-left: 4px solid var(--color-accent);
  padding: var(--space-md) var(--space-xl);
  margin: var(--space-xl) 0;
  background: rgba(233, 69, 96, 0.03);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.article__toc {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.article__toc-title {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
}

.article__toc-list {
  list-style: decimal;
  padding-left: var(--space-xl);
}

.article__toc-list li {
  margin-bottom: var(--space-xs);
}

.article__toc-list a {
  font-size: var(--fs-body-sm);
  color: var(--color-accent);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background: var(--gradient-primary);
  color: var(--color-white);
  overflow: hidden;
}

.testimonials .section__title {
  color: var(--color-white);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slider__track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slider__slide {
  min-width: 100%;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--fs-body-lg);
  color: var(--color-white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
}

.testimonial-card__location {
  font-size: var(--fs-caption);
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.testimonial-card__stars {
  margin-bottom: var(--space-md);
}

.testimonial-card__stars svg {
  fill: var(--color-star);
}

.testimonial-card__text {
  font-size: var(--fs-body-sm);
  color: rgba(255,255,255,0.8);
  line-height: var(--lh-normal);
  font-style: italic;
}

.testimonial-slider__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.testimonial-slider__btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.testimonial-slider__btn:hover {
  background: rgba(255,255,255,0.2);
}

.testimonial-slider__btn svg {
  width: 20px;
  height: 20px;
}

.testimonial-slider__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.testimonial-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.testimonial-slider__dot.is-active {
  background: var(--color-accent);
  width: 30px;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  background: var(--bg-section);
}

.faq__grid {
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-5xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: radial-gradient(circle at 50% 50%, rgba(233, 69, 96, 0.3) 0%, transparent 50%);
}

.cta-section__content {
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-size: var(--fs-h1);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-lg);
  color: var(--color-white);
}

.cta-section__subtitle {
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 69, 96, 0.08);
  border-radius: var(--radius-lg);
  color: var(--color-accent);
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-card__label {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: 2px;
}

.contact-card__value {
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
}

.contact-card__value a {
  color: var(--color-accent);
}

.contact__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-top: var(--space-2xl);
}

.contact__map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.contact__address {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--bg-section);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
}

.contact__address-title {
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}

.contact__address-text {
  color: var(--text-secondary);
  line-height: var(--lh-loose);
}

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

.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding: var(--space-4xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 1.5rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer__logo svg {
  width: 32px;
  height: 32px;
}

.footer__desc {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-xl);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__title {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  font-size: var(--fs-body-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) 0;
  font-size: var(--fs-caption);
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}

.footer__bottom-links a:hover {
  color: var(--color-accent);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: var(--z-sticky);
}

.whatsapp-float__btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: pulse 2s infinite;
}

.whatsapp-float__btn:hover {
  transform: scale(1.1);
}

.whatsapp-float__btn svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   CART SIDEBAR
   ============================================ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.cart-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: var(--bg-card);
  z-index: var(--z-modal);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.is-visible {
  transform: translateX(0);
}

.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border-color);
}

.cart-sidebar__title {
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-bold);
}

.cart-sidebar__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-light);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--text-secondary);
}

.cart-sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-xl);
}

.cart-sidebar__empty {
  text-align: center;
  padding: var(--space-3xl) 0;
  color: var(--text-muted);
}

.cart-sidebar__empty svg {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  color: var(--color-gray-300);
}

.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-item__image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--bg-section);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item__image svg {
  width: 24px;
  height: 24px;
  color: var(--color-gray-400);
}

.cart-item__info { flex: 1; }

.cart-item__name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body-sm);
  margin-bottom: 4px;
}

.cart-item__variant {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item__price {
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  font-size: var(--fs-body-sm);
}

.cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: var(--fs-caption);
  padding: 4px;
}

.cart-item__remove:hover {
  color: var(--color-danger);
}

.cart-sidebar__footer {
  padding: var(--space-xl);
  border-top: 1px solid var(--border-color);
}

.cart-sidebar__total {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-lg);
}

.cart-sidebar__total-price {
  color: var(--color-accent);
}

/* ============================================
   LAZY LOAD
   ============================================ */

.lazy {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy.is-loaded {
  opacity: 1;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .header,
  .back-to-top,
  .whatsapp-float,
  .cookie-consent,
  .modal-overlay,
  .cart-overlay,
  .cart-sidebar {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section { page-break-inside: avoid; }
}
