@import "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --accent-50: #fdf2f8;
  --accent-100: #fce7f3;
  --accent-200: #fbcfe8;
  --accent-300: #f9a8d4;
  --accent-400: #f472b6;
  --accent-500: #ec4899;
  --accent-600: #db2777;
  --accent-700: #be185d;
  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --accent-gradient: linear-gradient(135deg, #ec4899 0%, #a78bfa 100%);
  --accent-glow: 0 0 25px #ec48994d;
  --success: #10b981;
  --error: #f43f5e;
  --warning: #f59e0b;
  --info: #3b82f6;
  --font-display: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --bar-height: 36px;
  --nav-height: 68px;
  --header-total: calc(var(--bar-height) + var(--nav-height));
  --container: 1280px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --duration-fast: .15s;
  --duration-normal: .3s;
  --duration-slow: .5s;
}

:root, [data-theme="dark"] {
  --bg-primary: #0c0a0e;
  --bg-secondary: #110f14;
  --bg-card: #16131a;
  --bg-elevated: #1e1a23;
  --bg-glass: #16131acc;
  --text-primary: #f5f0f7;
  --text-secondary: #a09aab;
  --text-muted: #645e70;
  --text-accent: #f472b6;
  --border: #ffffff0f;
  --border-hover: #ffffff1f;
  --border-accent: #f472b640;
  --shadow-card: 0 4px 24px #0000004d;
  --shadow-hover: 0 12px 40px #0006;
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
}

[data-theme="light"] {
  --bg-primary: #faf8fc;
  --bg-secondary: #f3eff7;
  --bg-card: #fff;
  --bg-elevated: #f0ecf4;
  --bg-glass: #ffffffd9;
  --text-primary: #1a1523;
  --text-secondary: #6b6278;
  --text-muted: #9890a3;
  --text-accent: #db2777;
  --border: #0000000f;
  --border-hover: #0000001f;
  --border-accent: #db277733;
  --shadow-card: 0 2px 12px #0000000f;
  --shadow-hover: 0 8px 30px #0000001a;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: background var(--duration-normal), color var(--duration-normal);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

input, select, textarea {
  font-family: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.heading-lg {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
}

.heading-sm {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}

.btn {
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
  letter-spacing: .01em;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: .93rem;
  font-weight: 600;
  display: inline-flex;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 16px #ec48994d;
}

.btn-primary:hover {
  box-shadow: var(--accent-glow), 0 8px 24px #ec489966;
  transform: translateY(-2px);
}

.btn-outline:hover {
  border-color: var(--accent-400);
  background: #ec489914;
}

.btn-ghost {
  color: var(--text-secondary);
  padding: 8px 14px;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: #f472b60f;
}

.btn-lg {
  border-radius: var(--radius-lg);
  padding: 15px 34px;
  font-size: 1rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

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

.card-glass {
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.badge {
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 100px;
  align-items: center;
  padding: 4px 12px;
  font-size: .72rem;
  font-weight: 600;
  display: inline-flex;
}

.badge-accent {
  color: var(--accent-400);
  background: #ec48991f;
}

.badge-success {
  color: var(--success);
  background: #10b9811f;
}

.badge-error {
  color: var(--error);
  background: #f43f5e1f;
}

.input {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  width: 100%;
  color: var(--text-primary);
  transition: border-color var(--duration-fast);
  padding: 12px 16px;
  font-size: .93rem;
}

.input:focus {
  border-color: var(--accent-500);
  outline: none;
  box-shadow: 0 0 0 3px #ec48991a;
}

.input::placeholder {
  color: var(--text-muted);
}

.navbar {
  top: var(--bar-height);
  z-index: 100;
  height: var(--nav-height);
  -webkit-backdrop-filter: blur(24px);
  background: var(--bg-glass);
  border-bottom: 1px solid var(--border);
  transition: background var(--duration-normal);
  position: fixed;
  left: 0;
  right: 0;
}

.navbar-inner {
  max-width: var(--container);
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}

.navbar-logo {
  align-items: center;
  gap: 10px;
  display: flex;
}

.navbar-logo img {
  width: auto;
  height: 32px;
}

.navbar-logo-text {
  font-family: var(--font-display);
  letter-spacing: .08em;
  font-size: 1.4rem;
  font-weight: 800;
}

.navbar-links {
  align-items: center;
  gap: 28px;
  display: flex;
}

.navbar-links a {
  color: var(--text-secondary);
  transition: color var(--duration-fast);
  font-size: .88rem;
  font-weight: 500;
}

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

.navbar-actions {
  align-items: center;
  gap: 4px;
  display: flex;
}

.nav-icon-btn {
  border-radius: var(--radius-md);
  width: 38px;
  height: 38px;
  transition: all var(--duration-fast);
  color: var(--text-secondary);
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-icon-btn:hover {
  color: var(--text-accent);
  background: #ec489914;
}

.cart-badge {
  position: relative;
}

.cart-badge span {
  background: var(--accent-500);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  font-size: .6rem;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 2px;
  right: 2px;
}

.theme-toggle {
  border-radius: var(--radius-md);
  cursor: pointer;
  width: 38px;
  height: 38px;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
  justify-content: center;
  align-items: center;
  display: flex;
}

.theme-toggle:hover {
  color: var(--text-accent);
  background: #ec489914;
}

.hero {
  min-height: calc(100vh - var(--header-total));
  align-items: center;
  padding-top: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg:before {
  content: "";
  background: radial-gradient(at 25% 25%, #ec48991a 0%, #0000 55%), radial-gradient(at 75% 70%, #a78bfa14 0%, #0000 50%);
  position: absolute;
  inset: 0;
}

.hero-bg:after {
  content: "";
  background: linear-gradient(transparent, var(--bg-primary));
  height: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-content {
  z-index: 2;
  max-width: 680px;
  position: relative;
}

.hero-content p {
  color: var(--text-secondary);
  margin: 20px 0 32px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  display: flex;
}

.hero-stats {
  gap: 48px;
  margin-top: 56px;
  display: flex;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.hero-stat-label {
  color: var(--text-muted);
  margin-top: 4px;
  font-size: .82rem;
}

.section {
  padding: 88px 0;
}

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

.section-header p {
  color: var(--text-secondary);
  max-width: 500px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  font-size: .95rem;
}

.product-card {
  position: relative;
}

.product-card-image {
  aspect-ratio: 3 / 4;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

.product-card-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.product-card-body {
  padding: 14px 16px;
}

.product-card-category {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
}

.product-card-name {
  font-family: var(--font-display);
  margin: 5px 0;
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-card-price {
  font-family: var(--font-display);
  color: var(--text-accent);
  font-size: 1.1rem;
  font-weight: 700;
}

.product-card-compare {
  color: var(--text-muted);
  margin-left: 8px;
  font-size: .82rem;
  text-decoration: line-through;
}

.product-card-discount {
  background: var(--accent-500);
  color: #fff;
  border-radius: var(--radius-sm);
  z-index: 2;
  padding: 3px 10px;
  font-size: .72rem;
  font-weight: 700;
  position: absolute;
  top: 10px;
  left: 10px;
}

.product-card-actions {
  opacity: 0;
  transition: all var(--duration-normal) var(--ease-out);
  z-index: 2;
  flex-direction: column;
  gap: 6px;
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
  transform: translateX(8px);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.categories-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  display: grid;
}

.category-card {
  text-align: center;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  padding: 28px 14px;
  display: flex;
}

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

.category-icon {
  margin-bottom: 10px;
  font-size: 2.2rem;
}

.category-name {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
}

.category-count {
  color: var(--text-muted);
  margin-top: 4px;
  font-size: .78rem;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  display: grid;
}

.feature-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
  padding: 28px;
}

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}

.footer-grid {
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  display: grid;
}

.footer-brand p {
  color: var(--text-secondary);
  max-width: 300px;
  margin-top: 10px;
  font-size: .88rem;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-display);
  margin-bottom: 16px;
  font-size: .9rem;
  font-weight: 600;
}

.footer-links {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color var(--duration-fast);
  font-size: .85rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: .8rem;
  display: flex;
}

.footer-payments {
  align-items: center;
  gap: 10px;
  display: flex;
}

.footer-payments span {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 600;
}

.mobile-menu-btn {
  width: 38px;
  height: 38px;
  color: var(--text-primary);
  justify-content: center;
  align-items: center;
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200%;
  }

  100% {
    background-position: 200%;
  }
}

@media (max-width: 1024px) {
  .hero-stats {
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

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

  .hero {
    min-height: 85vh;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .section {
    padding: 56px 0;
  }

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

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 12px;
  }

  .products-layout {
    grid-template-columns: 1fr !important;
  }

  .products-layout aside {
    gap: 12px;
    padding-bottom: 4px;
    display: flex;
    overflow-x: auto;
  }

  .products-layout aside > div {
    flex-shrink: 0;
    min-width: 160px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .admin-layout {
    grid-template-columns: 1fr !important;
  }

  .admin-sidebar {
    display: none;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

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

  .product-card-name {
    font-size: .88rem;
  }

  .product-card-price {
    font-size: .95rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .container {
    padding: 0 16px;
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(32px)scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

@keyframes revealLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px #ec489933;
  }

  50% {
    box-shadow: 0 0 40px #ec489980, 0 0 80px #a78bfa33;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn:after {
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, #ffffff26, #0000);
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.btn:hover:after {
  opacity: 1;
}

.btn-primary:before {
  content: "";
  opacity: 0;
  background: conic-gradient(#0000 0deg, #ffffff1a 60deg, #0000 120deg);
  width: 200%;
  height: 200%;
  transition: opacity .3s;
  animation: 3s linear infinite spin;
  position: absolute;
  top: -50%;
  left: -50%;
}

.btn-primary:hover:before {
  opacity: 1;
}

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

.card {
  position: relative;
}

.card:before {
  content: "";
  border-radius: inherit;
  background: var(--accent-gradient);
  opacity: 0;
  z-index: -1;
  margin: -1px;
  transition: opacity .4s;
  position: absolute;
  inset: 0;
}

.card:hover:before {
  opacity: .15;
}

.product-card {
  cursor: pointer;
}

.product-card:after {
  content: "";
  background: var(--accent-gradient);
  height: 3px;
  transition: transform .3s var(--ease-out);
  transform-origin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.product-card:hover:after {
  transform: scaleX(1);
}

.glass-panel {
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.glass-panel-strong {
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-radius: var(--radius-xl);
  background: #16131aeb;
  border: 1px solid #ffffff14;
}

[data-theme="light"] .glass-panel {
  background: #ffffffd9;
}

[data-theme="light"] .glass-panel-strong {
  background: #fffffff2;
}

.input {
  transition: all .25s;
}

.input:focus {
  border-color: var(--accent-400);
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px #ec48991f, 0 0 24px #ec48991a;
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-elevated) 25%, var(--bg-card) 50%, var(--bg-elevated) 75%);
  background-size: 400% 100%;
  animation: 1.8s ease-in-out infinite shimmer;
}

.hero-bg:before {
  background-size: 400% 400%;
  animation: 8s infinite gradientShift;
}

.float-anim {
  animation: 4s ease-in-out infinite float;
}

.float-anim-slow {
  animation: 6s ease-in-out -3s infinite float;
}

.pulse-glow {
  animation: 3s ease-in-out infinite pulseGlow;
}

.navbar.scrolled {
  background: var(--bg-glass);
  box-shadow: 0 4px 30px #0003;
}

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

.product-card-image {
  transition: all .4s var(--ease-out);
}

.product-card-image:after {
  content: "";
  opacity: 0;
  background: linear-gradient(to top, #0006 0%, #0000 50%);
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.product-card:hover .product-card-image:after {
  opacity: 1;
}

.badge {
  transition: all .2s;
}

.badge-accent {
  box-shadow: 0 0 12px #ec489933;
}

.product-card-price {
  background: var(--accent-gradient);
  -webkit-text-fill-color: transparent;
  filter: brightness(1.1);
  -webkit-background-clip: text;
  background-clip: text;
}

::selection {
  color: var(--text-primary);
  background: #ec489940;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-accent);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-500);
}

.divider-gradient {
  background: linear-gradient(90deg,transparent,var(--border-accent),transparent);
  height: 1px;
  margin: 0;
}

.toast {
  z-index: 9998;
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  animation: revealUp .4s var(--ease-out) both;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  padding: 14px 20px;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
  position: fixed;
  bottom: 90px;
  right: 24px;
  box-shadow: 0 8px 32px #0000004d;
}

.toast-success {
  border-color: #10b98166;
}

.toast-icon {
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.link-animated {
  position: relative;
}

.link-animated:after {
  content: "";
  background: var(--accent-gradient);
  width: 0;
  height: 1.5px;
  transition: width .3s var(--ease-out);
  position: absolute;
  bottom: -2px;
  left: 0;
}

.link-animated:hover:after {
  width: 100%;
}

.form-group {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.form-label {
  color: var(--text-secondary);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 600;
}

.table-premium {
  border-collapse: collapse;
  width: 100%;
}

.table-premium th {
  text-align: left;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 14px 16px;
  font-size: .75rem;
  font-weight: 700;
}

.table-premium td {
  border-bottom: 1px solid var(--border);
  padding: 16px;
  transition: background .15s;
}

.table-premium tr:hover td {
  background: #ec489908;
}

.table-premium tr:last-child td {
  border-bottom: none;
}

.status-paid {
  color: #10b981;
  background: #10b9811a;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 700;
}

.status-pending {
  color: #f59e0b;
  background: #f59e0b1a;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 700;
}

.status-cancelled {
  color: #ef4444;
  background: #ef44441a;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 700;
}

.status-confirmed {
  color: #3b82f6;
  background: #3b82f61a;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 700;
}

.status-shipped {
  color: #a78bfa;
  background: #a78bfa1a;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 700;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .3s var(--ease-out);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.stat-card:before {
  content: "";
  opacity: .06;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -40px;
  right: -40px;
}

.stat-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.stat-value {
  font-family: var(--font-display);
  background: var(--accent-gradient);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2rem;
  font-weight: 800;
}

.stat-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
  font-size: .8rem;
}

.stat-change {
  margin-top: 8px;
  font-size: .78rem;
  font-weight: 600;
}

.stat-change.up {
  color: var(--success);
}

.stat-change.down {
  color: var(--error);
}

main {
  animation: revealUp .4s var(--ease-out) both;
}

@keyframes revealRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.minicart-panel {
  animation: revealRight .35s var(--ease-out) both;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.5);
  }
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  display: grid;
}

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

  .product-card-image {
    height: 200px;
  }
}

@media (max-width: 380px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-detail-grid {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  display: grid;
}

@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@keyframes cartBadgePop {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}

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

.products-layout {
  grid-template-columns: 280px 1fr;
  align-items: start;
  gap: 32px;
  display: grid;
}

@media (max-width: 900px) {
  .products-layout {
    grid-template-columns: 1fr;
  }
}

.product-card .quick-view-overlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  background: #000000b3;
  justify-content: center;
  align-items: center;
  padding: 12px;
  transition: opacity .3s;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

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

@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.2);
  }

  50% {
    transform: scale(.95);
  }

  75% {
    transform: scale(1.1);
  }
}

.heading-xl {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
}

.heading-sm {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.section-label {
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-400);
  margin-bottom: 8px;
  font-size: .72rem;
  font-weight: 700;
  display: block;
}

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

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
}

.admin-layout {
  grid-template-columns: 260px 1fr;
  height: 100vh;
  display: grid;
  overflow: hidden;
}

@media (max-width: 900px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    display: none;
  }
}

.card-glass {
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-sm {
  padding: 6px 14px;
  font-size: .82rem;
}

.btn-outline {
  border: 1px solid var(--border-accent);
  color: var(--text-accent);
  background: none;
}

.btn-outline:hover {
  background: #ec489914;
}

.btn-ghost {
  color: var(--text-secondary);
  background: none;
  border: none;
}

.btn-ghost:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.announcement-bar {
  background: var(--accent-gradient);
  color: #fff;
  letter-spacing: .04em;
  height: var(--bar-height);
  z-index: 200;
  align-items: center;
  font-size: .78rem;
  font-weight: 600;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.announcement-track {
  white-space: nowrap;
  will-change: transform;
  gap: 80px;
  animation: 28s linear infinite marquee-scroll;
  display: flex;
}

.announcement-track span {
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeUp .7s var(--ease-out) both;
}

.animate-delay-1 {
  animation-delay: 80ms;
}

.animate-delay-2 {
  animation-delay: .16s;
}

.animate-delay-3 {
  animation-delay: .24s;
}

.animate-delay-4 {
  animation-delay: .32s;
}

.animate-float {
  animation: 6s ease-in-out infinite float;
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-elevated) 25%, var(--bg-card) 50%, var(--bg-elevated) 75%);
  border-radius: var(--radius-md);
  background-size: 200% 100%;
  animation: 1.5s linear infinite shimmer;
}

@keyframes neon-pulse {
  0%, 100% {
    box-shadow: 0 0 12px #ec489966, 0 0 24px #ec489933;
  }

  50% {
    box-shadow: 0 0 24px #ec4899b3, 0 0 48px #ec48994d;
  }
}

.btn-primary:focus-visible {
  animation: 1.5s ease-in-out infinite neon-pulse;
}

@keyframes gradient-shift {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

.badge-live {
  color: #fff;
  letter-spacing: .06em;
  background: linear-gradient(270deg, #ec4899, #a78bfa, #06b6d4, #ec4899) 0 0 / 300% 300%;
  border-radius: 100px;
  padding: 3px 10px;
  font-size: .68rem;
  font-weight: 700;
  animation: 3s infinite gradient-shift;
}

.hero-particles {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles:before, .hero-particles:after {
  content: "";
  filter: blur(80px);
  opacity: .15;
  border-radius: 50%;
  animation: 8s ease-in-out infinite float;
  position: absolute;
}

.hero-particles:before {
  background: var(--accent-500);
  width: 500px;
  height: 500px;
  animation-delay: 0s;
  top: -100px;
  right: -50px;
}

.hero-particles:after {
  background: var(--violet-500);
  width: 350px;
  height: 350px;
  animation-delay: -4s;
  bottom: -50px;
  left: 30%;
}

.glow-ring {
  width: 64px;
  height: 64px;
  transition: all var(--duration-normal);
  background: #ec48991a;
  border: 1px solid #ec489933;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  display: flex;
}

.feature-card:hover .glow-ring {
  background: #ec48992e;
  box-shadow: 0 0 0 8px #ec48990f, 0 0 24px #ec489933;
}

.scroll-indicator {
  color: var(--text-muted);
  letter-spacing: .1em;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  animation: 2.5s ease-in-out infinite float;
  display: flex;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator svg {
  opacity: .5;
}

.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-bar-inner {
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  display: flex;
}

.trust-item {
  color: var(--text-secondary);
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 500;
  display: flex;
}

.trust-item svg {
  color: var(--accent-400);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .trust-bar-inner {
    gap: 20px;
  }

  .trust-item {
    font-size: .78rem;
  }
}

.product-card-sale-badge {
  color: #fff;
  letter-spacing: .05em;
  z-index: 2;
  background: linear-gradient(135deg, #f43f5e, #ec4899);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: .68rem;
  font-weight: 800;
  position: absolute;
  top: 10px;
  left: 10px;
  box-shadow: 0 2px 8px #f43f5e66;
}

/*# sourceMappingURL=src_app_globals_0p2ml0n.css.map*/