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

:root {
  --radius: 0.5rem;
  --background: #faf5f7;
  --foreground: #3d3228;
  --card: #ffffff;
  --card-foreground: #3d3228;
  --popover: #ffffff;
  --popover-foreground: #3d3228;
  --primary: #9c1d6e;
  --primary-foreground: #fef7fa;
  --secondary: #f5eaee;
  --secondary-foreground: #6a3550;
  --muted: #efe6ea;
  --muted-foreground: #8c7b82;
  --accent: #e8b84b;
  --accent-foreground: #3d3228;
  --destructive: #e53e3e;
  --destructive-foreground: #fef7fa;
  --border: #e4d7dd;
  --input: #e4d7dd;
  --ring: #9c1d6e;
  --gold: #e8b84b;
  --gold-foreground: #3d3228;
  --magenta: #9c1d6e;
  --magenta-foreground: #fef7fa;
  --rose-light: #f5eaee;
  --rose-dark: #5e2c45;
  --white: #ffffff;
  --white-10: rgba(255, 255, 255, 0.1);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-80: rgba(255, 255, 255, 0.8);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

input {
  font-family: inherit;
}

ul {
  list-style: none;
}

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

/* Layout */
.max-w-7xl {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.min-h-screen {
  min-height: 100vh;
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--gold);
  color: var(--gold-foreground);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.announcement-bar .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.announcement-bar .item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.announcement-bar .sep {
  display: none;
}

@media (min-width: 640px) {
  .announcement-bar .sep {
    display: inline;
  }
}

.icon-sm {
  width: 0.875rem;
  height: 0.875rem;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Header */
.site-header {
  background-color: var(--magenta);
  color: var(--magenta-foreground);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-foreground);
  font-weight: 700;
  font-size: 0.875rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.125rem;
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: block;
  }
}

.header-search {
  display: none;
  flex: 1;
  max-width: 36rem;
  margin: 0 1rem;
}

@media (min-width: 768px) {
  .header-search {
    display: block;
  }
}

.search-wrap {
  position: relative;
  width: 100%;
}

.search-wrap input {
  width: 100%;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border-radius: 9999px;
  color: var(--foreground);
  background-color: var(--white);
  border: none;
  font-size: 0.875rem;
  outline: none;
}

.search-wrap input:focus {
  box-shadow: 0 0 0 2px var(--gold);
}

.search-btn {
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-foreground);
  transition: filter 0.2s;
}

.search-btn:hover {
  filter: brightness(1.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-btn {
  padding: 0.5rem;
  border-radius: 9999px;
  transition: background-color 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  background-color: var(--white-10);
}

.icon-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-btn .badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 1rem;
  height: 1rem;
  background-color: var(--gold);
  color: var(--gold-foreground);
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-search-btn {
  display: block;
}

@media (min-width: 768px) {
  .mobile-search-btn {
    display: none;
  }
}

.desktop-icon-btn {
  display: none;
}

@media (min-width: 640px) {
  .desktop-icon-btn {
    display: flex;
  }
}

.mobile-menu-btn {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Main Nav */
.main-nav {
  display: none;
  border-top: 1px solid var(--white-10);
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }
}

.main-nav .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: 2.5rem;
}

.main-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
}

.main-nav a:hover {
  background-color: var(--white-10);
}

.main-nav a.active {
  background-color: var(--white-10);
}

/* Mobile Menu */
.mobile-menu {
  display: block;
  border-top: 1px solid var(--white-10);
  background-color: var(--magenta);
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu ul {
  padding: 0.5rem 1rem;
}

.mobile-menu li + li {
  margin-top: 0.25rem;
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
}

.mobile-menu a:hover {
  background-color: var(--white-10);
}

.hidden {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--rose-light);
}

.hero .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .hero .inner {
    padding: 3rem 1rem;
  }
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  text-align: center;
  order: 2;
}

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
    order: 1;
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(232, 184, 75, 0.2);
  color: var(--gold-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

.hero h1 .highlight {
  color: var(--magenta);
}

.hero p {
  color: var(--muted-foreground);
  font-size: 1rem;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.125rem;
    margin-left: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--magenta);
  color: var(--magenta-foreground);
  border-radius: 9999px;
  font-weight: 600;
  transition: filter 0.2s;
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--magenta);
  color: var(--magenta);
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-outline:hover {
  background-color: var(--magenta);
  color: var(--magenta-foreground);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

@media (min-width: 768px) {
  .hero-stats {
    justify-content: flex-start;
  }
}

.stat {
  text-align: center;
}

.stat .value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--magenta);
}

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

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background-color: var(--border);
}

.hero-image-wrap {
  order: 1;
}

@media (min-width: 768px) {
  .hero-image-wrap {
    order: 2;
  }
}

.hero-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Section Headings */
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.section-title .highlight {
  color: var(--magenta);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.section-header h2 .highlight {
  color: var(--magenta);
}

.section-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--magenta);
}

.section-link:hover {
  text-decoration: underline;
}

/* Category Section */
.categories {
  padding: 2.5rem 1rem;
}

.categories .inner {
  max-width: 1280px;
  margin: 0 auto;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .cat-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.cat-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.cat-btn:hover {
  border-color: var(--magenta);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.cat-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.cat-btn:hover .cat-icon-wrap {
  background-color: var(--magenta);
}

.cat-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--magenta);
  transition: color 0.2s;
}

.cat-btn:hover .cat-icon {
  color: var(--magenta-foreground);
}

.cat-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.cat-count {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Promo Banners */
.promos {
  padding: 1.5rem 1rem;
}

.promos .inner {
  max-width: 1280px;
  margin: 0 auto;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .promo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.promo-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 140px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.promo-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.banner-pink {
  background: linear-gradient(to right, #f9a8d4, #fecdd3);
}

.banner-amber {
  background: linear-gradient(to right, #fde68a, #fef9c3);
}

.banner-rose {
  background: linear-gradient(to right, #fecdd3, #f9a8d4);
}

.promo-discount {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--magenta);
  margin-bottom: 0.25rem;
}

.promo-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.promo-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.promo-link {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--magenta);
}

.promo-link:hover {
  text-decoration: underline;
}

/* Brand Section */
.brands {
  padding: 2.5rem 1rem;
  background-color: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brands .inner {
  max-width: 1280px;
  margin: 0 auto;
}

.brand-header {
  text-align: center;
  margin-bottom: 2rem;
}

.brand-discount-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: var(--magenta);
  color: var(--magenta-foreground);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.brand-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-header h2 .highlight {
  color: var(--magenta);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .brand-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.brand-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 0.2s;
}

.brand-btn:hover {
  border-color: var(--magenta);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.brand-name {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* Product Grid */
.products {
  padding: 2.5rem 1rem;
}

.products .inner {
  max-width: 1280px;
  margin: 0 auto;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .prod-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.prod-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.prod-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.prod-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--muted);
}

.prod-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.prod-card:hover .prod-image-wrap img {
  transform: scale(1.05);
}

.prod-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.25rem 0.5rem;
  background-color: var(--gold);
  color: var(--gold-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.375rem;
}

.prod-wishlist {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  background-color: var(--white-80);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s;
}

.prod-card:hover .prod-wishlist {
  opacity: 1;
}

.prod-wishlist:hover {
  background-color: var(--white);
}

.prod-wishlist svg {
  width: 1rem;
  height: 1rem;
  color: var(--magenta);
}

.prod-discount-tag {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  padding: 0.25rem 0.5rem;
  background-color: var(--magenta);
  color: var(--magenta-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.375rem;
}

.prod-info {
  padding: 0.75rem;
}

@media (min-width: 768px) {
  .prod-info {
    padding: 1rem;
  }
}

.prod-name {
  font-size: 0.875rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prod-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.star-icon {
  width: 0.875rem;
  height: 0.875rem;
  fill: var(--gold);
  color: var(--gold);
}

.prod-rating span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.prod-pricing {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.prod-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--magenta);
}

.prod-old-price {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.add-cart-btn {
  width: 100%;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background-color: var(--magenta);
  color: var(--magenta-foreground);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: filter 0.2s;
}

.add-cart-btn:hover {
  filter: brightness(1.1);
}

.add-cart-btn svg {
  width: 1rem;
  height: 1rem;
}

.prod-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.add-cart-form {
  flex: 1;
}
.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.6rem;
  background-color: #25D366;
  color: #fff;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: filter 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.wa-btn:hover {
  filter: brightness(1.1);
  color: #fff;
}
.wa-btn svg {
  width: 1rem;
  height: 1rem;
}

/* Footer */
.site-footer {
  background-color: var(--rose-dark);
  color: var(--white);
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand .logo-icon {
  width: 2.25rem;
  height: 2.25rem;
}

.footer-brand .logo-text {
  font-weight: 700;
  font-size: 1.125rem;
  display: block;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--white-70);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s;
}

.social-link:hover {
  background-color: var(--gold);
  color: var(--gold-foreground);
}

.footer h3 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--white-70);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--white-70);
  margin-bottom: 0.75rem;
}

.contact-list li.contact-address {
  align-items: flex-start;
}

.contact-list .icon-sm {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.newsletter h4 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background-color: var(--white-10);
  border: 1px solid var(--white-20);
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--white-50);
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  padding: 0.5rem 1rem;
  background-color: var(--gold);
  color: var(--gold-foreground);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: filter 0.2s;
}

.newsletter-form button:hover {
  filter: brightness(1.1);
}

.footer-bottom {
  border-top: 1px solid var(--white-10);
}

.footer-bottom .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--white-50);
}

/* Page Placeholder */
.page-placeholder {
  min-height: 100vh;
  background-color: var(--background);
}

.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
}

.page-main h1 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-main p {
  color: var(--muted-foreground);
}

/* 404 Page */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.error-content {
  max-width: 28rem;
  text-align: center;
}

.error-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.error-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.error-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.error-content .btn-primary {
  display: inline-flex;
}

/* SVG Icons */
svg.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 639px) {
  .sm-hidden {
    display: none;
  }
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

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

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

/* Hero Slider */
.hero-slider-wrap {
  padding: 1.5rem 0;
}

.hero-slider-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 1024px) {
  .hero-slider-inner {
    grid-template-columns: 3.2fr 1fr;
    gap: 1rem;
  }
}

.hero-main-slider {
  position: relative;
  overflow: hidden;
}

.hero-slides-container {
  position: relative;
  width: 100%;
  min-height: 320px;
}

@media (min-width: 480px) {
  .hero-slides-container {
    min-height: 400px;
  }
}

@media (min-width: 768px) {
  .hero-slides-container {
    min-height: 480px;
  }
}

@media (min-width: 1024px) {
  .hero-slides-container {
    min-height: 560px;
  }
}

/* Side Banner */
.hero-side-banner {
  overflow: hidden;
}

.hero-slides-container {
  position: relative;
  width: 100%;
  min-height: 320px;
}

@media (min-width: 480px) {
  .hero-slides-container {
    min-height: 400px;
  }
}

@media (min-width: 768px) {
  .hero-slides-container {
    min-height: 480px;
  }
}

@media (min-width: 1024px) {
  .hero-slides-container {
    min-height: 560px;
  }
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 70%, transparent 100%);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 500px;
  color: #fff;
}

.hero-slide-content .hero-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--gold);
  color: var(--gold-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.hero-slide-content h1 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .hero-slide-content h1 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-slide-content h1 {
    font-size: 2.25rem;
  }
}

.hero-slide-content h1 .highlight {
  color: var(--gold);
}

.hero-slide-content p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
  max-width: 28rem;
}

@media (min-width: 768px) {
  .hero-slide-content p {
    font-size: 1rem;
  }
}

/* Slider Navigation Dots */
.hero-slider-nav {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

@media (min-width: 1024px) {
  .hero-slider-nav {
    bottom: 1.5rem;
  }
}

.hero-dot {
  width: 1.25rem;
  height: 3px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

@media (min-width: 768px) {
  .hero-dot {
    width: 1.75rem;
    height: 3px;
  }
}

.hero-dot.active {
  background-color: var(--magenta);
  width: 2.5rem;
}

@media (min-width: 768px) {
  .hero-dot.active {
    width: 3rem;
  }
}

/* Side Banner */
.hero-side-banner {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.side-banner-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

@media (min-width: 480px) {
  .side-banner-inner {
    min-height: 400px;
  }
}

@media (min-width: 768px) {
  .side-banner-inner {
    min-height: 480px;
  }
}

@media (min-width: 1024px) {
  .side-banner-inner {
    min-height: 560px;
  }
}

.side-banner-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.side-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
}

.side-banner-discount {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background-color: var(--gold);
  color: var(--gold-foreground);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  align-self: flex-start;
}

.side-banner-overlay h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.side-banner-overlay p {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.side-banner-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
}

.side-banner-link:hover {
  text-decoration: underline;
}

/* ========== Cart Page ========== */
.cart-page { min-height: 60vh; padding: 2rem 1rem; }
.cart-container { max-width: 960px; margin: 0 auto; }
.cart-container h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
.cart-empty { text-align: center; padding: 4rem 1rem; }
.cart-empty svg { margin-bottom: 1rem; }
.cart-empty h2 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.cart-empty p { color: #888; margin-bottom: 1.5rem; }
.cart-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.cart-item { display: flex; align-items: center; gap: 1rem; background: var(--card); border-radius: 0.75rem; padding: 1rem; border: 1px solid var(--border); }
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 0.5rem; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info h3 { font-size: 0.95rem; font-weight: 600; }
.cart-item-price { color: var(--magenta); font-weight: 600; font-size: 0.875rem; margin-top: 0.25rem; }
.cart-item-qty { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.cart-item-qty label { font-size: 0.75rem; color: #888; }
.cart-item-qty input { width: 60px; padding: 0.35rem; text-align: center; border: 1px solid var(--border); border-radius: 0.375rem; font-size: 0.875rem; }
.cart-item-total { font-weight: 700; font-size: 1rem; min-width: 80px; text-align: right; }
.cart-remove { font-size: 1.5rem; color: #ccc; text-decoration: none; padding: 0.25rem; }
.cart-remove:hover { color: var(--destructive); }
.cart-footer { background: var(--card); border-radius: 0.75rem; padding: 1.5rem; border: 1px solid var(--border); }
.cart-summary { display: flex; justify-content: space-between; align-items: center; font-size: 1.125rem; margin-bottom: 1rem; }
.cart-actions { display: flex; gap: 1rem; justify-content: flex-end; }

/* ========== Checkout Page ========== */
.checkout-page { min-height: 60vh; padding: 2rem 1rem; }
.checkout-container { max-width: 960px; margin: 0 auto; }
.checkout-container h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
.checkout-guest { background: #f0f7ff; border: 1px solid #bae; border-radius: 0.5rem; padding: 0.75rem 1rem; margin-bottom: 1.5rem; font-size: 0.875rem; }
.checkout-guest a { color: var(--magenta); font-weight: 600; }
.checkout-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .checkout-layout { grid-template-columns: 1fr 1fr; } }
.checkout-summary h2, .checkout-form h2 { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.checkout-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.checkout-item img { width: 56px; height: 56px; object-fit: cover; border-radius: 0.375rem; flex-shrink: 0; }
.checkout-item h4 { font-size: 0.875rem; font-weight: 600; }
.checkout-item p { font-size: 0.8rem; color: #888; }
.checkout-item-total { margin-left: auto; font-weight: 600; }
.checkout-total { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; font-size: 1.125rem; border-top: 2px solid var(--magenta); margin-top: 0.5rem; }
.paystack-section { background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.5rem; }

/* ========== Auth Pages ========== */
.auth-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 2rem 1rem; }
.auth-container { background: var(--card); border-radius: 0.75rem; padding: 2rem; max-width: 420px; width: 100%; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.auth-tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 1.5rem; }
.auth-tab { flex: 1; padding: 0.75rem; text-align: center; font-weight: 600; font-size: 0.9rem; cursor: pointer; border: none; background: none; color: #888; border-bottom: 2px solid transparent; margin-bottom: -2px; }
.auth-tab.active { color: var(--magenta); border-bottom-color: var(--magenta); }
.auth-form h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.auth-sub { font-size: 0.85rem; color: #888; margin-bottom: 1.25rem; }
.auth-form label { font-size: 0.85rem; font-weight: 600; margin-top: 1rem; margin-bottom: 0.25rem; display: block; }
.auth-form input { width: 100%; padding: 0.7rem; border: 1px solid var(--border); border-radius: 0.5rem; font-size: 0.9rem; outline: none; }
.auth-form input:focus { border-color: var(--magenta); box-shadow: 0 0 0 2px rgba(156,29,110,0.1); }
.auth-btn { width: 100%; margin-top: 1.5rem; padding: 0.75rem; font-size: 1rem; }

/* ========== Dashboard ========== */
.dashboard-page { min-height: 60vh; padding: 2rem 1rem; }
.dashboard-container { max-width: 860px; margin: 0 auto; }
.dashboard-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.dashboard-header h1 { font-size: 1.5rem; font-weight: 700; }
.dashboard-nav-links { display: flex; gap: 0.5rem; align-items: center; }
.dash-tab { padding: 0.5rem 1rem; border-radius: 0.375rem; font-size: 0.875rem; font-weight: 500; color: #666; text-decoration: none; }
.dash-tab.active { background: var(--magenta); color: #fff; }
.dash-tab:hover:not(.active) { background: var(--secondary); }
.dash-logout { padding: 0.5rem 1rem; font-size: 0.875rem; color: var(--destructive); text-decoration: none; font-weight: 500; }
.dash-section h2 { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.order-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1rem; margin-bottom: 1rem; }
.order-header { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-bottom: 0.75rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.order-id { font-weight: 700; font-size: 0.95rem; }
.order-date { font-size: 0.8rem; color: #888; }
.order-status { font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.5rem; border-radius: 999px; }
.status-paid { background: #d4edda; color: #155724; }
.status-pending { background: #fff3cd; color: #856404; }
.order-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; }
.order-item img { width: 48px; height: 48px; object-fit: cover; border-radius: 0.375rem; }
.order-item strong { font-size: 0.85rem; }
.order-item p { font-size: 0.8rem; color: #888; }
.order-total { display: flex; justify-content: space-between; align-items: center; padding-top: 0.75rem; margin-top: 0.5rem; border-top: 1px solid var(--border); }
.order-total strong { font-size: 1rem; }
.order-ref { font-size: 0.75rem; color: #888; }
.profile-form { max-width: 480px; }
.profile-form label { font-size: 0.85rem; font-weight: 600; margin-top: 1rem; margin-bottom: 0.25rem; display: block; }
.profile-form input, .profile-form textarea { width: 100%; padding: 0.7rem; border: 1px solid var(--border); border-radius: 0.5rem; font-size: 0.9rem; outline: none; }
.profile-form input:focus, .profile-form textarea:focus { border-color: var(--magenta); }
.profile-form hr { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

/* ========== Flash Messages ========== */
.flash { padding: 0.75rem 1rem; border-radius: 0.5rem; margin-bottom: 1rem; font-size: 0.875rem; }
.flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ========== Dashboard Stats ========== */
.dash-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .dash-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.dash-stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.dash-stat-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dash-stat-icon svg { width: 1.5rem; height: 1.5rem; }
.dash-stat-label { display: block; font-size: 0.75rem; color: #888; margin-bottom: 0.15rem; }
.dash-stat-value { display: block; font-size: 1.125rem; font-weight: 700; }

/* ========== Wallet Card ========== */
.dash-wallet-card { background: linear-gradient(135deg, var(--magenta), #6a1b4e); color: #fff; border-radius: 1rem; padding: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.dash-wallet-card h3 { font-size: 0.875rem; font-weight: 500; opacity: 0.85; margin-bottom: 0.25rem; }
.wallet-big { font-size: 2rem; font-weight: 700; }
.dash-wallet-actions { display: flex; gap: 0.75rem; }
.dash-wallet-actions .btn-primary { background: var(--gold); color: var(--gold-foreground); }
.dash-wallet-actions .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.dash-wallet-actions .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ========== Chat Card ========== */
.dash-chat-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.25rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.dash-chat-info { display: flex; align-items: center; gap: 0.75rem; flex: 1; min-width: 200px; }
.dash-chat-icon { width: 3rem; height: 3rem; border-radius: 50%; background: #e8f5e9; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dash-chat-icon svg { width: 1.75rem; height: 1.75rem; }
.dash-chat-info h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.15rem; }
.dash-chat-info p { font-size: 0.8rem; color: #888; }

/* ========== Wallet Page ========== */
.wallet-balance-card { background: linear-gradient(135deg, var(--magenta), #6a1b4e); color: #fff; border-radius: 1rem; padding: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.wallet-balance-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wallet-balance-icon svg { width: 1.75rem; height: 1.75rem; }
.wallet-balance-info { flex: 1; }
.wallet-label { display: block; font-size: 0.8rem; opacity: 0.8; margin-bottom: 0.2rem; }
.wallet-amount { display: block; font-size: 1.75rem; font-weight: 700; }
.wallet-quick-amounts { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.q-amt { padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: 0.5rem; background: var(--card); font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.q-amt:hover { border-color: var(--magenta); color: var(--magenta); }

/* ========== About Page ========== */
.about-hero { background: linear-gradient(135deg, var(--magenta), #6a1b4e); color: #fff; padding: 4rem 1rem; text-align: center; }
.about-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.about-hero p { font-size: 1.125rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.about-section { padding: 4rem 1rem; }
.about-section .inner { max-width: 1100px; margin: 0 auto; }
.about-mid { background: var(--secondary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-image img { max-width: 250px; height: auto; }
.about-content h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; }
.about-content p { color: var(--muted-foreground); line-height: 1.7; margin-bottom: 1rem; }
.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.about-card { background: var(--card); border-radius: 0.75rem; padding: 2rem; text-align: center; border: 1px solid var(--border); }
.about-card-icon { width: 3rem; height: 3rem; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.about-card-icon svg { width: 1.5rem; height: 1.5rem; color: var(--gold-foreground); }
.about-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.about-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
.section-title { font-size: 1.75rem; font-weight: 700; text-align: center; margin-bottom: 2rem; }
.section-title .highlight { color: var(--magenta); }
.about-sub { text-align: center; color: var(--muted-foreground); max-width: 600px; margin: -1rem auto 2rem; }
.about-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-item { background: var(--card); border-radius: 0.75rem; padding: 2rem; border: 1px solid var(--border); }
.service-item h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--magenta); }
.service-item p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
.about-trust { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; max-width: 700px; margin: 0 auto; }
.about-trust li { padding: 0.75rem 1rem; background: var(--card); border-radius: 0.5rem; border: 1px solid var(--border); font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.about-trust li::before { content: "✓"; color: var(--magenta); font-weight: 700; }
.about-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 600px; margin: 0 auto; }
.about-product-item { background: var(--card); border-radius: 0.75rem; padding: 2rem; text-align: center; border: 1px solid var(--border); }
.about-product-item h3 { font-size: 1rem; font-weight: 600; color: var(--magenta); }
.about-contact { text-align: center; }
.about-contact-info { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.about-contact-info p { font-size: 1rem; color: var(--foreground); }

/* ========== Blog Page ========== */
.blog-hero { background: linear-gradient(135deg, var(--magenta), #6a1b4e); color: #fff; padding: 4rem 1rem; text-align: center; }
.blog-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.blog-hero p { font-size: 1.125rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.blog-section { padding: 4rem 1rem; }
.blog-section .inner { max-width: 1100px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { background: var(--card); border-radius: 0.75rem; border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.2s; }
.blog-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.blog-card-body { padding: 1.5rem; }
.blog-meta { display: flex; gap: 0.75rem; font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.blog-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-excerpt { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 1rem; }
.blog-read-more { display: inline-block; font-size: 0.875rem; font-weight: 600; color: var(--magenta); text-decoration: none; }
.blog-read-more:hover { text-decoration: underline; }

/* ========== Deals Page ========== */
.deals-hero { background: linear-gradient(135deg, var(--magenta), #6a1b4e); color: #fff; padding: 4rem 1rem; text-align: center; }
.deals-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.deals-hero p { font-size: 1.125rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.deals-section { padding: 4rem 1rem; }
.deals-section .inner { max-width: 1280px; margin: 0 auto; }
.deals-empty { text-align: center; padding: 3rem 1rem; }
.deals-empty h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.deals-empty p { color: var(--muted-foreground); }

/* ========== Contact Page ========== */
.contact-hero { background: linear-gradient(135deg, var(--magenta), #6a1b4e); color: #fff; padding: 4rem 1rem; text-align: center; }
.contact-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.contact-hero p { font-size: 1.125rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.contact-section { padding: 4rem 1rem; }
.contact-section .inner { max-width: 800px; margin: 0 auto; }
.contact-grid { display: grid; gap: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; background: var(--card); border-radius: 0.75rem; padding: 1.5rem; border: 1px solid var(--border); }
.contact-icon { width: 3rem; height: 3rem; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 1.5rem; height: 1.5rem; color: var(--gold-foreground); }
.contact-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-item p { font-size: 0.9rem; color: var(--muted-foreground); }
.contact-item a { color: var(--magenta); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

/* ========== Floating WhatsApp ========== */
.float-wa { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.25); transition: transform 0.2s, box-shadow 0.2s; }
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.35); }
.float-wa svg { width: 1.75rem; height: 1.75rem; color: #fff; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-image { display: flex; justify-content: center; }
  .about-cards { grid-template-columns: 1fr; }
  .about-services { grid-template-columns: 1fr; }
  .about-trust { grid-template-columns: 1fr; }
  .about-products { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
