/* ===== DESIGN TOKENS ===== */
:root {
  --navy: #1a1a3e;
  --navy-light: #24245a;
  --pink: #e84393;
  --pink-light: #fd79a8;
  --pink-pale: #ffeef5;
  --pink-bg: #fff5f9;
  --rose: #f8a5c2;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --dark-text: #1a1a2e;
  --body-text: #4a4a5a;
  --muted: #8a8a9a;
  --green: #00b894;
  --orange: #fdcb6e;
  --red: #d63031;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input { font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 15px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.logo-cute {
  color: var(--white);
}

.logo-png {
  color: var(--pink);
}

.logo-sub {
  display: block;
  font-size: 0.55rem;
  color: var(--gray-400);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: -4px;
  font-family: 'Inter', sans-serif;
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-menu a.active {
  background: var(--pink);
}

.nav-menu .dropdown {
  position: relative;
}

.nav-menu .dropdown-icon {
  font-size: 0.65rem;
  margin-left: 3px;
}

/* Header Search */
.header-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 4px 4px 4px 16px;
  gap: 8px;
  flex: 0 1 280px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}

.header-search:focus-within {
  background: rgba(255,255,255,0.15);
  border-color: var(--pink);
}

.header-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.82rem;
  width: 100%;
}

.header-search input::placeholder {
  color: rgba(255,255,255,0.45);
}

.header-search .search-btn {
  background: var(--pink);
  border: none;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.header-search .search-btn:hover {
  background: var(--pink-light);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-actions .fav-btn {
  color: var(--pink);
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  background: none;
  border: none;
}

.header-actions .fav-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
}

.header-actions .login-btn {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
}

.header-actions .login-btn:hover {
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--pink-pale) 0%, #fce4ec 30%, #f8bbd0 60%, #f48fb1 100%);
  position: relative;
  overflow: hidden;
  padding: 50px 0 30px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(232,67,147,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(253,121,168,0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Cherry blossom petals (decorative) */
.hero .petal {
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(248,165,194,0.4);
  border-radius: 50% 0 50% 50%;
  animation: petalFall 8s infinite ease-in-out;
  pointer-events: none;
}

.hero .petal:nth-child(1) { left: 10%; top: -10px; animation-delay: 0s; animation-duration: 7s; }
.hero .petal:nth-child(2) { left: 25%; top: -10px; animation-delay: 1.5s; animation-duration: 9s; }
.hero .petal:nth-child(3) { left: 50%; top: -10px; animation-delay: 3s; animation-duration: 6s; }
.hero .petal:nth-child(4) { left: 70%; top: -10px; animation-delay: 0.5s; animation-duration: 10s; }
.hero .petal:nth-child(5) { left: 85%; top: -10px; animation-delay: 2s; animation-duration: 8s; }
.hero .petal:nth-child(6) { left: 40%; top: -10px; animation-delay: 4s; animation-duration: 7.5s; }

@keyframes petalFall {
  0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0; }
  10% { opacity: 0.7; }
  50% { opacity: 0.5; }
  100% { transform: translateY(500px) rotate(720deg) scale(0.3); opacity: 0; }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Hero Left */
.hero-left {
  max-width: 380px;
}

.hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pink);
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 6px;
}

.hero-title-script {
  font-family: 'Dancing Script', cursive;
  font-size: 2.8rem;
  color: var(--navy);
  display: block;
}

.hero-title-script .heart {
  color: var(--pink);
  font-size: 1.5rem;
}

.hero-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Hero Search */
.hero-search {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 5px 5px 5px 18px;
  box-shadow: var(--shadow-md);
  margin-bottom: 14px;
  border: 1px solid rgba(232,67,147,0.15);
}

.hero-search input {
  border: none;
  outline: none;
  font-size: 0.88rem;
  color: var(--dark-text);
  flex: 1;
  background: transparent;
}

.hero-search input::placeholder {
  color: var(--gray-400);
}

.hero-search .search-btn {
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.hero-search .search-btn:hover {
  background: #d63384;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(232,67,147,0.3);
}

/* Popular Tags */
.popular-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.popular-tags .label {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 500;
}

.popular-tags a {
  font-size: 0.75rem;
  color: var(--gray-700);
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-300);
  background: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.popular-tags a:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--white);
}

/* Hero Center (illustration) */
.hero-center {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-center img {
  max-height: 360px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(232,67,147,0.15));
}

/* Hero Right (stats cards) */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  min-width: 170px;
  transition: var(--transition);
}

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

.stat-card .stat-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stat-card .stat-icon.pink { background: rgba(232,67,147,0.1); }
.stat-card .stat-icon.blue { background: rgba(26,26,62,0.08); }
.stat-card .stat-icon.green { background: rgba(0,184,148,0.1); }
.stat-card .stat-icon.orange { background: rgba(253,203,110,0.2); }

.stat-card .stat-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.2;
}

.stat-card .stat-label {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ===== CATEGORY CAROUSEL ===== */
.category-carousel {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
  position: relative;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 10px;
}

.carousel-track::-webkit-scrollbar { display: none; }

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  border-radius: var(--radius-lg);
}

.cat-item:hover {
  background: var(--pink-pale);
}

.cat-item .cat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.cat-item:hover .cat-icon {
  border-color: var(--pink);
  background: var(--white);
  transform: scale(1.08);
}

.cat-item .cat-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-700);
  white-space: nowrap;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  font-size: 0.9rem;
  color: var(--gray-600);
}

.carousel-arrow:hover {
  background: var(--pink-pale);
  border-color: var(--pink);
  color: var(--pink);
}

.carousel-arrow.left { left: 5px; }
.carousel-arrow.right { right: 5px; }

/* ===== SPONSORED BANNER ===== */
.sponsored-banner {
  background: linear-gradient(135deg, var(--pink-pale), #fce4ec);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}

.sponsored-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.sponsored-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
}

.sponsored-inner h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
}

.sponsored-inner p {
  font-size: 0.82rem;
  color: var(--muted);
}

.sponsored-inner .hearts {
  color: var(--pink);
  font-size: 1.4rem;
}

.sponsored-inner .explore-btn {
  background: var(--white);
  border: 1px solid var(--gray-300);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}

.sponsored-inner .explore-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--pink-pale);
}

/* ===== MAIN CONTENT ===== */
.main-content {
  padding: 30px 0;
}

.main-grid {
  display: grid;
  grid-template-columns: 200px 1fr 230px;
  gap: 25px;
}

/* Left Sidebar */
.sidebar-left h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.cat-list .cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 0.82rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.cat-link:hover {
  color: var(--pink);
}

.cat-link .cat-icon-sm {
  margin-right: 8px;
  font-size: 0.85rem;
}

.cat-link .cat-count {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

.view-all-cats {
  display: inline-block;
  margin-top: 16px;
  padding: 9px 20px;
  background: var(--pink);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  width: 100%;
}

.view-all-cats:hover {
  background: #d63384;
  transform: translateY(-1px);
}

/* Product Tabs */
.product-tabs {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 0;
}

.product-tabs .tab {
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.product-tabs .tab:hover {
  color: var(--pink);
}

.product-tabs .tab.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
  font-weight: 600;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--pink-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-card .card-img {
  height: 160px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  position: relative;
}

.product-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

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

.product-card .card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Format Tags */
.format-tags {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.format-tags span {
  padding: 2px 7px;
  font-size: 0.62rem;
  font-weight: 600;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.format-tags .tag-png { background: #e8f5e9; color: #2e7d32; }
.format-tags .tag-svg { background: #e3f2fd; color: #1565c0; }
.format-tags .tag-eps { background: #fff3e0; color: #e65100; }
.format-tags .tag-ai { background: #fce4ec; color: #c62828; }

/* Card Actions */
.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.download-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--muted);
}

.download-count .dl-icon {
  color: var(--pink);
  font-size: 0.85rem;
}

.card-fav {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  font-size: 1.1rem;
  transition: var(--transition);
  padding: 4px;
}

.card-fav:hover {
  color: var(--pink);
  transform: scale(1.2);
}

/* Right Sidebar */
.sidebar-right {}

/* Trending Now */
.trending-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 20px;
}

.trending-box .box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.trending-box .box-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.trending-box .view-all {
  font-size: 0.75rem;
  color: var(--pink);
  font-weight: 500;
}

.trending-box .view-all:hover {
  text-decoration: underline;
}

.trending-list .trend-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.8rem;
  transition: var(--transition);
}

.trending-list .trend-item:last-child {
  border-bottom: none;
}

.trending-list .trend-item:hover {
  color: var(--pink);
}

.trend-item .trend-rank {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--pink-pale);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
}

.trend-item .trend-name {
  flex: 1;
  color: var(--gray-700);
}

.trend-item .trend-count {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

/* Ad Banner */
.ad-box {
  background: linear-gradient(135deg, var(--pink-pale), #f8bbd0);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
}

.ad-box .ad-tag {
  font-size: 0.6rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 10px 0 5px;
}

.ad-box .ad-size {
  font-size: 0.65rem;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.ad-box .ad-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.ad-box .ad-img img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.ad-box .ad-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  padding: 5px 15px;
  line-height: 1.3;
}

.ad-box .ad-cta {
  display: inline-block;
  margin: 10px 0 18px;
  padding: 8px 22px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.ad-box .ad-cta:hover {
  background: var(--pink);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #2d2d6a 100%);
  padding: 18px 0;
  margin: 0;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.promo-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.promo-left .promo-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.promo-left h4 {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.promo-left p {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
}

.promo-features {
  display: flex;
  gap: 30px;
}

.promo-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-feature .check {
  color: var(--green);
  font-size: 1rem;
}

.promo-feature .feat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
}

.promo-feature .feat-desc {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
}

.promo-cta {
  padding: 10px 24px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.promo-cta:hover {
  background: var(--pink-light);
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1.5fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-brand .footer-logo .cute { color: var(--white); }
.footer-brand .footer-logo .png { color: var(--pink); }

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.5);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--pink);
  color: var(--white);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--pink);
}

/* Newsletter */
.footer-newsletter p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  padding: 8px 14px;
  font-size: 0.82rem;
}

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

.newsletter-form button {
  background: var(--pink);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.newsletter-form button:hover {
  background: var(--pink-light);
}

/* Payment icons */
.payment-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.payment-row .secure {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

.payment-row .secure .lock-icon {
  color: var(--green);
}

.payment-badge {
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 18px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom .heart {
  color: var(--pink);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .main-grid {
    grid-template-columns: 180px 1fr 200px;
    gap: 18px;
  }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-right {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .popular-tags {
    justify-content: center;
  }

  .main-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-left,
  .sidebar-right {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .promo-features {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.open a {
    padding: 10px 15px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-title-script {
    font-size: 2rem;
  }

  .hero-center img {
    max-height: 250px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-search {
    display: none;
  }

  .sponsored-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .promo-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UTILITY ===== */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-pink { color: var(--pink); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--muted); }
